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:
@@ -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;
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user