1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-17959 Assertion `opt_bootstrap || mysql_parse_status || thd->lex->select_stack_top == 0' failed in parse_sql upon DELETE HISTORY under ORACLE mode

This commit is contained in:
Alexander Barkov
2018-12-27 10:32:33 +04:00
parent 829fce9ea6
commit f409eb4d36
3 changed files with 19 additions and 0 deletions

View File

@ -14,3 +14,11 @@ SELECT * FROM t1 FOR SYSTEM_TIME AS OF (NOW()+INTERVAL 10 YEAR);
a
20
DROP TABLE t1;
#
# MDEV-17959 Assertion `opt_bootstrap || mysql_parse_status || thd->lex->select_stack_top == 0' failed in parse_sql upon DELETE HISTORY under ORACLE mode
#
SET SQL_MODE= ORACLE;
CREATE TABLE t1 (a INT);
DELETE HISTORY FROM t1;
ERROR HY000: Table `t1` is not system-versioned
DROP TABLE t1;