mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / include / strict_autoinc.inc
blob823efcc2040ff37c5e461bb8448697f946d0f710
2 # Test for strict-mode autoincrement
5 --disable_warnings
6 drop table if exists t1;
7 --enable_warnings
9 set @org_mode=@@sql_mode;
10 eval create table t1
12   `a` tinyint(4) NOT NULL auto_increment,
13   primary key (`a`)
14 ) engine = $type ;
15 set @@sql_mode='strict_all_tables';
16 --error ER_WARN_DATA_OUT_OF_RANGE
17 insert into t1 values(1000);
18 select count(*) from t1;
20 set auto_increment_increment=1000;
21 set auto_increment_offset=700;
22 --error ER_WARN_DATA_OUT_OF_RANGE
23 insert into t1 values(null);
24 select count(*) from t1;
26 set @@sql_mode=@org_mode;
27 insert into t1 values(null);
28 select * from t1;
30 drop table t1;
32 # End of test