Commit ecb00f3c authored by Olivier Bertrand's avatar Olivier Bertrand

Try to fix failing tests

parent a13642a8
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
#define DllExport #define DllExport
#endif // !__WIN__ #endif // !__WIN__
typedef class JSON *PJSON;
/***********************************************************************/ /***********************************************************************/
/* Definition of class BLOCK with its method function new. */ /* Definition of class BLOCK with its method function new. */
/***********************************************************************/ /***********************************************************************/
...@@ -52,14 +50,12 @@ class DllExport BLOCK { ...@@ -52,14 +50,12 @@ class DllExport BLOCK {
virtual void Printf(PGLOBAL, FILE *, uint) {} // Produce file desc virtual void Printf(PGLOBAL, FILE *, uint) {} // Produce file desc
virtual void Prints(PGLOBAL, char *, uint) {} // Produce string desc virtual void Prints(PGLOBAL, char *, uint) {} // Produce string desc
#if !defined(__BORLANDC__) // Avoid gcc errors by defining matching dummy delete operators
// Avoid warning C4291 by defining a matching dummy delete operator
void operator delete(void*, PGLOBAL, void *) {} void operator delete(void*, PGLOBAL, void *) {}
void operator delete(void*, long long) {} void operator delete(void*, long long) {}
void operator delete(void*) {} void operator delete(void*) {}
#endif
virtual ~BLOCK() {}
virtual ~BLOCK() {}
}; // end of class BLOCK }; // end of class BLOCK
#endif // !BLOCK_DEFINED #endif // !BLOCK_DEFINED
...@@ -170,7 +170,7 @@ ...@@ -170,7 +170,7 @@
#define JSONMAX 10 // JSON Default max grp size #define JSONMAX 10 // JSON Default max grp size
extern "C" { extern "C" {
char version[]= "Version 1.07.0002 October 18, 2020"; char version[]= "Version 1.07.0002 November 05, 2020";
#if defined(__WIN__) #if defined(__WIN__)
char compver[]= "Version 1.07.0002 " __DATE__ " " __TIME__; char compver[]= "Version 1.07.0002 " __DATE__ " " __TIME__;
char slash= '\\'; char slash= '\\';
...@@ -398,7 +398,7 @@ static MYSQL_THDVAR_ENUM( ...@@ -398,7 +398,7 @@ static MYSQL_THDVAR_ENUM(
// Adding JPATH to all Json table columns // Adding JPATH to all Json table columns
static MYSQL_THDVAR_BOOL(json_all_path, PLUGIN_VAR_RQCMDARG, static MYSQL_THDVAR_BOOL(json_all_path, PLUGIN_VAR_RQCMDARG,
"Adding JPATH to all Json table columns", "Adding JPATH to all Json table columns",
NULL, NULL, 0); // NO by default NULL, NULL, 1); // YES by default
// Null representation for JSON values // Null representation for JSON values
static MYSQL_THDVAR_STR(json_null, static MYSQL_THDVAR_STR(json_null,
...@@ -411,7 +411,7 @@ static MYSQL_THDVAR_STR(json_null, ...@@ -411,7 +411,7 @@ static MYSQL_THDVAR_STR(json_null,
static MYSQL_THDVAR_INT(default_depth, static MYSQL_THDVAR_INT(default_depth,
PLUGIN_VAR_RQCMDARG, PLUGIN_VAR_RQCMDARG,
"Default depth used by Json, XML and Mongo discovery", "Default depth used by Json, XML and Mongo discovery",
NULL, NULL, 0, -1, 16, 1); NULL, NULL, 5, -1, 16, 1); // Defaults to 5
// Estimate max number of rows for JSON aggregate functions // Estimate max number of rows for JSON aggregate functions
static MYSQL_THDVAR_UINT(json_grp_size, static MYSQL_THDVAR_UINT(json_grp_size,
...@@ -4543,14 +4543,12 @@ bool ha_connect::check_privileges(THD *thd, PTOS options, char *dbn, bool quick) ...@@ -4543,14 +4543,12 @@ bool ha_connect::check_privileges(THD *thd, PTOS options, char *dbn, bool quick)
case TAB_DIR: case TAB_DIR:
case TAB_ZIP: case TAB_ZIP:
case TAB_OEM: case TAB_OEM:
if (table && table->pos_in_table_list) // if SELECT if (table && table->pos_in_table_list) { // if SELECT
{
#if MYSQL_VERSION_ID > 100200 #if MYSQL_VERSION_ID > 100200
Switch_to_definer_security_ctx backup_ctx(thd, table->pos_in_table_list); Switch_to_definer_security_ctx backup_ctx(thd, table->pos_in_table_list);
#endif // VERSION_ID > 100200 #endif // VERSION_ID > 100200
return check_global_access(thd, FILE_ACL); return check_global_access(thd, FILE_ACL);
} } else
else
return check_global_access(thd, FILE_ACL); return check_global_access(thd, FILE_ACL);
case TAB_ODBC: case TAB_ODBC:
case TAB_JDBC: case TAB_JDBC:
...@@ -5360,7 +5358,8 @@ static char *encode(PGLOBAL g, const char *cnm) ...@@ -5360,7 +5358,8 @@ static char *encode(PGLOBAL g, const char *cnm)
*/ */
static bool add_field(String* sql, TABTYPE ttp, const char* field_name, int typ, static bool add_field(String* sql, TABTYPE ttp, const char* field_name, int typ,
int len, int dec, char* key, uint tm, const char* rem, int len, int dec, char* key, uint tm, const char* rem,
char* dft, char* xtra, char* fmt, int flag, bool dbf, char v) { char* dft, char* xtra, char* fmt, int flag, bool dbf, char v)
{
#if defined(DEVELOPMENT) #if defined(DEVELOPMENT)
// Some client programs regard CHAR(36) as GUID // Some client programs regard CHAR(36) as GUID
char var = (len > 255 || len == 36) ? 'V' : v; char var = (len > 255 || len == 36) ? 'V' : v;
...@@ -5604,8 +5603,8 @@ static int connect_assisted_discovery(handlerton *, THD* thd, ...@@ -5604,8 +5603,8 @@ static int connect_assisted_discovery(handlerton *, THD* thd,
String sql(buf, sizeof(buf), system_charset_info); String sql(buf, sizeof(buf), system_charset_info);
sql.copy(STRING_WITH_LEN("CREATE TABLE whatever ("), system_charset_info); sql.copy(STRING_WITH_LEN("CREATE TABLE whatever ("), system_charset_info);
user = host = pwd = tbl = src = col = ocl = pic = fcl = skc = rnk = zfn = NULL; user= host= pwd= tbl= src= col= ocl= pic= fcl= skc= rnk= zfn= NULL;
dsn = url = NULL; dsn= url= NULL;
// Get the useful create options // Get the useful create options
ttp= GetTypeID(topt->type); ttp= GetTypeID(topt->type);
...@@ -6268,7 +6267,7 @@ static int connect_assisted_discovery(handlerton *, THD* thd, ...@@ -6268,7 +6267,7 @@ static int connect_assisted_discovery(handlerton *, THD* thd,
// Now add the field // Now add the field
if (add_field(&sql, ttp, cnm, typ, prec, dec, key, tm, rem, dft, xtra, if (add_field(&sql, ttp, cnm, typ, prec, dec, key, tm, rem, dft, xtra,
fmt, flg, dbf, v)) fmt, flg, dbf, v))
rc= HA_ERR_OUT_OF_MEM; rc= HA_ERR_OUT_OF_MEM;
} // endfor i } // endfor i
...@@ -6767,8 +6766,8 @@ int ha_connect::create(const char *name, TABLE *table_arg, ...@@ -6767,8 +6766,8 @@ int ha_connect::create(const char *name, TABLE *table_arg,
if (trace(1)) if (trace(1))
htrc("xchk=%p createas=%d\n", g->Xchk, g->Createas); htrc("xchk=%p createas=%d\n", g->Xchk, g->Createas);
#if defined(ZIP_SUPPORT)
if (options->zipped) { if (options->zipped) {
#if defined(ZIP_SUPPORT)
// Check whether the zip entry must be made from a file // Check whether the zip entry must be made from a file
PCSZ fn= GetListOption(g, "Load", options->oplist, NULL); PCSZ fn= GetListOption(g, "Load", options->oplist, NULL);
...@@ -6790,9 +6789,11 @@ int ha_connect::create(const char *name, TABLE *table_arg, ...@@ -6790,9 +6789,11 @@ int ha_connect::create(const char *name, TABLE *table_arg,
} // endif LoadFile } // endif LoadFile
} // endif fn } // endif fn
#else // !ZIP_SUPPORT
my_message(ER_UNKNOWN_ERROR, "Option ZIP not supported", MYF(0));
DBUG_RETURN(HA_ERR_INTERNAL_ERROR);
#endif // !ZIP_SUPPORT
} // endif zipped } // endif zipped
#endif // ZIP_SUPPORT
// To check whether indexes have to be made or remade // To check whether indexes have to be made or remade
if (!g->Xchk) { if (!g->Xchk) {
......
...@@ -1533,10 +1533,11 @@ PSZ JVALUE::GetString(PGLOBAL g) ...@@ -1533,10 +1533,11 @@ PSZ JVALUE::GetString(PGLOBAL g)
sprintf(buf, "%.*lf", Val->Nd, Val->F); sprintf(buf, "%.*lf", Val->Nd, Val->F);
break; break;
case TYPE_BOOL: case TYPE_BOOL:
p = (Val->B) ? "true" : "false"; p = (char*)PlugDup(g, (Val->B) ? "true" : "false");
break; break;
case TYPE_NULL: case TYPE_NULL:
p = "null"; p = (char*)PlugDup(g, "null")
;
break; break;
default: default:
p = NULL; p = NULL;
...@@ -1545,7 +1546,7 @@ PSZ JVALUE::GetString(PGLOBAL g) ...@@ -1545,7 +1546,7 @@ PSZ JVALUE::GetString(PGLOBAL g)
} else } else
p = NULL; p = NULL;
return p; return (p == buf)? (char*)PlugDup(g, buf) : p;
} // end of GetString } // end of GetString
/***********************************************************************/ /***********************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment