1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Sync with rev.105

This commit is contained in:
Aleksandr Kuzminsky
2009-09-23 00:06:02 +00:00
parent 222507900c
commit 9a591471e0
43 changed files with 2448 additions and 193 deletions

View File

@@ -0,0 +1,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;