Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed May 14, 2024
1 parent 2905a16 commit 05f258a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1231,6 +1231,14 @@ var (
input: "insert into xy values row (1, 1), row (2, 2)",
output: "insert into xy values (1, 1), (2, 2)",
},
{
input: "insert into xy values (1, 1), row (2, 2)",
output: "insert into xy values (1, 1), (2, 2)",
},
{
input: "insert into xy values row (1, 1), (2, 2)",
output: "insert into xy values (1, 1), (2, 2)",
},
{
input: "insert into xy ((( values row (1, 1), row (2, 2) )))",
output: "insert into xy values (1, 1), (2, 2)",
Expand Down

0 comments on commit 05f258a

Please sign in to comment.