Commit 5b08a68f authored by unknown's avatar unknown

test made independend of server builtin features

parent 00e79db8
...@@ -37,11 +37,10 @@ a b ...@@ -37,11 +37,10 @@ a b
32 6 32 6
drop table t1; drop table t1;
set @@session.auto_increment_increment=100, @@session.auto_increment_offset=10; set @@session.auto_increment_increment=100, @@session.auto_increment_offset=10;
show variables like "%auto%"; show variables like "%auto_inc%";
Variable_name Value Variable_name Value
auto_increment_increment 100 auto_increment_increment 100
auto_increment_offset 10 auto_increment_offset 10
innodb_autoextend_increment 8
create table t1 (a int not null auto_increment, primary key (a)) engine=myisam; create table t1 (a int not null auto_increment, primary key (a)) engine=myisam;
insert into t1 values (NULL),(5),(NULL); insert into t1 values (NULL),(5),(NULL);
insert into t1 values (250),(NULL); insert into t1 values (250),(NULL);
......
...@@ -26,7 +26,7 @@ connection master; ...@@ -26,7 +26,7 @@ connection master;
drop table t1; drop table t1;
set @@session.auto_increment_increment=100, @@session.auto_increment_offset=10; set @@session.auto_increment_increment=100, @@session.auto_increment_offset=10;
show variables like "%auto%"; show variables like "%auto_inc%";
create table t1 (a int not null auto_increment, primary key (a)) engine=myisam; create table t1 (a int not null auto_increment, primary key (a)) engine=myisam;
# Insert with 2 insert statements to get better testing of logging # Insert with 2 insert statements to get better testing of logging
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment