Skip to content

Commit

Permalink
fix(grammar): Skip XMLTABLE_OPTIONS node because all components are o…
Browse files Browse the repository at this point in the history
…ptional
  • Loading branch information
felipebz committed May 26, 2024
1 parent 319beef commit b4d5a5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ enum class SingleRowSqlFunctionsGrammar : GrammarRuleKey {
b.rule(XMLTABLE_OPTIONS).define(
b.optional(XML_PASSING_CLAUSE),
b.optional(RETURNING, SEQUENCE, BY, REF),
b.optional(COLUMNS, XML_TABLE_COLUMN, b.zeroOrMore(COMMA, XML_TABLE_COLUMN)))
b.optional(COLUMNS, XML_TABLE_COLUMN, b.zeroOrMore(COMMA, XML_TABLE_COLUMN))).skip()

b.rule(XMLTABLE_EXPRESSION).define(
XMLTABLE, LPARENTHESIS,
Expand Down

0 comments on commit b4d5a5e

Please sign in to comment.