-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disallow reserved words for identifiers (#5)
Table and column names may not use reserved words. This does not included SQL standard defined non-reserve words. Some of these words are also parser keywords so they will return a different error, that's OK, just as long as the name itself can not be used.
- Loading branch information
1 parent
d063bdd
commit 3d1c610
Showing
8 changed files
with
1,181 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
TABLE | ||
-- error: vsql.SQLState42601: syntax error at "TABLE" | ||
-- error: vsql.SQLState42601: syntax error: at "TABLE" |
Oops, something went wrong.