mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb_plugin / t / innodb_bug40565.test
blobbcc61a1f6d20f86230ae0ae03816f3c656ef6668
1 # Bug #40565 Update Query Results in "1 Row Affected" But Should Be "Zero Rows"
2 -- source include/have_innodb_plugin.inc
4 create table bug40565(value decimal(4,2)) engine=innodb;
5 insert into bug40565 values (1), (null);
6 --enable_info
7 update bug40565 set value=NULL;
8 update bug40565 set value=NULL;
9 --disable_info
10 drop table bug40565;