summaryrefslogtreecommitdiff
path: root/storage/innodb_plugin/mysql-test/innodb_bug40565.test
blob: d7aa0fd514a3f643c2ad287aa79787fda630f2b7 (plain)
1
2
3
4
5
6
7
8
9
10
# Bug #40565 Update Query Results in "1 Row Affected" But Should Be "Zero Rows"
-- source include/have_innodb.inc

create table bug40565(value decimal(4,2)) engine=innodb;
insert into bug40565 values (1), (null);
--enable_info
update bug40565 set value=NULL;
update bug40565 set value=NULL;
--disable_info
drop table bug40565;