mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 11.0 into 11.1
This commit is contained in:
@@ -3065,9 +3065,9 @@ public:
|
||||
void set_impossible_where() { impossible_where= true; }
|
||||
void set_no_partitions() { no_partitions= true; }
|
||||
|
||||
Explain_update* save_explain_update_data(MEM_ROOT *mem_root, THD *thd);
|
||||
Explain_update* save_explain_update_data(THD *thd, MEM_ROOT *mem_root);
|
||||
protected:
|
||||
bool save_explain_data_intern(MEM_ROOT *mem_root, Explain_update *eu, bool is_analyze);
|
||||
bool save_explain_data_intern(THD *thd, MEM_ROOT *mem_root, Explain_update *eu, bool is_analyze);
|
||||
public:
|
||||
virtual ~Update_plan() = default;
|
||||
|
||||
@@ -3102,7 +3102,7 @@ public:
|
||||
deleting_all_rows= false;
|
||||
}
|
||||
|
||||
Explain_delete* save_explain_delete_data(MEM_ROOT *mem_root, THD *thd);
|
||||
Explain_delete* save_explain_delete_data(THD *thd, MEM_ROOT *mem_root);
|
||||
};
|
||||
|
||||
enum account_lock_type
|
||||
@@ -3528,6 +3528,12 @@ public:
|
||||
sp_head *sphead;
|
||||
sp_name *spname;
|
||||
|
||||
void delete_if_not_sp_lex_in_use()
|
||||
{
|
||||
if (!sp_lex_in_use)
|
||||
delete this;
|
||||
}
|
||||
|
||||
sp_pcontext *spcont;
|
||||
|
||||
st_sp_chistics sp_chistics;
|
||||
|
Reference in New Issue
Block a user