mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
10 lines
270 B
Text
10 lines
270 B
Text
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;
|