You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use token.SEMICOLON constant instead of string comparison
The parser was comparing token.Type (which is token.Type alias for string)
with string literals "SEMICOLON" and checking non-existent Literal field.
Fixed to use proper token.SEMICOLON constant for both Parse() and ParseContext().
This resolves the validation errors on SQL files with trailing semicolons.
0 commit comments