mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Merge bb-10.2-ext into 10.3
This commit is contained in:
commit
cc3b5d1fe7
54 changed files with 1272 additions and 356 deletions
|
|
@ -133,7 +133,18 @@ unlock tables;
|
|||
drop sequence s1;
|
||||
|
||||
--echo #
|
||||
--echo # Don't allow SQUENCE to be used with CHECK or virtual fields
|
||||
--echo # MDEV-14761
|
||||
--echo # Assertion `!mysql_parse_status || thd->is_error() ||
|
||||
--echo # thd->get_internal_handler()' failed in parse_sql
|
||||
--echo #
|
||||
|
||||
CREATE SEQUENCE s1;
|
||||
--error ER_DUP_ARGUMENT
|
||||
ALTER SEQUENCE s1 MAXVALUE 100 NO MAXVALUE;
|
||||
DROP SEQUENCE s1;
|
||||
|
||||
--echo #
|
||||
--echo # Don't allow SEQUENCE to be used with CHECK or virtual fields
|
||||
--echo #
|
||||
|
||||
CREATE SEQUENCE s1 nocache engine=myisam;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue