Allow specific keywords to be parsed as identifiers (fix issue with RENAME COLUMN) #2203
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces a new parser rule
KeywordOrIdentifier()
to handle cases where certain keywords are used as identifiers. This addresses issues that arose after specific tokens likeNAME
were introduced as keywords.Problem
While parsing a statement like:
the parser failed because
name
was recognized strictly as a<K_NAME>
keyword after this commit, instead of being allowed as an identifier.Solution
KeywordOrIdentifier()
rule that accepts:<S_IDENTIFIER>
<S_QUOTED_IDENTIFIER>
<K_NAME>
,<K_NEXT>
,<K_VALUE>
,<K_PUBLIC>
,<K_STRING>
KeywordOrIdentifier()
.I’m open to any feedback or suggestions on this approach!