added 'trivial' test
This commit is contained in:
parent
8f02ab0fed
commit
e157f692d5
13
localtests/trivial/create.sql
Normal file
13
localtests/trivial/create.sql
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
drop table if exists gh_ost_test;
|
||||||
|
create table gh_ost_test (
|
||||||
|
id int auto_increment,
|
||||||
|
i int not null,
|
||||||
|
color varchar(32),
|
||||||
|
primary key(id)
|
||||||
|
) auto_increment=1;
|
||||||
|
|
||||||
|
drop event if exists gh_ost_test;
|
||||||
|
|
||||||
|
insert into gh_ost_test values (null, 11, 'red');
|
||||||
|
insert into gh_ost_test values (null, 13, 'green');
|
||||||
|
insert into gh_ost_test values (null, 17, 'blue');
|
1
localtests/trivial/extra_args
Normal file
1
localtests/trivial/extra_args
Normal file
@ -0,0 +1 @@
|
|||||||
|
--throttle-query='select false' \
|
Loading…
Reference in New Issue
Block a user