Adding simple test for 'expect_table_structure' scenario

This commit is contained in:
Shlomi Noach 2020-12-31 09:50:56 +02:00
parent 26f76027b2
commit 75009db849
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,11 @@
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);

View File

@ -0,0 +1 @@
AUTO_INCREMENT=5