-
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.
- Loading branch information
1 parent
d406270
commit 67f6ebe
Showing
17 changed files
with
1,310 additions
and
2 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,5 +1,46 @@ | ||
<<<<<<< HEAD | ||
create table if not exists t1( | ||
id1 bigint, | ||
id2 bigint, | ||
primary key(id1) | ||
) Engine=InnoDB; | ||
) Engine=InnoDB; | ||
======= | ||
create table t1 | ||
( | ||
id1 bigint, | ||
id2 bigint, | ||
primary key (id1) | ||
) Engine=InnoDB; | ||
|
||
create table unq_idx | ||
( | ||
unq_col bigint, | ||
keyspace_id varbinary(20), | ||
primary key (unq_col) | ||
) Engine = InnoDB; | ||
|
||
create table nonunq_idx | ||
( | ||
nonunq_col bigint, | ||
id bigint, | ||
keyspace_id varbinary(20), | ||
primary key (nonunq_col, id) | ||
) Engine = InnoDB; | ||
|
||
create table tbl | ||
( | ||
id bigint, | ||
unq_col bigint, | ||
nonunq_col bigint not null, | ||
primary key (id), | ||
unique (unq_col) | ||
) Engine = InnoDB; | ||
|
||
create table tbl_enum_set | ||
( | ||
id bigint, | ||
enum_col enum('xsmall', 'small', 'medium', 'large', 'xlarge'), | ||
set_col set('a', 'b', 'c', 'd', 'e', 'f', 'g'), | ||
primary key (id) | ||
) Engine = InnoDB; | ||
>>>>>>> 5a6f3868c5 (Handle Nullability for Columns from Outer Tables (#16174)) |
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.