Helper function to check if a word can start a compound keyword
(word string)
| 859 | |
| 860 | // Helper function to check if a word can start a compound keyword |
| 861 | func isCompoundKeywordStart(word string) bool { |
| 862 | return compoundKeywordStarts[word] |
| 863 | } |
| 864 | |
| 865 | // readQuotedIdentifier reads something like "MyColumn" with support for Unicode quotes |
| 866 | func (t *Tokenizer) readQuotedIdentifier() (models.Token, error) { |