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 @@ -690,6 +690,9 @@ var (
input: "with recursive cte1 as (select a from b) insert into c select * from cte1",
}, {
input: "select /* s.t */ 1 from s.t",
}, {
input: "select /* s.keyword */ 1 from s.account",
output: "select /* s.keyword */ 1 from s.`account`",
}, {
input: "select /* keyword schema & table name */ 1 from `By`.`bY`",
}, {
Expand Down
Loading