mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.4' into 10.5
This commit is contained in:
@ -715,4 +715,12 @@ CREATE SEQUENCE seq1 START WITH 2;
|
||||
CREATE TRIGGER s1 BEFORE UPDATE ON seq1 FOR EACH ROW SET @a= 5;
|
||||
ERROR HY000: Trigger's 'seq1' is view, temporary table or sequence
|
||||
DROP SEQUENCE seq1;
|
||||
#
|
||||
# MDEV-29771: Server crashes in check_sequence_fields upon
|
||||
# CREATE TABLE .. SEQUENCE=1 AS SELECT ..
|
||||
#
|
||||
create table s sequence=1 as select 1;
|
||||
ERROR HY000: Sequence 'test.s' table structure is invalid (Wrong number of columns)
|
||||
#
|
||||
# End of 10.4 test
|
||||
#
|
||||
|
Reference in New Issue
Block a user