Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move BOOLEAN in aql lexer grammar #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

MattijsK
Copy link

@MattijsK MattijsK commented Mar 4, 2024

Moved up the definition of BOOLEAN in the aql lexer grammar because of a bug.

Currently, the order of the grammar makes it that boolean values could be identified as identifiedPath instead of a primitive type boolean.

For example, the following query:
SELECT FALSE FROM EHR;
Would result in the following tree
image

This fix makes it so that the boolean is considered first and identified correctly, which results in this tree:
image

@MattijsK MattijsK added the bug label Mar 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant