-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new logic for adding unique tables from unsharded keyspaces witho…
…ut vschemas to the global routing. Create more comprehensive unit test. Signed-off-by: Rohit Nayak <[email protected]>
- Loading branch information
1 parent
271e95f
commit 53fa30e
Showing
8 changed files
with
364 additions
and
197 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
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,13 @@ | ||
create table u2_a | ||
( | ||
id bigint, | ||
a bigint, | ||
primary key (id) | ||
) Engine = InnoDB; | ||
|
||
create table u2_b | ||
( | ||
id bigint, | ||
b varchar(50), | ||
primary key (id) | ||
) Engine = InnoDB; |
Empty file.
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.