1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-11 05:52:26 +03:00

undo one row warning instead use sql_warnings=1

This commit is contained in:
venu@hundin.mysql.fi
2003-07-21 19:37:18 +03:00
parent bc7cf30338
commit 0440e70a96
3 changed files with 7 additions and 3 deletions

View File

@@ -52,6 +52,9 @@ update t1 set d=c;
create table t2(a tinyint NOT NULL, b char(3));
insert into t2 select b,c from t1;
insert into t2(b) values('mysqlab');
set sql_warnings=1;
insert into t2(b) values('mysqlab');
set sql_warnings=0;
drop table t1, t2;
#