mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@@ -2777,7 +2777,7 @@ static const char *thread_state_info(THD *tmp)
|
||||
if (cond)
|
||||
return "Waiting on cond";
|
||||
}
|
||||
return NULL;
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
@@ -8834,9 +8834,9 @@ int mysql_schema_table(THD *thd, LEX *lex, TABLE_LIST *table_list)
|
||||
}
|
||||
List_iterator_fast<Item> it(sel->item_list);
|
||||
if (!(transl=
|
||||
(Field_translator*)(thd->stmt_arena->
|
||||
(Field_translator*)(thd->active_stmt_arena_to_use()->
|
||||
alloc(sel->item_list.elements *
|
||||
sizeof(Field_translator)))))
|
||||
sizeof(Field_translator))))) // ???
|
||||
{
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
@@ -9796,7 +9796,7 @@ ST_FIELD_INFO partitions_fields_info[]=
|
||||
ST_FIELD_INFO variables_fields_info[]=
|
||||
{
|
||||
Column("VARIABLE_NAME", Varchar(64), NOT_NULL, "Variable_name"),
|
||||
Column("VARIABLE_VALUE", Varchar(2048), NOT_NULL, "Value"),
|
||||
Column("VARIABLE_VALUE", Varchar(4096), NOT_NULL, "Value"),
|
||||
CEnd()
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user