isIdentLikeToken returns true for token types that represent identifiers or unreserved keywords that a user might be partially typing.
(tokenType int)
| 263 | // isIdentLikeToken returns true for token types that represent identifiers or |
| 264 | // unreserved keywords that a user might be partially typing. |
| 265 | func isIdentLikeToken(tokenType int) bool { |
| 266 | return pgparser.IsIdentifierTokenType(tokenType) |
| 267 | } |
| 268 | |
| 269 | type CompletionMap map[string]base.Candidate |
| 270 |