Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,9 @@ var (
input: "delete a from a join b on a.id = b.id where b.name = 'test'",
}, {
input: "delete a, b from a, b where a.id = b.id and b.name = 'test'",
}, {
input: "delete from a1, a2 using t1 as a1 inner join t2 as a2 where a1.id=a2.id",
output: "delete a1, a2 from t1 as a1 join t2 as a2 where a1.id = a2.id",
}, {
input: "set /* simple */ a = 3",
}, {
Expand Down
Loading