Comment 5 for bug 1195614

Revision history for this message
Ramesh Sivaraman (rameshvs02) wrote :

Got one testcase for this issue....

DROP DATABASE test;CREATE DATABASE test;USE test;
CREATE TABLE t1(a CHAR(4)CHARACTER SET utf8,KEY key_a(a(3)));
create index t1a1 on t1(a(1));
INSERT INTO t1 VALUES('01:00:00.000008');
SET innodb_fake_changes=1;
UPDATE t1 SET a=0;

I could not reproduce it with MS after removing "SET innodb_fake_changes=1;"