summaryrefslogtreecommitdiff
path: root/mysql-test/t/warnings.test
blob: eeb45eaba56779bea3c563f64f4a82f7575e9cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Test some warnings
#
--disable-warnings
drop table if exists t1;
--enable-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;

#
# Test other warnings

drop temporary table if exists not_exists;