adding tests for AUTO_INCREMENT value after row deletes. Should initially fail
This commit is contained in:
parent
75009db849
commit
eeab264eb2
15
localtests/autoinc-copy-deletes/create.sql
Normal file
15
localtests/autoinc-copy-deletes/create.sql
Normal file
@ -0,0 +1,15 @@
|
||||
drop table if exists gh_ost_test;
|
||||
create table gh_ost_test (
|
||||
id int auto_increment,
|
||||
i int not null,
|
||||
primary key(id)
|
||||
) auto_increment=1;
|
||||
|
||||
insert into gh_ost_test values (NULL, 11);
|
||||
insert into gh_ost_test values (NULL, 13);
|
||||
insert into gh_ost_test values (NULL, 17);
|
||||
insert into gh_ost_test values (NULL, 23);
|
||||
insert into gh_ost_test values (NULL, 29);
|
||||
insert into gh_ost_test values (NULL, 31);
|
||||
insert into gh_ost_test values (NULL, 37);
|
||||
delete from gh_ost_test where id>5;
|
1
localtests/autoinc-copy-deletes/expect_table_structure
Normal file
1
localtests/autoinc-copy-deletes/expect_table_structure
Normal file
@ -0,0 +1 @@
|
||||
AUTO_INCREMENT=8
|
Loading…
Reference in New Issue
Block a user