diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2019-11-01 15:23:18 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2019-11-01 15:23:18 +0200 |
commit | ec40980ddd921a3a765c23cc430c9c219e48ea85 (patch) | |
tree | 6553832d3d3fb4b2cb39aea6a1d69e54275f6eb2 /sql/sql_yacc_ora.yy | |
parent | 6801f80aface011811d2978f86c03a25ca7b9165 (diff) | |
parent | 9c72963d2aef783cae652b5b8ac01f7aa2bcb43a (diff) | |
download | mariadb-git-ec40980ddd921a3a765c23cc430c9c219e48ea85.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'sql/sql_yacc_ora.yy')
-rw-r--r-- | sql/sql_yacc_ora.yy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_yacc_ora.yy b/sql/sql_yacc_ora.yy index 9370faf7ef5..aebbb145f96 100644 --- a/sql/sql_yacc_ora.yy +++ b/sql/sql_yacc_ora.yy @@ -7896,6 +7896,7 @@ alter: Lex->first_select_lex()->db= (Lex->first_select_lex()->table_list.first)->db; Lex->create_last_non_select_table= Lex->last_table(); + Lex->mark_first_table_as_inserting(); } alter_commands { @@ -13618,6 +13619,7 @@ insert: Lex->pop_select(); //main select if (Lex->check_main_unit_semantics()) MYSQL_YYABORT; + Lex->mark_first_table_as_inserting(); } ; @@ -13642,6 +13644,7 @@ replace: Lex->pop_select(); //main select if (Lex->check_main_unit_semantics()) MYSQL_YYABORT; + Lex->mark_first_table_as_inserting(); } ; @@ -15136,6 +15139,7 @@ load: Lex->pop_select(); //main select if (Lex->check_main_unit_semantics()) MYSQL_YYABORT; + Lex->mark_first_table_as_inserting(); } ; |