Comment 15 for bug 1192898

Revision history for this message
Roel Van de Paar (roel11) wrote :

Another testcase

DROP DATABASE test;CREATE DATABASE test;USE test;
set global innodb_limit_optimistic_insert_debug=2;
CREATE TABLE t1(c1 INT,c2 CHAR(5)) PARTITION BY HASH(c1) PARTITIONS 2;
INSERT INTO t1 VALUES(),(),(),(),(),(),(),(),(),(),(),(),(),(),();
SET innodb_fake_changes=1;
INSERT INTO t1(c1)VALUES(2);