diff options
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb_bug40565.result')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb_bug40565.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_bug40565.result b/mysql-test/suite/innodb/r/innodb_bug40565.result new file mode 100644 index 00000000..21e923d9 --- /dev/null +++ b/mysql-test/suite/innodb/r/innodb_bug40565.result @@ -0,0 +1,9 @@ +create table bug40565(value decimal(4,2)) engine=innodb; +insert into bug40565 values (1), (null); +update bug40565 set value=NULL; +affected rows: 1 +info: Rows matched: 2 Changed: 1 Warnings: 0 +update bug40565 set value=NULL; +affected rows: 0 +info: Rows matched: 2 Changed: 0 Warnings: 0 +drop table bug40565; |