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 @@ -2168,6 +2168,9 @@ func TestKeywords(t *testing.T) {
}, {
input: "select Variables from t",
output: "select `Variables` from t",
}, {
input: "select current_user, current_user() from dual",
output: "select current_user(), current_user() from dual",
}}

for _, tcase := range validSQL {
Expand Down
Loading