Skip to content

Commit

Permalink
Merge pull request #8189 from GuptaManan100/signed-int-parse
Browse files Browse the repository at this point in the history
Signed int parse
  • Loading branch information
systay authored May 27, 2021
2 parents 3e9ab07 + b7a7a83 commit 8aaeed1
Show file tree
Hide file tree
Showing 3 changed files with 3,531 additions and 3,449 deletions.
5 changes: 5 additions & 0 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,11 @@ var (
input: "alter table a add constraint b primary key (id)",
}, {
input: "alter table a add constraint b unique key (id)",
}, {
input: "alter table t add column iii int signed not null",
output: "alter table t add column iii int not null",
}, {
input: "alter table t add column iii int unsigned not null",
}, {
input: "alter table a add constraint b unique c (id)",
output: "alter table a add constraint b unique key c (id)",
Expand Down
Loading

0 comments on commit 8aaeed1

Please sign in to comment.