summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/rename_table_debug.result
blob: 646bd4faf5d615634a194c932393f5702d815fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FLUSH TABLES;
CREATE TABLE t1 (a SERIAL, b INT, c INT, d INT) ENGINE=InnoDB;
INSERT INTO t1 () VALUES ();
connect  con1,localhost,root,,test;
SET DEBUG_SYNC='before_rename_table_commit SIGNAL renamed WAIT_FOR ever';
RENAME TABLE t1 TO t2;
connection default;
SET DEBUG_SYNC='now WAIT_FOR renamed';
disconnect con1;
SELECT * FROM t1;
a	b	c	d
1	NULL	NULL	NULL
DROP TABLE t1;