Skip to content
Permalink
Browse files
- Fixed the change_column_collation test case to avoid the
loss of debug sync signal
  • Loading branch information
Thirunarayanan committed Jul 28, 2022
1 parent 2658410 commit 38d0256
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -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
@@ -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;

0 comments on commit 38d0256

Please sign in to comment.