mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Added support for hex strings to mysqlimport
A lot of new tests to mysqltest Fixed bug with BDB tables and autocommit
This commit is contained in:
13
mysql-test/t/warnings.test
Normal file
13
mysql-test/t/warnings.test
Normal file
@ -0,0 +1,13 @@
|
||||
#
|
||||
# Test some warnings
|
||||
#
|
||||
|
||||
create table t1 (a int);
|
||||
insert into t1 values (1);
|
||||
insert into t1 values ("hej");
|
||||
insert into t1 values ("hej"),("d<>");
|
||||
set SQL_WARNINGS=1;
|
||||
insert into t1 values ("hej");
|
||||
insert into t1 values ("hej"),("d<>");
|
||||
drop table t1;
|
||||
set SQL_WARNINGS=0;
|
Reference in New Issue
Block a user