-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* compound pk tests * more details in failure diff * more elaborate test; the pk-ts one consistently fails * Fix merge conflict Co-authored-by: Shlomi Noach <shlomi-noach@github.com> Co-authored-by: Tim Vaillancourt <timvaillancourt@github.com> Co-authored-by: Tim Vaillancourt <tim@timvaillancourt.com>
- Loading branch information
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
drop table if exists gh_ost_test; | ||
create table gh_ost_test ( | ||
id int auto_increment, | ||
i int not null, | ||
ts0 timestamp(6) default current_timestamp(6), | ||
updated tinyint unsigned default 0, | ||
primary key(id, ts0) | ||
) auto_increment=1; | ||
|
||
drop event if exists gh_ost_test; | ||
delimiter ;; | ||
create event gh_ost_test | ||
on schedule every 1 second | ||
starts current_timestamp | ||
ends current_timestamp + interval 60 second | ||
on completion not preserve | ||
enable | ||
do | ||
begin | ||
insert into gh_ost_test values (null, 11, sysdate(6), 0); | ||
update gh_ost_test set updated = 1 where i = 11 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 13, sysdate(6), 0); | ||
update gh_ost_test set updated = 1 where i = 13 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 17, sysdate(6), 0); | ||
update gh_ost_test set updated = 1 where i = 17 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 19, sysdate(6), 0); | ||
update gh_ost_test set updated = 1 where i = 19 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 23, sysdate(6), 0); | ||
update gh_ost_test set updated = 1 where i = 23 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 29, sysdate(6), 0); | ||
insert into gh_ost_test values (null, 31, sysdate(6), 0); | ||
insert into gh_ost_test values (null, 37, sysdate(6), 0); | ||
insert into gh_ost_test values (null, 41, sysdate(6), 0); | ||
delete from gh_ost_test where i = 31 order by id desc limit 1; | ||
end ;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
drop table if exists gh_ost_test; | ||
create table gh_ost_test ( | ||
id int auto_increment, | ||
i int not null, | ||
v varchar(128), | ||
updated tinyint unsigned default 0, | ||
primary key(id, v) | ||
) auto_increment=1; | ||
|
||
drop event if exists gh_ost_test; | ||
delimiter ;; | ||
create event gh_ost_test | ||
on schedule every 1 second | ||
starts current_timestamp | ||
ends current_timestamp + interval 60 second | ||
on completion not preserve | ||
enable | ||
do | ||
begin | ||
insert into gh_ost_test values (null, 11, 'eleven', 0); | ||
update gh_ost_test set updated = 1 where i = 11 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 13, 'thirteen', 0); | ||
update gh_ost_test set updated = 1 where i = 13 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 17, 'seventeen', 0); | ||
update gh_ost_test set updated = 1 where i = 17 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 19, 'nineteen', 0); | ||
update gh_ost_test set updated = 1 where i = 19 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 23, 'twenty three', 0); | ||
update gh_ost_test set updated = 1 where i = 23 order by id desc limit 1; | ||
|
||
insert into gh_ost_test values (null, 29, 'twenty nine', 0); | ||
insert into gh_ost_test values (null, 31, 'thirty one', 0); | ||
insert into gh_ost_test values (null, 37, 'thirty seven', 0); | ||
insert into gh_ost_test values (null, 41, 'forty one', 0); | ||
delete from gh_ost_test where i = 31 order by id desc limit 1; | ||
end ;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters