We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ff064 commit feced68Copy full SHA for feced68
crates/pgt_treesitter_grammar/grammar.js
@@ -2658,7 +2658,7 @@ module.exports = grammar({
2658
seq(
2659
$.keyword_set,
2660
choice($.keyword_null, $.keyword_default),
2661
- optional(paren_list($.mentioned_column_identifier, true))
+ optional(paren_list($.any_identifier, true))
2662
)
2663
2664
@@ -3508,7 +3508,6 @@ module.exports = grammar({
3508
3509
any_identifier: ($) => $._any_identifier,
3510
column_identifier: ($) => $._any_identifier,
3511
- mentioned_column_identifier: ($) => $._any_identifier,
3512
3513
_any_identifier: ($) =>
3514
choice(
0 commit comments