forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support settings changes with atomic transactions (vitessio#16974)
Signed-off-by: Manan Gupta <[email protected]>
- Loading branch information
1 parent
a0f8cde
commit e881b9f
Showing
14 changed files
with
394 additions
and
78 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
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 |
---|---|---|
@@ -1,20 +1,11 @@ | ||
create table twopc_fuzzer_update ( | ||
create table twopc_t1 ( | ||
id bigint, | ||
col bigint, | ||
primary key (id) | ||
) Engine=InnoDB; | ||
|
||
create table twopc_fuzzer_insert ( | ||
id bigint, | ||
updateSet bigint, | ||
threadId bigint, | ||
col bigint auto_increment, | ||
key(col), | ||
primary key (id, col) | ||
) Engine=InnoDB; | ||
|
||
create table twopc_t1 ( | ||
create table twopc_settings ( | ||
id bigint, | ||
col bigint, | ||
col varchar(50), | ||
primary key (id) | ||
) Engine=InnoDB; |
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
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
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
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
Oops, something went wrong.