-
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.
added unsharded keyspace to the test
Signed-off-by: Harshit Gangal <[email protected]>
- Loading branch information
1 parent
a518157
commit 6be7923
Showing
2 changed files
with
66 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE `unsharded` ( | ||
`id` INT NOT NULL PRIMARY KEY, | ||
`col1` VARCHAR(255) DEFAULT NULL, | ||
`col2` VARCHAR(255) DEFAULT NULL, | ||
`name` VARCHAR(255) DEFAULT NULL | ||
); | ||
|
||
CREATE TABLE `unsharded_auto` ( | ||
`id` INT NOT NULL PRIMARY KEY, | ||
`col1` VARCHAR(255) DEFAULT NULL, | ||
`col2` VARCHAR(255) DEFAULT NULL | ||
); |