mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
13 lines
295 B
Text
13 lines
295 B
Text
#
|
|
# Test some warnings
|
|
#
|
|
drop table if exists t1;
|
|
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;
|