diff options
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb-table-online.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb-table-online.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/t/innodb-table-online.test b/mysql-test/suite/innodb/t/innodb-table-online.test index be346001953..86aa34f8c35 100644 --- a/mysql-test/suite/innodb/t/innodb-table-online.test +++ b/mysql-test/suite/innodb/t/innodb-table-online.test @@ -394,7 +394,7 @@ SHOW CREATE TABLE t1; SET GLOBAL innodb_monitor_disable = module_ddl; DROP TABLE t1; -CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; +CREATE TABLE t1 (a INT PRIMARY KEY, b blob) ENGINE=InnoDB; connection con1; SET DEBUG_SYNC = 'row_log_table_apply1_before SIGNAL created WAIT_FOR ins'; @@ -403,7 +403,7 @@ send ALTER TABLE t1 FORCE; connection default; SET DEBUG_SYNC = 'now WAIT_FOR created'; BEGIN; -INSERT INTO t1 VALUES(1); +INSERT INTO t1 VALUES(1, repeat('a', 10000)); ROLLBACK; SET DEBUG_SYNC = 'now SIGNAL ins'; |