Fix compiler warnings in connect
This commit is contained in:
parent
1d7b4c2689
commit
7c68930031
@ -433,7 +433,7 @@ handlerton *connect_hton= NULL;
|
|||||||
uint GetTraceValue(void)
|
uint GetTraceValue(void)
|
||||||
{return (uint)(connect_hton ? THDVAR(current_thd, xtrace) : 0);}
|
{return (uint)(connect_hton ? THDVAR(current_thd, xtrace) : 0);}
|
||||||
bool ExactInfo(void) {return THDVAR(current_thd, exact_info);}
|
bool ExactInfo(void) {return THDVAR(current_thd, exact_info);}
|
||||||
bool CondPushEnabled(void) {return THDVAR(current_thd, cond_push);}
|
static bool CondPushEnabled(void) {return THDVAR(current_thd, cond_push);}
|
||||||
USETEMP UseTemp(void) {return (USETEMP)THDVAR(current_thd, use_tempfile);}
|
USETEMP UseTemp(void) {return (USETEMP)THDVAR(current_thd, use_tempfile);}
|
||||||
int GetConvSize(void) {return THDVAR(current_thd, conv_size);}
|
int GetConvSize(void) {return THDVAR(current_thd, conv_size);}
|
||||||
TYPCONV GetTypeConv(void) {return (TYPCONV)THDVAR(current_thd, type_conv);}
|
TYPCONV GetTypeConv(void) {return (TYPCONV)THDVAR(current_thd, type_conv);}
|
||||||
|
@ -16,6 +16,7 @@ typedef class JSONDEF *PJDEF;
|
|||||||
typedef class TDBJSON *PJTDB;
|
typedef class TDBJSON *PJTDB;
|
||||||
typedef class JSONCOL *PJCOL;
|
typedef class JSONCOL *PJCOL;
|
||||||
class TDBJSN;
|
class TDBJSN;
|
||||||
|
PQRYRES JSONColumns(PGLOBAL g, PCSZ db, PCSZ dsn, PTOS topt, bool info);
|
||||||
|
|
||||||
/***********************************************************************/
|
/***********************************************************************/
|
||||||
/* The JSON tree node. Can be an Object or an Array. */
|
/* The JSON tree node. Can be an Object or an Array. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user