2 # Test for strict-mode autoincrement
6 drop table if exists t1;
9 set @org_mode=@@sql_mode;
12 `a` tinyint(4) NOT NULL auto_increment,
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);