mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.11 into 11.0
This commit is contained in:
@ -118,7 +118,7 @@ static bool wsrep_mysql_parse(THD *thd, char *rawbuf, uint length,
|
||||
*/
|
||||
|
||||
static bool execute_sqlcom_select(THD *thd, TABLE_LIST *all_tables);
|
||||
static void sql_kill(THD *thd, longlong id, killed_state state, killed_type type);
|
||||
static void sql_kill(THD *thd, my_thread_id id, killed_state state, killed_type type);
|
||||
static void sql_kill_user(THD *thd, LEX_USER *user, killed_state state);
|
||||
static bool lock_tables_precheck(THD *thd, TABLE_LIST *tables);
|
||||
static bool execute_show_status(THD *, TABLE_LIST *);
|
||||
@ -4210,8 +4210,10 @@ mysql_execute_command(THD *thd, bool is_called_from_prepared_stmt)
|
||||
|
||||
WSREP_TO_ISOLATION_BEGIN(first_table->db.str, first_table->table_name.str, NULL);
|
||||
|
||||
Recreate_info recreate_info;
|
||||
res= mysql_alter_table(thd, &first_table->db, &first_table->table_name,
|
||||
&create_info, first_table, &alter_info,
|
||||
&create_info, first_table,
|
||||
&recreate_info, &alter_info,
|
||||
0, (ORDER*) 0, 0, lex->if_exists());
|
||||
break;
|
||||
}
|
||||
@ -5536,7 +5538,7 @@ mysql_execute_command(THD *thd, bool is_called_from_prepared_stmt)
|
||||
MYF(0));
|
||||
goto error;
|
||||
}
|
||||
sql_kill(thd, it->val_int(), lex->kill_signal, lex->kill_type);
|
||||
sql_kill(thd, (my_thread_id) it->val_int(), lex->kill_signal, lex->kill_type);
|
||||
}
|
||||
else
|
||||
sql_kill_user(thd, get_current_user(thd, lex->users_list.head()),
|
||||
@ -8806,8 +8808,8 @@ TABLE_LIST *st_select_lex::convert_right_join()
|
||||
void st_select_lex::prepare_add_window_spec(THD *thd)
|
||||
{
|
||||
LEX *lex= thd->lex;
|
||||
lex->save_group_list= group_list;
|
||||
lex->save_order_list= order_list;
|
||||
save_group_list= group_list;
|
||||
save_order_list= order_list;
|
||||
lex->win_ref= NULL;
|
||||
lex->win_frame= NULL;
|
||||
lex->frame_top_bound= NULL;
|
||||
@ -8834,8 +8836,8 @@ bool st_select_lex::add_window_def(THD *thd,
|
||||
win_part_list_ptr,
|
||||
win_order_list_ptr,
|
||||
win_frame);
|
||||
group_list= thd->lex->save_group_list;
|
||||
order_list= thd->lex->save_order_list;
|
||||
group_list= save_group_list;
|
||||
order_list= save_order_list;
|
||||
if (parsing_place != SELECT_LIST)
|
||||
{
|
||||
fields_in_window_functions+= win_part_list_ptr->elements +
|
||||
@ -8861,8 +8863,8 @@ bool st_select_lex::add_window_spec(THD *thd,
|
||||
win_part_list_ptr,
|
||||
win_order_list_ptr,
|
||||
win_frame);
|
||||
group_list= thd->lex->save_group_list;
|
||||
order_list= thd->lex->save_order_list;
|
||||
group_list= save_group_list;
|
||||
order_list= save_order_list;
|
||||
if (parsing_place != SELECT_LIST)
|
||||
{
|
||||
fields_in_window_functions+= win_part_list_ptr->elements +
|
||||
@ -9166,12 +9168,12 @@ THD *find_thread_by_id(longlong id, bool query_id)
|
||||
*/
|
||||
|
||||
uint
|
||||
kill_one_thread(THD *thd, longlong id, killed_state kill_signal, killed_type type)
|
||||
kill_one_thread(THD *thd, my_thread_id id, killed_state kill_signal, killed_type type)
|
||||
{
|
||||
THD *tmp;
|
||||
uint error= (type == KILL_TYPE_QUERY ? ER_NO_SUCH_QUERY : ER_NO_SUCH_THREAD);
|
||||
DBUG_ENTER("kill_one_thread");
|
||||
DBUG_PRINT("enter", ("id: %lld signal: %d", id, kill_signal));
|
||||
DBUG_PRINT("enter", ("id: %lld signal: %d", (long long) id, kill_signal));
|
||||
tmp= find_thread_by_id(id, type == KILL_TYPE_QUERY);
|
||||
if (!tmp)
|
||||
DBUG_RETURN(error);
|
||||
@ -9344,7 +9346,7 @@ static uint kill_threads_for_user(THD *thd, LEX_USER *user,
|
||||
*/
|
||||
|
||||
static
|
||||
void sql_kill(THD *thd, longlong id, killed_state state, killed_type type)
|
||||
void sql_kill(THD *thd, my_thread_id id, killed_state state, killed_type type)
|
||||
{
|
||||
uint error;
|
||||
#ifdef WITH_WSREP
|
||||
|
Reference in New Issue
Block a user