isReservedKeyword returns true if the keyword is reserved, or needs one extra token of lookahead.
(s string)
| 62 | // isReservedKeyword returns true if the keyword is reserved, or needs |
| 63 | // one extra token of lookahead. |
| 64 | func isReservedKeyword(s string) bool { |
| 65 | _, ok := reservedOrLookaheadKeywords[s] |
| 66 | return ok |
| 67 | } |
| 68 | |
| 69 | // isBareIdentifier returns true if the input string is a permissible bare SQL |
| 70 | // identifier. |
no outgoing calls
no test coverage detected
searching dependent graphs…