mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
System Versioning 1.0 pre8
Merge branch '10.3' into trunk
This commit is contained in:
@ -196,8 +196,9 @@ init_lex_with_single_table(THD *thd, TABLE *table, LEX *lex)
|
||||
lex_start(thd);
|
||||
context->init();
|
||||
if ((!(table_ident= new Table_ident(thd,
|
||||
&table->s->db,
|
||||
&table->s->table_name,
|
||||
&table->s->db, TRUE))) ||
|
||||
TRUE))) ||
|
||||
(!(table_list= select_lex->add_table_to_list(thd,
|
||||
table_ident,
|
||||
NULL,
|
||||
@ -737,6 +738,7 @@ void LEX::start(THD *thd_arg)
|
||||
spcont= NULL;
|
||||
proc_list.first= 0;
|
||||
escape_used= FALSE;
|
||||
default_used= FALSE;
|
||||
query_tables= 0;
|
||||
reset_query_tables_list(FALSE);
|
||||
expr_allows_subselect= TRUE;
|
||||
@ -2453,10 +2455,8 @@ void st_select_lex_node::move_as_slave(st_select_lex_node *new_master)
|
||||
prev= &curr->next;
|
||||
}
|
||||
else
|
||||
{
|
||||
prev= &new_master->slave;
|
||||
new_master->slave= this;
|
||||
}
|
||||
*prev= this;
|
||||
next= 0;
|
||||
master= new_master;
|
||||
}
|
||||
@ -3051,7 +3051,7 @@ void Query_tables_list::destroy_query_tables_list()
|
||||
LEX::LEX()
|
||||
: explain(NULL), result(0), arena_for_set_stmt(0), mem_root_for_set_stmt(0),
|
||||
option_type(OPT_DEFAULT), context_analysis_only(0), sphead(0),
|
||||
is_lex_started(0), limit_rows_examined_cnt(ULONGLONG_MAX)
|
||||
default_used(0), is_lex_started(0), limit_rows_examined_cnt(ULONGLONG_MAX)
|
||||
{
|
||||
|
||||
init_dynamic_array2(&plugins, sizeof(plugin_ref), plugins_static_buffer,
|
||||
|
Reference in New Issue
Block a user