- Fixed the change_column_collation test case to avoid the

loss of debug sync signal
This commit is contained in:
Thirunarayanan Balathandayuthapani 2022-07-28 21:03:32 +05:30
parent 2658410afc
commit 38d0256b14
2 changed files with 2 additions and 2 deletions

View file

@ -40,9 +40,9 @@ INSERT INTO t1 VALUES (4, 'AAA');
UPDATE t1 set msg = "ddd" where id = 2;
DELETE FROM t1 WHERE id= 3;
SET DEBUG_SYNC = 'now SIGNAL go_ahead';
SET DEBUG_SYNC = 'RESET';
connection default;
ERROR 23000: Duplicate entry 'NULL' for key 'msg'
SET DEBUG_SYNC = 'RESET';
SELECT * FROM t1;
id msg
4 AAA

View file

@ -63,13 +63,13 @@ INSERT INTO t1 VALUES (4, 'AAA');
UPDATE t1 set msg = "ddd" where id = 2;
DELETE FROM t1 WHERE id= 3;
SET DEBUG_SYNC = 'now SIGNAL go_ahead';
SET DEBUG_SYNC = 'RESET';
connection default;
--error ER_DUP_ENTRY
reap;
SET DEBUG_SYNC = 'RESET';
SELECT * FROM t1;
DROP TABLE t1;