diff options
author | venu@myvenu.com <> | 2003-07-21 00:13:22 -0700 |
---|---|---|
committer | venu@myvenu.com <> | 2003-07-21 00:13:22 -0700 |
commit | bc7cf3033885e91812688a9c9248d8a7acdea211 (patch) | |
tree | 9921fe8a50425c0c8d0110c2619d4d89664409e3 /mysql-test/t/warnings.test | |
parent | dc5c0784cffed0fe35b6e55d1823488be0f366be (diff) | |
download | mariadb-git-bc7cf3033885e91812688a9c9248d8a7acdea211.tar.gz |
Enable warnings by default for single value list inserts also when the client protocol is >= 4.1
Diffstat (limited to 'mysql-test/t/warnings.test')
-rw-r--r-- | mysql-test/t/warnings.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index 6374fbf83ac..6991f9d9b2f 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -51,6 +51,7 @@ update t1 set c='mysql ab' where c='test'; 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'); drop table t1, t2; # |