mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-32593 Assertion failure upon CREATE SEQUENCE
A recently added by MDEV-32593 assert conditions are corrected.
This commit is contained in:
@ -121,7 +121,10 @@ SET @@global.debug_dbug = "";
|
||||
SET @@global.gtid_strict_mode=0;
|
||||
include/start_slave.inc
|
||||
connection master;
|
||||
DROP SEQUENCE s2,s3;
|
||||
BEGIN;
|
||||
INSERT INTO ti SET a=32593;
|
||||
CREATE SEQUENCE s4;
|
||||
DROP SEQUENCE s2,s3,s4;
|
||||
DROP TABLE ti;
|
||||
connection slave;
|
||||
include/rpl_end.inc
|
||||
|
Reference in New Issue
Block a user