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

Enable warnings by default for single value list inserts also when the client protocol is >= 4.1

tests/client_test.c:
  test for timestamp bug (BR #819)
sql/sql_insert.cc:
  Enable warnings by default for single value list
  protocol
mysql-test/t/warnings.test:
  Updated test for single value list insert warning
mysql-test/r/warnings.result:
  Updated warnings results
This commit is contained in:
unknown
2003-07-21 00:13:22 -07:00
parent 012910656f
commit f22517e4ec
5 changed files with 95 additions and 6 deletions

View File

@@ -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;
#