refs #5886 fix upsert result file

git-svn-id: file:///svn/mysql/tests/mysql-test@51983 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska 2013-01-11 21:53:15 +00:00
parent 964d1d2553
commit 894975137d

View file

@ -12,8 +12,6 @@ a char(32), aa varchar(32)
insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0;
insert noar into tt (id) values (1) on duplicate key update y=0,z=42;
insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100;
Warnings:
Warning 1264 Out of range value for column 'z' at row 1
insert noar into tt (id) values (1) on duplicate key update y=y-1;
insert noar into tt (id) values (1) on duplicate key update z=z-100;
create table ti like tt;
@ -37,8 +35,6 @@ a char(32), aa varchar(32)
insert noar into tt (id) values (1),(2),(3) on duplicate key update x=0;
insert noar into tt (id) values (1) on duplicate key update y=0,z=42;
insert noar into tt (id) values (1) on duplicate key update y=y+1,z=z+100;
Warnings:
Warning 1264 Out of range value for column 'z' at row 1
insert noar into tt (id) values (1) on duplicate key update y=y-1;
insert noar into tt (id) values (1) on duplicate key update z=z-100;
create table ti like tt;