Skip to content

Commit

Permalink
fix(grammar): Use BOOLEAN_LITERAL in BOOLEAN_TEST_CONDITION
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Sep 30, 2024
1 parent d57c42a commit 0985521
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ enum class ConditionsGrammar : GrammarRuleKey {
).skip()

b.rule(BOOLEAN_TEST_CONDITION).define(
CONCATENATION_EXPRESSION, IS, b.optional(NOT), b.firstOf(NULL_LITERAL, TRUE, FALSE)
CONCATENATION_EXPRESSION, IS, b.optional(NOT), b.firstOf(NULL_LITERAL, PlSqlGrammar.BOOLEAN_LITERAL)
)

b.rule(LIKE_CONDITION).define(
Expand Down

0 comments on commit 0985521

Please sign in to comment.