From b121cd1fc14502653031a40a59e8e3f3e4b4c073 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 6 Jan 2023 01:10:59 +0300 Subject: [PATCH] wip --- grammar.js | 113 +- src/grammar.json | 1074 +- src/parser.c | 115507 +++++++++++------------ test/corpus/alter_table_statement.txt | 8 +- 4 files changed, 53255 insertions(+), 63447 deletions(-) diff --git a/grammar.js b/grammar.js index df9da51..13921be 100644 --- a/grammar.js +++ b/grammar.js @@ -27,6 +27,14 @@ module.exports = grammar({ // NOTE(chrde): https://github.com/tree-sitter/tree-sitter-javascript/blob/1ddbf1588c353edab37791cdcc9f17e56fb4ea73/grammar.js#L9 extras: ($) => [$.comment, /[\s\uFEFF\u2060\u200B\u00A0]/], + conflicts: ($) => [ + [$.op_expression], + [$.select_statement], + [$.from_item], + [$.select_group_by, $._value_expression], + [$.time_expression, $.op_expression], + ], + rules: { source_file: ($) => repeat(choice($.psql_statement, seq($._statement, ";"))), @@ -664,20 +672,18 @@ module.exports = grammar({ do_block: ($) => seq(kw("do"), $.block), select_statement: ($) => - prec.left( - seq( - optional($.with_query), - kw("select"), - commaSep($.select_item), - optional($.into), - optional($.select_from), - optional($.select_where), - optional($.select_group_by), - optional($.select_having), - optional($.select_order_by), - optional($._select_limit_offset), - optional($.into) - ) + seq( + optional($.with_query), + kw("select"), + commaSep($.select_item), + optional($.into), + optional($.select_from), + optional($.select_where), + optional($.select_group_by), + optional($.select_having), + optional($.select_order_by), + optional($._select_limit_offset), + optional($.into) ), with_query: ($) => seq(kw("with"), commaSep1($.with_query_item)), @@ -718,15 +724,12 @@ module.exports = grammar({ // TODO(chrde): rollup, cube, grouping sets select_group_by: ($) => - prec( - 1, - seq( - kw("group"), - kw("by"), - choice( - seq("(", commaSep1($._value_expression), ")"), - commaSep1($._value_expression) - ) + seq( + kw("group"), + kw("by"), + choice( + seq("(", commaSep1($._value_expression), ")"), + commaSep1($._value_expression) ) ), @@ -746,12 +749,10 @@ module.exports = grammar({ select_from: ($) => seq(kw("from"), commaSep1($.from_item)), from_item: ($) => - prec.left( - seq( - // TODO(chrde): https://www.postgresql.org/docs/current/sql-select.html - choice($.from_select, $.from_table, $.from_function), - repeat($.join_item) - ) + seq( + // TODO(chrde): https://www.postgresql.org/docs/current/sql-select.html + choice($.from_select, $.from_table, $.from_function), + repeat($.join_item) ), from_select: ($) => @@ -773,12 +774,10 @@ module.exports = grammar({ ), join_item: ($) => - prec.left( - choice( - seq(kw("natural"), $.join_type, $.from_item), - seq($.join_type, $.from_item, $.join_condition), - seq(kw("cross"), kw("join"), $.from_item) - ) + choice( + seq(kw("natural"), $.join_type, $.from_item), + seq($.join_type, $.from_item, $.join_condition), + seq(kw("cross"), kw("join"), $.from_item) ), join_condition: ($) => @@ -913,8 +912,7 @@ module.exports = grammar({ type_length: ($) => seq("(", $.number, ")"), - string: ($) => - seq("'", repeat(choice(prec(1, /''/), prec(2, /[^']/))), "'"), + string: ($) => seq("'", repeat(choice(/''/, /[^']/)), "'"), // NOTE(chrde): taken from https://github.com/tree-sitter/tree-sitter-javascript/blob/1ddbf1588c353edab37791cdcc9f17e56fb4ea73/grammar.js#L899 comment: ($) => @@ -1003,37 +1001,20 @@ module.exports = grammar({ op_expression: ($) => choice( - prec.left(12, seq($._value_expression, $.cast, $._type)), + seq($._value_expression, $.cast, $._type), // array access - prec.right(10, seq(choice($.minus, $.plus), $._value_expression)), + seq(choice($.minus, $.plus), $._value_expression), // ^ - prec.left( - 8, - seq($._value_expression, choice("*", "/", "%"), $._value_expression) - ), - prec.left( - 7, - seq($._value_expression, choice("-", "+"), $._value_expression) - ), - prec.left(6, seq($._value_expression, $.other_op, $._value_expression)), - prec.left( - 5, - seq($._value_expression, $.contains_op, $._value_expression) - ), - prec.left( - 4, - seq($._value_expression, $.comparison_op, $._value_expression) - ), - prec.left( - 3, - seq($._value_expression, $.comparison_kw, $._value_expression) - ), - prec.left(3, seq($._value_expression, $.comparison_null)), - prec.right(2, seq($.not, $._value_expression)), - prec.left( - 1, - seq($._value_expression, choice($.and, $.or), $._value_expression) - ) + seq($._value_expression, choice("*", "/", "%"), $._value_expression), + seq($._value_expression, choice("-", "+"), $._value_expression), + seq($._value_expression, $.other_op, $._value_expression), + seq($._value_expression, $.contains_op, $._value_expression), + seq($._value_expression, $.comparison_op, $._value_expression), + seq($._value_expression, $.comparison_kw, $._value_expression), + seq($._value_expression, $.comparison_null), + seq($.not, $._value_expression), + + seq($._value_expression, choice($.and, $.or), $._value_expression) ), _list_of_identifiers: ($) => seq("(", commaSep($.identifier), ")"), diff --git a/src/grammar.json b/src/grammar.json index 20224a9..897ce5e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4294,158 +4294,154 @@ ] }, "select_statement": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "with_query" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[sS][eE][lL][eE][cC][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "select_item" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "with_query" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[sS][eE][lL][eE][cC][tT]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "select_item" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "select_item" + } + ] } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "into" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_from" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_where" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_group_by" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_having" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_order_by" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_select_limit_offset" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "into" - }, - { - "type": "BLANK" - } - ] - } - ] - } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "into" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_from" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_where" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_group_by" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_having" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_order_by" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_select_limit_offset" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "into" + }, + { + "type": "BLANK" + } + ] + } + ] }, "with_query": { "type": "SEQ", @@ -4711,89 +4707,85 @@ ] }, "select_group_by": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[gG][rR][oO][uU][pP]" - }, - { - "type": "PATTERN", - "value": "[bB][yY]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[gG][rR][oO][uU][pP]" + }, + { + "type": "PATTERN", + "value": "[bB][yY]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_value_expression" + "type": "STRING", + "value": "," }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SYMBOL", + "name": "_value_expression" } ] - }, - { - "type": "STRING", - "value": ")" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - } - ] - } - ] - } + } + ] + } + ] + } + ] }, "select_order_by": { "type": "SEQ", @@ -4939,37 +4931,33 @@ ] }, "from_item": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "from_select" - }, - { - "type": "SYMBOL", - "name": "from_table" - }, - { - "type": "SYMBOL", - "name": "from_function" - } - ] - }, - { - "type": "REPEAT", - "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "join_item" + "name": "from_select" + }, + { + "type": "SYMBOL", + "name": "from_table" + }, + { + "type": "SYMBOL", + "name": "from_function" } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "join_item" } - ] - } + } + ] }, "from_select": { "type": "SEQ", @@ -5119,64 +5107,60 @@ ] }, "join_item": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][aA][tT][uU][rR][aA][lL]" - }, - { - "type": "SYMBOL", - "name": "join_type" - }, - { - "type": "SYMBOL", - "name": "from_item" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "join_type" - }, - { - "type": "SYMBOL", - "name": "from_item" - }, - { - "type": "SYMBOL", - "name": "join_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][oO][sS][sS]" - }, - { - "type": "PATTERN", - "value": "[jJ][oO][iI][nN]" - }, - { - "type": "SYMBOL", - "name": "from_item" - } - ] - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[nN][aA][tT][uU][rR][aA][lL]" + }, + { + "type": "SYMBOL", + "name": "join_type" + }, + { + "type": "SYMBOL", + "name": "from_item" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "join_type" + }, + { + "type": "SYMBOL", + "name": "from_item" + }, + { + "type": "SYMBOL", + "name": "join_condition" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[cC][rR][oO][sS][sS]" + }, + { + "type": "PATTERN", + "value": "[jJ][oO][iI][nN]" + }, + { + "type": "SYMBOL", + "name": "from_item" + } + ] + } + ] }, "join_condition": { "type": "CHOICE", @@ -6001,20 +5985,12 @@ "type": "CHOICE", "members": [ { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "''" - } + "type": "PATTERN", + "value": "''" }, { - "type": "PREC", - "value": 2, - "content": { - "type": "PATTERN", - "value": "[^']" - } + "type": "PATTERN", + "value": "[^']" } ] } @@ -6537,263 +6513,219 @@ "type": "CHOICE", "members": [ { - "type": "PREC_LEFT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "cast" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "cast" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] }, { - "type": "PREC_RIGHT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "minus" - }, - { - "type": "SYMBOL", - "name": "plus" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "minus" + }, + { + "type": "SYMBOL", + "name": "plus" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "%" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "%" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "other_op" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "other_op" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "contains_op" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "contains_op" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "comparison_op" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "comparison_op" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "comparison_kw" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "comparison_kw" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "SYMBOL", - "name": "comparison_null" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "SYMBOL", + "name": "comparison_null" + } + ] }, { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "not" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "not" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] }, { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "and" - }, - { - "type": "SYMBOL", - "name": "or" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "and" + }, + { + "type": "SYMBOL", + "name": "or" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] } ] }, @@ -7047,7 +6979,25 @@ "value": "[\\s\\uFEFF\\u2060\\u200B\\u00A0]" } ], - "conflicts": [], + "conflicts": [ + [ + "op_expression" + ], + [ + "select_statement" + ], + [ + "from_item" + ], + [ + "select_group_by", + "_value_expression" + ], + [ + "time_expression", + "op_expression" + ] + ], "precedences": [], "externals": [], "inline": [], diff --git a/src/parser.c b/src/parser.c index 567c2c7..868f4fd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,7 +14,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2428 +#define STATE_COUNT 2274 #define LARGE_STATE_COUNT 5 #define SYMBOL_COUNT 389 #define ALIAS_COUNT 1 @@ -2825,1270 +2825,1270 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 5, - [8] = 8, + [7] = 7, + [8] = 7, [9] = 9, - [10] = 10, + [10] = 4, [11] = 11, [12] = 12, [13] = 13, - [14] = 14, - [15] = 9, + [14] = 11, + [15] = 13, [16] = 16, - [17] = 17, - [18] = 4, + [17] = 3, + [18] = 9, [19] = 19, - [20] = 12, - [21] = 11, + [20] = 20, + [21] = 6, [22] = 22, [23] = 23, - [24] = 10, + [24] = 5, [25] = 25, - [26] = 22, + [26] = 26, [27] = 16, - [28] = 3, - [29] = 23, - [30] = 14, - [31] = 25, - [32] = 13, - [33] = 33, + [28] = 2, + [29] = 2, + [30] = 2, + [31] = 31, + [32] = 2, + [33] = 23, [34] = 34, - [35] = 8, - [36] = 6, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 19, - [41] = 41, - [42] = 38, - [43] = 2, - [44] = 2, - [45] = 2, - [46] = 2, - [47] = 47, - [48] = 33, - [49] = 2, + [35] = 22, + [36] = 19, + [37] = 20, + [38] = 34, + [39] = 2, + [40] = 7, + [41] = 25, + [42] = 7, + [43] = 26, + [44] = 44, + [45] = 45, + [46] = 11, + [47] = 3, + [48] = 9, + [49] = 49, [50] = 50, - [51] = 34, - [52] = 37, - [53] = 47, - [54] = 54, - [55] = 39, - [56] = 41, - [57] = 5, - [58] = 58, - [59] = 5, - [60] = 50, - [61] = 61, - [62] = 4, - [63] = 3, - [64] = 13, - [65] = 14, - [66] = 66, - [67] = 4, + [51] = 51, + [52] = 52, + [53] = 4, + [54] = 13, + [55] = 55, + [56] = 49, + [57] = 50, + [58] = 51, + [59] = 52, + [60] = 3, + [61] = 7, + [62] = 11, + [63] = 31, + [64] = 9, + [65] = 4, + [66] = 13, + [67] = 11, [68] = 68, [69] = 69, [70] = 70, - [71] = 9, - [72] = 16, + [71] = 70, + [72] = 44, [73] = 3, - [74] = 5, - [75] = 25, - [76] = 10, - [77] = 23, - [78] = 12, - [79] = 22, - [80] = 11, - [81] = 22, - [82] = 11, - [83] = 12, - [84] = 23, - [85] = 13, - [86] = 14, - [87] = 10, - [88] = 9, - [89] = 16, - [90] = 25, - [91] = 70, - [92] = 61, - [93] = 69, - [94] = 68, - [95] = 3, - [96] = 13, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 13, + [79] = 45, + [80] = 76, + [81] = 9, + [82] = 82, + [83] = 83, + [84] = 77, + [85] = 85, + [86] = 4, + [87] = 7, + [88] = 88, + [89] = 6, + [90] = 5, + [91] = 91, + [92] = 92, + [93] = 6, + [94] = 5, + [95] = 68, + [96] = 96, [97] = 97, - [98] = 98, - [99] = 25, - [100] = 100, - [101] = 101, - [102] = 102, + [98] = 97, + [99] = 99, + [100] = 96, + [101] = 12, + [102] = 92, [103] = 103, - [104] = 104, - [105] = 105, + [104] = 99, + [105] = 82, [106] = 106, - [107] = 107, - [108] = 4, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 6, - [114] = 114, - [115] = 114, - [116] = 116, - [117] = 98, - [118] = 107, - [119] = 54, - [120] = 17, - [121] = 8, - [122] = 105, + [107] = 83, + [108] = 88, + [109] = 106, + [110] = 7, + [111] = 75, + [112] = 74, + [113] = 103, + [114] = 91, + [115] = 4, + [116] = 13, + [117] = 13, + [118] = 9, + [119] = 3, + [120] = 5, + [121] = 4, + [122] = 6, [123] = 16, - [124] = 5, - [125] = 104, - [126] = 9, - [127] = 127, - [128] = 14, - [129] = 127, - [130] = 58, + [124] = 3, + [125] = 16, + [126] = 11, + [127] = 45, + [128] = 6, + [129] = 12, + [130] = 11, [131] = 5, - [132] = 103, - [133] = 102, - [134] = 111, - [135] = 110, - [136] = 116, - [137] = 109, - [138] = 106, - [139] = 101, - [140] = 112, - [141] = 100, - [142] = 12, - [143] = 6, + [132] = 9, + [133] = 7, + [134] = 7, + [135] = 20, + [136] = 16, + [137] = 2, + [138] = 9, + [139] = 3, + [140] = 23, + [141] = 2, + [142] = 22, + [143] = 13, [144] = 144, - [145] = 8, - [146] = 11, - [147] = 10, - [148] = 22, - [149] = 23, - [150] = 14, - [151] = 17, - [152] = 22, - [153] = 12, - [154] = 23, - [155] = 12, - [156] = 4, - [157] = 25, - [158] = 13, - [159] = 3, - [160] = 23, - [161] = 19, - [162] = 58, - [163] = 8, - [164] = 6, - [165] = 8, - [166] = 5, - [167] = 4, - [168] = 3, - [169] = 10, - [170] = 5, - [171] = 11, - [172] = 9, - [173] = 22, - [174] = 16, - [175] = 11, - [176] = 10, - [177] = 16, - [178] = 9, - [179] = 14, - [180] = 25, - [181] = 13, - [182] = 19, - [183] = 6, - [184] = 25, - [185] = 4, - [186] = 34, - [187] = 2, - [188] = 25, - [189] = 189, - [190] = 14, - [191] = 38, - [192] = 9, - [193] = 193, - [194] = 16, - [195] = 37, - [196] = 47, - [197] = 2, - [198] = 13, + [145] = 19, + [146] = 13, + [147] = 4, + [148] = 2, + [149] = 11, + [150] = 34, + [151] = 3, + [152] = 20, + [153] = 4, + [154] = 154, + [155] = 11, + [156] = 19, + [157] = 22, + [158] = 23, + [159] = 34, + [160] = 160, + [161] = 6, + [162] = 5, + [163] = 9, + [164] = 16, + [165] = 165, + [166] = 26, + [167] = 19, + [168] = 20, + [169] = 16, + [170] = 170, + [171] = 85, + [172] = 5, + [173] = 173, + [174] = 34, + [175] = 6, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 23, + [186] = 22, + [187] = 25, + [188] = 6, + [189] = 5, + [190] = 2, + [191] = 25, + [192] = 2, + [193] = 20, + [194] = 23, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 22, [199] = 19, - [200] = 33, - [201] = 9, - [202] = 2, - [203] = 16, - [204] = 12, - [205] = 11, - [206] = 8, - [207] = 14, - [208] = 22, - [209] = 23, - [210] = 10, - [211] = 3, + [200] = 26, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 20, + [207] = 49, + [208] = 208, + [209] = 34, + [210] = 2, + [211] = 31, [212] = 212, - [213] = 33, - [214] = 6, - [215] = 13, - [216] = 12, - [217] = 11, - [218] = 4, - [219] = 3, - [220] = 22, - [221] = 47, - [222] = 23, - [223] = 10, - [224] = 38, - [225] = 19, - [226] = 34, - [227] = 37, - [228] = 228, - [229] = 38, - [230] = 6, - [231] = 34, - [232] = 39, - [233] = 37, - [234] = 37, - [235] = 2, - [236] = 34, - [237] = 47, - [238] = 8, - [239] = 33, - [240] = 6, - [241] = 241, - [242] = 8, - [243] = 41, - [244] = 2, - [245] = 245, - [246] = 246, - [247] = 41, - [248] = 248, - [249] = 33, - [250] = 38, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 19, - [256] = 256, - [257] = 257, - [258] = 97, - [259] = 259, + [213] = 25, + [214] = 16, + [215] = 26, + [216] = 25, + [217] = 34, + [218] = 23, + [219] = 22, + [220] = 19, + [221] = 52, + [222] = 2, + [223] = 16, + [224] = 2, + [225] = 49, + [226] = 31, + [227] = 227, + [228] = 50, + [229] = 51, + [230] = 52, + [231] = 51, + [232] = 2, + [233] = 26, + [234] = 50, + [235] = 235, + [236] = 83, + [237] = 106, + [238] = 74, + [239] = 75, + [240] = 88, + [241] = 92, + [242] = 68, + [243] = 97, + [244] = 96, + [245] = 99, + [246] = 49, + [247] = 50, + [248] = 51, + [249] = 52, + [250] = 68, + [251] = 97, + [252] = 82, + [253] = 75, + [254] = 91, + [255] = 255, + [256] = 106, + [257] = 25, + [258] = 26, + [259] = 44, [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 39, - [269] = 2, - [270] = 270, - [271] = 68, - [272] = 69, - [273] = 61, - [274] = 274, - [275] = 47, - [276] = 70, - [277] = 39, - [278] = 39, - [279] = 41, - [280] = 2, - [281] = 50, - [282] = 47, - [283] = 38, - [284] = 34, - [285] = 37, - [286] = 19, - [287] = 2, - [288] = 50, - [289] = 33, - [290] = 70, - [291] = 61, - [292] = 69, - [293] = 68, - [294] = 19, + [261] = 96, + [262] = 20, + [263] = 91, + [264] = 88, + [265] = 83, + [266] = 82, + [267] = 31, + [268] = 23, + [269] = 22, + [270] = 77, + [271] = 31, + [272] = 34, + [273] = 19, + [274] = 20, + [275] = 34, + [276] = 23, + [277] = 44, + [278] = 278, + [279] = 92, + [280] = 77, + [281] = 103, + [282] = 282, + [283] = 76, + [284] = 22, + [285] = 19, + [286] = 99, + [287] = 3, + [288] = 2, + [289] = 2, + [290] = 4, + [291] = 70, + [292] = 70, + [293] = 2, + [294] = 103, [295] = 2, - [296] = 296, - [297] = 297, - [298] = 41, - [299] = 2, - [300] = 106, - [301] = 101, - [302] = 98, - [303] = 127, - [304] = 116, - [305] = 112, - [306] = 4, - [307] = 2, - [308] = 50, - [309] = 106, - [310] = 3, - [311] = 2, - [312] = 114, - [313] = 127, - [314] = 105, - [315] = 104, - [316] = 116, - [317] = 109, - [318] = 110, - [319] = 70, - [320] = 61, - [321] = 69, - [322] = 2, - [323] = 68, - [324] = 111, - [325] = 103, - [326] = 102, - [327] = 112, - [328] = 100, - [329] = 329, - [330] = 98, - [331] = 107, - [332] = 101, - [333] = 47, - [334] = 50, - [335] = 38, - [336] = 34, - [337] = 37, - [338] = 338, - [339] = 33, - [340] = 54, - [341] = 47, - [342] = 102, - [343] = 103, - [344] = 37, - [345] = 41, - [346] = 33, - [347] = 38, - [348] = 54, - [349] = 104, - [350] = 109, - [351] = 110, - [352] = 111, - [353] = 100, - [354] = 39, - [355] = 107, - [356] = 114, - [357] = 357, - [358] = 358, - [359] = 34, - [360] = 105, - [361] = 68, - [362] = 102, - [363] = 105, - [364] = 116, - [365] = 112, - [366] = 104, - [367] = 107, - [368] = 114, - [369] = 41, - [370] = 39, - [371] = 103, - [372] = 69, - [373] = 39, - [374] = 54, - [375] = 98, - [376] = 127, - [377] = 41, - [378] = 61, - [379] = 70, - [380] = 61, - [381] = 70, - [382] = 100, - [383] = 101, - [384] = 106, - [385] = 109, - [386] = 110, - [387] = 111, - [388] = 54, - [389] = 68, - [390] = 69, - [391] = 50, - [392] = 112, - [393] = 116, - [394] = 69, - [395] = 109, - [396] = 110, - [397] = 68, - [398] = 111, - [399] = 358, - [400] = 4, - [401] = 68, - [402] = 98, - [403] = 106, - [404] = 69, - [405] = 101, - [406] = 61, - [407] = 110, - [408] = 102, - [409] = 111, - [410] = 70, - [411] = 357, - [412] = 102, - [413] = 103, - [414] = 54, - [415] = 109, - [416] = 127, - [417] = 107, - [418] = 105, - [419] = 104, - [420] = 70, + [296] = 74, + [297] = 76, + [298] = 25, + [299] = 68, + [300] = 70, + [301] = 83, + [302] = 99, + [303] = 106, + [304] = 103, + [305] = 82, + [306] = 92, + [307] = 44, + [308] = 97, + [309] = 77, + [310] = 76, + [311] = 31, + [312] = 88, + [313] = 44, + [314] = 96, + [315] = 91, + [316] = 52, + [317] = 75, + [318] = 74, + [319] = 52, + [320] = 51, + [321] = 50, + [322] = 49, + [323] = 26, + [324] = 25, + [325] = 26, + [326] = 49, + [327] = 50, + [328] = 51, + [329] = 83, + [330] = 75, + [331] = 51, + [332] = 96, + [333] = 52, + [334] = 91, + [335] = 50, + [336] = 74, + [337] = 97, + [338] = 103, + [339] = 75, + [340] = 106, + [341] = 92, + [342] = 92, + [343] = 68, + [344] = 49, + [345] = 97, + [346] = 88, + [347] = 99, + [348] = 99, + [349] = 96, + [350] = 70, + [351] = 91, + [352] = 83, + [353] = 88, + [354] = 82, + [355] = 68, + [356] = 82, + [357] = 7, + [358] = 74, + [359] = 260, + [360] = 103, + [361] = 77, + [362] = 31, + [363] = 76, + [364] = 106, + [365] = 31, + [366] = 76, + [367] = 77, + [368] = 255, + [369] = 45, + [370] = 4, + [371] = 49, + [372] = 70, + [373] = 50, + [374] = 51, + [375] = 3, + [376] = 376, + [377] = 52, + [378] = 44, + [379] = 77, + [380] = 96, + [381] = 82, + [382] = 106, + [383] = 75, + [384] = 92, + [385] = 74, + [386] = 9, + [387] = 91, + [388] = 68, + [389] = 3, + [390] = 68, + [391] = 70, + [392] = 392, + [393] = 4, + [394] = 70, + [395] = 99, + [396] = 76, + [397] = 74, + [398] = 398, + [399] = 255, + [400] = 44, + [401] = 4, + [402] = 83, + [403] = 44, + [404] = 76, + [405] = 7, + [406] = 97, + [407] = 392, + [408] = 91, + [409] = 260, + [410] = 88, + [411] = 88, + [412] = 3, + [413] = 45, + [414] = 97, + [415] = 75, + [416] = 103, + [417] = 92, + [418] = 99, + [419] = 106, + [420] = 77, [421] = 103, - [422] = 106, - [423] = 5, - [424] = 50, - [425] = 98, - [426] = 61, - [427] = 104, - [428] = 105, - [429] = 107, - [430] = 430, - [431] = 112, - [432] = 100, - [433] = 114, - [434] = 101, - [435] = 58, - [436] = 116, - [437] = 114, - [438] = 100, - [439] = 3, - [440] = 127, - [441] = 50, - [442] = 106, - [443] = 23, - [444] = 358, - [445] = 105, - [446] = 4, - [447] = 111, - [448] = 3, - [449] = 449, - [450] = 450, - [451] = 114, - [452] = 114, - [453] = 116, - [454] = 58, - [455] = 13, - [456] = 110, - [457] = 127, - [458] = 25, - [459] = 103, - [460] = 102, - [461] = 54, - [462] = 112, - [463] = 98, - [464] = 107, - [465] = 109, - [466] = 106, - [467] = 105, - [468] = 104, - [469] = 104, - [470] = 12, - [471] = 100, - [472] = 5, - [473] = 14, - [474] = 109, - [475] = 3, - [476] = 110, - [477] = 16, - [478] = 101, - [479] = 103, - [480] = 102, - [481] = 107, - [482] = 98, - [483] = 10, - [484] = 111, - [485] = 4, - [486] = 100, - [487] = 54, - [488] = 357, - [489] = 22, - [490] = 11, - [491] = 112, - [492] = 116, - [493] = 127, - [494] = 450, - [495] = 101, - [496] = 9, - [497] = 9, - [498] = 260, - [499] = 11, - [500] = 23, - [501] = 22, - [502] = 10, - [503] = 3, - [504] = 25, + [422] = 13, + [423] = 83, + [424] = 11, + [425] = 96, + [426] = 82, + [427] = 3, + [428] = 197, + [429] = 4, + [430] = 13, + [431] = 431, + [432] = 432, + [433] = 11, + [434] = 9, + [435] = 6, + [436] = 5, + [437] = 177, + [438] = 5, + [439] = 6, + [440] = 440, + [441] = 16, + [442] = 442, + [443] = 443, + [444] = 442, + [445] = 445, + [446] = 443, + [447] = 447, + [448] = 443, + [449] = 442, + [450] = 447, + [451] = 447, + [452] = 442, + [453] = 34, + [454] = 442, + [455] = 455, + [456] = 23, + [457] = 177, + [458] = 443, + [459] = 442, + [460] = 443, + [461] = 2, + [462] = 22, + [463] = 443, + [464] = 464, + [465] = 447, + [466] = 19, + [467] = 443, + [468] = 443, + [469] = 442, + [470] = 447, + [471] = 471, + [472] = 442, + [473] = 2, + [474] = 442, + [475] = 447, + [476] = 20, + [477] = 442, + [478] = 443, + [479] = 443, + [480] = 443, + [481] = 447, + [482] = 443, + [483] = 447, + [484] = 447, + [485] = 16, + [486] = 443, + [487] = 447, + [488] = 447, + [489] = 443, + [490] = 442, + [491] = 443, + [492] = 443, + [493] = 443, + [494] = 20, + [495] = 495, + [496] = 22, + [497] = 497, + [498] = 2, + [499] = 25, + [500] = 26, + [501] = 34, + [502] = 502, + [503] = 19, + [504] = 504, [505] = 505, - [506] = 4, - [507] = 16, - [508] = 14, - [509] = 13, + [506] = 506, + [507] = 23, + [508] = 2, + [509] = 509, [510] = 510, - [511] = 6, - [512] = 12, - [513] = 8, - [514] = 19, - [515] = 6, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, [516] = 516, - [517] = 254, - [518] = 8, - [519] = 519, + [517] = 517, + [518] = 518, + [519] = 52, [520] = 520, - [521] = 520, - [522] = 37, + [521] = 26, + [522] = 25, [523] = 523, - [524] = 524, - [525] = 520, - [526] = 519, - [527] = 519, + [524] = 31, + [525] = 51, + [526] = 526, + [527] = 49, [528] = 528, - [529] = 519, - [530] = 519, - [531] = 519, - [532] = 528, - [533] = 520, - [534] = 534, - [535] = 520, - [536] = 519, - [537] = 528, - [538] = 33, - [539] = 520, - [540] = 520, - [541] = 519, - [542] = 519, - [543] = 520, - [544] = 519, - [545] = 519, - [546] = 528, - [547] = 519, - [548] = 520, - [549] = 549, - [550] = 520, - [551] = 47, - [552] = 519, - [553] = 519, - [554] = 528, - [555] = 34, - [556] = 2, - [557] = 19, - [558] = 519, - [559] = 254, - [560] = 528, - [561] = 519, - [562] = 38, - [563] = 528, - [564] = 520, - [565] = 528, - [566] = 519, - [567] = 528, - [568] = 2, - [569] = 528, - [570] = 528, - [571] = 39, - [572] = 34, - [573] = 37, - [574] = 2, - [575] = 575, - [576] = 576, - [577] = 41, - [578] = 2, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 50, + [534] = 83, + [535] = 106, + [536] = 99, + [537] = 70, + [538] = 103, + [539] = 74, + [540] = 52, + [541] = 31, + [542] = 51, + [543] = 75, + [544] = 50, + [545] = 49, + [546] = 76, + [547] = 3, + [548] = 4, + [549] = 88, + [550] = 96, + [551] = 77, + [552] = 92, + [553] = 44, + [554] = 97, + [555] = 82, + [556] = 68, + [557] = 91, + [558] = 92, + [559] = 96, + [560] = 3, + [561] = 70, + [562] = 88, + [563] = 76, + [564] = 44, + [565] = 91, + [566] = 103, + [567] = 77, + [568] = 74, + [569] = 68, + [570] = 4, + [571] = 82, + [572] = 83, + [573] = 106, + [574] = 97, + [575] = 99, + [576] = 75, + [577] = 577, + [578] = 578, [579] = 579, [580] = 580, - [581] = 33, + [581] = 581, [582] = 582, - [583] = 38, - [584] = 47, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 41, - [592] = 592, + [583] = 583, + [584] = 582, + [585] = 582, + [586] = 582, + [587] = 582, + [588] = 582, + [589] = 582, + [590] = 582, + [591] = 582, + [592] = 582, [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 50, - [598] = 598, - [599] = 599, - [600] = 600, + [594] = 582, + [595] = 582, + [596] = 582, + [597] = 582, + [598] = 582, + [599] = 582, + [600] = 582, [601] = 601, - [602] = 70, - [603] = 603, - [604] = 61, - [605] = 605, - [606] = 39, - [607] = 607, - [608] = 68, - [609] = 69, - [610] = 610, - [611] = 68, - [612] = 101, - [613] = 70, - [614] = 3, - [615] = 127, - [616] = 102, - [617] = 98, - [618] = 103, - [619] = 50, - [620] = 54, - [621] = 116, - [622] = 4, - [623] = 61, - [624] = 69, - [625] = 106, - [626] = 110, - [627] = 100, - [628] = 114, - [629] = 109, - [630] = 107, - [631] = 111, - [632] = 112, - [633] = 104, - [634] = 105, - [635] = 100, - [636] = 127, - [637] = 101, - [638] = 104, - [639] = 107, - [640] = 110, - [641] = 98, - [642] = 106, - [643] = 105, - [644] = 102, - [645] = 116, - [646] = 109, - [647] = 114, - [648] = 103, - [649] = 4, - [650] = 3, - [651] = 54, - [652] = 112, - [653] = 111, - [654] = 654, + [602] = 601, + [603] = 601, + [604] = 601, + [605] = 601, + [606] = 601, + [607] = 601, + [608] = 601, + [609] = 601, + [610] = 601, + [611] = 601, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 618, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 621, + [628] = 626, + [629] = 621, + [630] = 630, + [631] = 631, + [632] = 623, + [633] = 626, + [634] = 634, + [635] = 621, + [636] = 626, + [637] = 637, + [638] = 638, + [639] = 626, + [640] = 626, + [641] = 641, + [642] = 626, + [643] = 626, + [644] = 626, + [645] = 645, + [646] = 646, + [647] = 621, + [648] = 626, + [649] = 649, + [650] = 626, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 652, [655] = 655, [656] = 656, - [657] = 657, + [657] = 655, [658] = 658, [659] = 659, - [660] = 659, - [661] = 659, - [662] = 659, - [663] = 659, - [664] = 659, - [665] = 659, - [666] = 659, - [667] = 659, - [668] = 668, - [669] = 659, - [670] = 659, - [671] = 659, - [672] = 659, - [673] = 659, - [674] = 659, - [675] = 659, - [676] = 659, - [677] = 677, - [678] = 678, - [679] = 678, - [680] = 680, - [681] = 678, - [682] = 678, - [683] = 678, - [684] = 678, - [685] = 678, - [686] = 678, - [687] = 678, - [688] = 678, - [689] = 678, - [690] = 690, - [691] = 691, + [660] = 652, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 655, + [665] = 655, + [666] = 656, + [667] = 652, + [668] = 655, + [669] = 656, + [670] = 661, + [671] = 652, + [672] = 672, + [673] = 652, + [674] = 674, + [675] = 675, + [676] = 655, + [677] = 662, + [678] = 655, + [679] = 679, + [680] = 656, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 663, + [687] = 656, + [688] = 652, + [689] = 652, + [690] = 656, + [691] = 662, [692] = 692, - [693] = 693, - [694] = 691, - [695] = 695, + [693] = 661, + [694] = 656, + [695] = 656, [696] = 696, - [697] = 697, - [698] = 698, + [697] = 652, + [698] = 652, [699] = 699, [700] = 700, - [701] = 700, + [701] = 701, [702] = 702, [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, - [708] = 700, - [709] = 700, - [710] = 706, + [704] = 656, + [705] = 655, + [706] = 656, + [707] = 655, + [708] = 708, + [709] = 656, + [710] = 652, [711] = 711, [712] = 712, - [713] = 700, - [714] = 700, - [715] = 700, - [716] = 706, - [717] = 706, - [718] = 700, - [719] = 700, + [713] = 655, + [714] = 714, + [715] = 715, + [716] = 655, + [717] = 717, + [718] = 718, + [719] = 719, [720] = 720, [721] = 721, [722] = 722, - [723] = 722, - [724] = 700, - [725] = 700, - [726] = 706, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, [727] = 727, [728] = 728, [729] = 729, - [730] = 730, - [731] = 731, + [730] = 2, + [731] = 724, [732] = 732, [733] = 733, - [734] = 729, - [735] = 735, + [734] = 732, + [735] = 722, [736] = 736, - [737] = 729, + [737] = 721, [738] = 738, - [739] = 736, - [740] = 729, - [741] = 730, - [742] = 736, - [743] = 743, + [739] = 739, + [740] = 740, + [741] = 720, + [742] = 729, + [743] = 724, [744] = 744, - [745] = 732, - [746] = 746, - [747] = 733, + [745] = 106, + [746] = 720, + [747] = 747, [748] = 748, [749] = 749, - [750] = 733, - [751] = 749, - [752] = 736, - [753] = 753, - [754] = 748, - [755] = 730, - [756] = 756, - [757] = 746, - [758] = 758, + [750] = 721, + [751] = 751, + [752] = 723, + [753] = 103, + [754] = 754, + [755] = 755, + [756] = 99, + [757] = 757, + [758] = 722, [759] = 759, - [760] = 732, - [761] = 759, + [760] = 727, + [761] = 732, [762] = 762, - [763] = 733, - [764] = 764, - [765] = 759, - [766] = 762, + [763] = 763, + [764] = 728, + [765] = 733, + [766] = 739, [767] = 767, - [768] = 749, - [769] = 759, - [770] = 762, - [771] = 762, - [772] = 730, - [773] = 729, - [774] = 759, - [775] = 775, - [776] = 776, - [777] = 729, - [778] = 746, - [779] = 732, - [780] = 780, - [781] = 781, - [782] = 746, + [768] = 768, + [769] = 738, + [770] = 2, + [771] = 729, + [772] = 727, + [773] = 740, + [774] = 736, + [775] = 729, + [776] = 732, + [777] = 777, + [778] = 778, + [779] = 99, + [780] = 755, + [781] = 738, + [782] = 2, [783] = 783, - [784] = 729, - [785] = 735, - [786] = 748, - [787] = 762, - [788] = 759, - [789] = 756, + [784] = 732, + [785] = 106, + [786] = 733, + [787] = 729, + [788] = 788, + [789] = 789, [790] = 790, - [791] = 756, - [792] = 792, - [793] = 762, - [794] = 736, - [795] = 746, - [796] = 762, - [797] = 730, - [798] = 735, - [799] = 730, - [800] = 759, - [801] = 729, - [802] = 762, - [803] = 759, - [804] = 730, - [805] = 736, - [806] = 733, - [807] = 748, - [808] = 746, - [809] = 749, - [810] = 732, + [791] = 739, + [792] = 740, + [793] = 728, + [794] = 794, + [795] = 795, + [796] = 729, + [797] = 736, + [798] = 798, + [799] = 732, + [800] = 103, + [801] = 768, + [802] = 802, + [803] = 103, + [804] = 777, + [805] = 106, + [806] = 99, + [807] = 762, + [808] = 755, + [809] = 763, + [810] = 767, [811] = 811, - [812] = 759, - [813] = 733, - [814] = 729, - [815] = 748, - [816] = 746, - [817] = 730, - [818] = 736, - [819] = 736, - [820] = 732, + [812] = 727, + [813] = 813, + [814] = 767, + [815] = 777, + [816] = 762, + [817] = 763, + [818] = 818, + [819] = 819, + [820] = 820, [821] = 821, - [822] = 746, - [823] = 748, - [824] = 748, - [825] = 732, - [826] = 733, - [827] = 827, - [828] = 733, - [829] = 749, - [830] = 748, - [831] = 749, - [832] = 749, - [833] = 733, - [834] = 748, - [835] = 732, - [836] = 746, - [837] = 730, - [838] = 732, - [839] = 746, - [840] = 732, - [841] = 748, - [842] = 736, - [843] = 767, - [844] = 749, - [845] = 736, - [846] = 729, - [847] = 730, + [822] = 768, + [823] = 823, + [824] = 727, + [825] = 825, + [826] = 732, + [827] = 733, + [828] = 729, + [829] = 829, + [830] = 830, + [831] = 2, + [832] = 732, + [833] = 833, + [834] = 740, + [835] = 6, + [836] = 5, + [837] = 729, + [838] = 823, + [839] = 755, + [840] = 821, + [841] = 841, + [842] = 842, + [843] = 103, + [844] = 818, + [845] = 845, + [846] = 813, + [847] = 2, [848] = 848, - [849] = 749, - [850] = 733, - [851] = 851, + [849] = 819, + [850] = 850, + [851] = 740, [852] = 852, - [853] = 749, + [853] = 853, [854] = 854, - [855] = 759, - [856] = 762, - [857] = 729, - [858] = 858, + [855] = 855, + [856] = 729, + [857] = 732, + [858] = 729, [859] = 859, - [860] = 733, - [861] = 749, - [862] = 762, - [863] = 748, + [860] = 860, + [861] = 16, + [862] = 99, + [863] = 106, [864] = 864, - [865] = 762, - [866] = 759, - [867] = 732, - [868] = 868, + [865] = 865, + [866] = 866, + [867] = 811, + [868] = 733, [869] = 869, - [870] = 730, - [871] = 746, - [872] = 872, - [873] = 736, - [874] = 874, - [875] = 875, + [870] = 870, + [871] = 871, + [872] = 732, + [873] = 873, + [874] = 811, + [875] = 20, [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, + [877] = 821, + [878] = 2, + [879] = 99, [880] = 880, [881] = 881, [882] = 882, - [883] = 2, - [884] = 875, - [885] = 878, + [883] = 103, + [884] = 106, + [885] = 823, [886] = 886, - [887] = 887, - [888] = 888, - [889] = 877, - [890] = 887, - [891] = 874, - [892] = 892, - [893] = 892, + [887] = 819, + [888] = 818, + [889] = 889, + [890] = 813, + [891] = 891, + [892] = 22, + [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 878, - [898] = 127, - [899] = 899, - [900] = 900, - [901] = 875, - [902] = 116, - [903] = 903, + [897] = 19, + [898] = 23, + [899] = 755, + [900] = 25, + [901] = 901, + [902] = 902, + [903] = 871, [904] = 904, - [905] = 112, - [906] = 879, - [907] = 874, + [905] = 905, + [906] = 906, + [907] = 907, [908] = 908, - [909] = 877, - [910] = 910, - [911] = 911, - [912] = 876, + [909] = 869, + [910] = 860, + [911] = 26, + [912] = 727, [913] = 913, - [914] = 914, + [914] = 848, [915] = 915, - [916] = 916, - [917] = 895, - [918] = 892, - [919] = 887, - [920] = 894, - [921] = 892, - [922] = 887, - [923] = 882, + [916] = 870, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 864, + [922] = 842, + [923] = 923, [924] = 924, - [925] = 879, - [926] = 888, - [927] = 896, + [925] = 925, + [926] = 926, + [927] = 927, [928] = 928, - [929] = 886, - [930] = 930, - [931] = 2, - [932] = 882, - [933] = 933, - [934] = 892, - [935] = 896, - [936] = 936, + [929] = 929, + [930] = 855, + [931] = 860, + [932] = 932, + [933] = 732, + [934] = 2, + [935] = 935, + [936] = 733, [937] = 937, [938] = 938, - [939] = 939, - [940] = 892, + [939] = 848, + [940] = 940, [941] = 941, - [942] = 886, - [943] = 112, + [942] = 870, + [943] = 943, [944] = 944, - [945] = 945, - [946] = 908, - [947] = 116, - [948] = 887, - [949] = 127, - [950] = 894, - [951] = 895, - [952] = 2, - [953] = 887, - [954] = 888, - [955] = 915, - [956] = 930, - [957] = 916, - [958] = 908, - [959] = 116, - [960] = 928, - [961] = 127, - [962] = 962, - [963] = 112, - [964] = 924, - [965] = 915, + [945] = 729, + [946] = 946, + [947] = 31, + [948] = 948, + [949] = 949, + [950] = 869, + [951] = 871, + [952] = 740, + [953] = 953, + [954] = 876, + [955] = 955, + [956] = 864, + [957] = 957, + [958] = 842, + [959] = 855, + [960] = 960, + [961] = 961, + [962] = 729, + [963] = 732, + [964] = 99, + [965] = 928, [966] = 966, [967] = 967, [968] = 968, - [969] = 969, - [970] = 924, - [971] = 928, - [972] = 916, - [973] = 930, + [969] = 925, + [970] = 970, + [971] = 971, + [972] = 905, + [973] = 973, [974] = 974, - [975] = 975, - [976] = 879, + [975] = 915, + [976] = 44, [977] = 977, - [978] = 6, - [979] = 882, - [980] = 892, - [981] = 8, - [982] = 982, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 907, [983] = 983, [984] = 984, - [985] = 879, + [985] = 755, [986] = 986, - [987] = 892, - [988] = 887, - [989] = 887, - [990] = 2, - [991] = 895, + [987] = 926, + [988] = 919, + [989] = 989, + [990] = 904, + [991] = 876, [992] = 992, - [993] = 993, - [994] = 969, - [995] = 887, - [996] = 887, - [997] = 895, + [993] = 908, + [994] = 106, + [995] = 920, + [996] = 996, + [997] = 997, [998] = 998, - [999] = 975, + [999] = 902, [1000] = 1000, [1001] = 1001, [1002] = 1002, [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 882, - [1007] = 977, + [1004] = 103, + [1005] = 915, + [1006] = 1006, + [1007] = 1007, [1008] = 1008, - [1009] = 1009, - [1010] = 966, - [1011] = 116, - [1012] = 908, - [1013] = 1013, - [1014] = 112, - [1015] = 974, - [1016] = 19, + [1009] = 902, + [1010] = 1010, + [1011] = 905, + [1012] = 1012, + [1013] = 926, + [1014] = 907, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 1019, - [1020] = 892, - [1021] = 127, - [1022] = 892, + [1019] = 919, + [1020] = 1020, + [1021] = 908, + [1022] = 925, [1023] = 1023, - [1024] = 2, - [1025] = 968, + [1024] = 904, + [1025] = 1025, [1026] = 1026, [1027] = 1027, [1028] = 1028, - [1029] = 974, - [1030] = 116, + [1029] = 928, + [1030] = 920, [1031] = 1031, - [1032] = 33, + [1032] = 1001, [1033] = 1033, - [1034] = 1034, - [1035] = 37, - [1036] = 977, - [1037] = 34, - [1038] = 968, - [1039] = 38, - [1040] = 112, - [1041] = 127, + [1034] = 998, + [1035] = 1035, + [1036] = 992, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, [1042] = 1042, - [1043] = 1043, - [1044] = 975, - [1045] = 1045, + [1043] = 977, + [1044] = 996, + [1045] = 989, [1046] = 1046, - [1047] = 969, + [1047] = 968, [1048] = 1048, [1049] = 1049, - [1050] = 2, + [1050] = 1050, [1051] = 1051, - [1052] = 966, - [1053] = 908, - [1054] = 1019, - [1055] = 1055, - [1056] = 1002, + [1052] = 1052, + [1053] = 983, + [1054] = 1054, + [1055] = 967, + [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1005, - [1060] = 1000, - [1061] = 1061, - [1062] = 41, + [1059] = 2, + [1060] = 1060, + [1061] = 1001, + [1062] = 1062, [1063] = 1063, - [1064] = 39, - [1065] = 1065, - [1066] = 992, - [1067] = 1067, + [1064] = 1064, + [1065] = 967, + [1066] = 1057, + [1067] = 996, [1068] = 1068, - [1069] = 1009, - [1070] = 1070, - [1071] = 879, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, + [1069] = 1069, + [1070] = 2, + [1071] = 1071, + [1072] = 1062, + [1073] = 983, + [1074] = 989, [1075] = 1075, [1076] = 1076, - [1077] = 1008, + [1077] = 1062, [1078] = 1078, [1079] = 1079, - [1080] = 1017, + [1080] = 968, [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1019, - [1086] = 1086, - [1087] = 887, - [1088] = 1000, + [1082] = 1057, + [1083] = 1057, + [1084] = 1069, + [1085] = 1069, + [1086] = 977, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, - [1090] = 1005, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1009, - [1097] = 887, + [1095] = 1057, + [1096] = 1071, + [1097] = 1097, [1098] = 1098, [1099] = 1099, - [1100] = 1100, - [1101] = 1017, - [1102] = 992, - [1103] = 892, - [1104] = 882, - [1105] = 50, + [1100] = 992, + [1101] = 1071, + [1102] = 1057, + [1103] = 1103, + [1104] = 1104, + [1105] = 1069, [1106] = 1106, - [1107] = 895, + [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1042, - [1111] = 1002, + [1110] = 1110, + [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 892, - [1115] = 1008, - [1116] = 1116, - [1117] = 2, - [1118] = 1065, - [1119] = 1084, - [1120] = 54, + [1114] = 1114, + [1115] = 1115, + [1116] = 1069, + [1117] = 998, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, [1121] = 1121, - [1122] = 1075, - [1123] = 908, - [1124] = 1042, - [1125] = 1061, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, [1126] = 1126, - [1127] = 1127, - [1128] = 1068, - [1129] = 1129, + [1127] = 920, + [1128] = 1128, + [1129] = 1124, [1130] = 1130, - [1131] = 127, - [1132] = 1073, + [1131] = 1131, + [1132] = 1132, [1133] = 1133, - [1134] = 1067, + [1134] = 1134, [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1072, + [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 1070, + [1144] = 1144, [1145] = 1145, [1146] = 1146, [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 112, - [1151] = 1151, + [1150] = 1150, + [1151] = 864, [1152] = 1152, - [1153] = 1074, + [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 1076, - [1157] = 116, + [1156] = 1156, + [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 1084, - [1162] = 1061, - [1163] = 1073, + [1161] = 1161, + [1162] = 1162, + [1163] = 1161, [1164] = 1164, - [1165] = 1070, + [1165] = 1165, [1166] = 1166, - [1167] = 1075, - [1168] = 1168, - [1169] = 1065, + [1167] = 1167, + [1168] = 1166, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1074, - [1173] = 1173, - [1174] = 1072, - [1175] = 1175, - [1176] = 1068, + [1172] = 1172, + [1173] = 937, + [1174] = 1174, + [1175] = 1166, + [1176] = 1176, [1177] = 1177, [1178] = 1178, - [1179] = 1076, + [1179] = 1179, [1180] = 1180, - [1181] = 1067, + [1181] = 1181, [1182] = 1182, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1149, + [1186] = 1186, [1187] = 1187, - [1188] = 1126, - [1189] = 1189, - [1190] = 1127, - [1191] = 1191, - [1192] = 1148, - [1193] = 1193, - [1194] = 1194, - [1195] = 1154, + [1188] = 1188, + [1189] = 1166, + [1190] = 1190, + [1191] = 1161, + [1192] = 1192, + [1193] = 1187, + [1194] = 1161, + [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1198, - [1199] = 1199, + [1198] = 1166, + [1199] = 1166, [1200] = 1200, [1201] = 1201, - [1202] = 1146, - [1203] = 1203, - [1204] = 1151, + [1202] = 920, + [1203] = 1166, + [1204] = 1161, [1205] = 1205, [1206] = 1206, - [1207] = 1207, - [1208] = 1143, + [1207] = 1166, + [1208] = 1208, [1209] = 1209, - [1210] = 1141, + [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1215, + [1215] = 1166, [1216] = 1216, - [1217] = 1146, + [1217] = 1217, [1218] = 1218, - [1219] = 1219, + [1219] = 1161, [1220] = 1220, [1221] = 1221, - [1222] = 1222, + [1222] = 1166, [1223] = 1223, - [1224] = 1215, + [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1149, + [1227] = 1227, [1228] = 1228, - [1229] = 1148, - [1230] = 1219, + [1229] = 1229, + [1230] = 1166, [1231] = 1231, - [1232] = 1215, + [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, - [1236] = 1214, - [1237] = 1237, + [1236] = 1236, + [1237] = 1236, [1238] = 1238, - [1239] = 2, - [1240] = 1151, + [1239] = 876, + [1240] = 1240, [1241] = 1241, - [1242] = 1214, + [1242] = 1242, [1243] = 1243, [1244] = 1244, - [1245] = 1127, - [1246] = 1215, - [1247] = 1237, - [1248] = 1154, - [1249] = 1219, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, [1250] = 1250, - [1251] = 1214, + [1251] = 1251, [1252] = 1252, - [1253] = 2, + [1253] = 1253, [1254] = 1254, - [1255] = 1215, - [1256] = 1141, + [1255] = 1255, + [1256] = 1256, [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1237, + [1260] = 1260, [1261] = 1261, - [1262] = 1143, + [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1214, + [1266] = 1266, [1267] = 1267, - [1268] = 1126, + [1268] = 1268, [1269] = 1269, - [1270] = 1215, + [1270] = 1270, [1271] = 1271, [1272] = 1272, [1273] = 1273, @@ -4103,27 +4103,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1282] = 1282, [1283] = 1283, [1284] = 1284, - [1285] = 1285, + [1285] = 864, [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1281, - [1293] = 1073, + [1292] = 1292, + [1293] = 1293, [1294] = 1294, [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1299, + [1299] = 1184, [1300] = 1300, [1301] = 1301, [1302] = 1302, [1303] = 1303, - [1304] = 1304, - [1305] = 1305, + [1304] = 1177, + [1305] = 1174, [1306] = 1306, [1307] = 1307, [1308] = 1308, @@ -4132,143 +4132,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1311] = 1311, [1312] = 1312, [1313] = 1313, - [1314] = 1314, + [1314] = 1300, [1315] = 1315, [1316] = 1316, - [1317] = 1317, + [1317] = 1316, [1318] = 1318, [1319] = 1319, - [1320] = 1306, + [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, + [1323] = 1300, + [1324] = 1162, + [1325] = 1316, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, + [1330] = 829, [1331] = 1331, - [1332] = 992, + [1332] = 1332, [1333] = 1333, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, + [1334] = 1300, + [1335] = 1316, + [1336] = 1316, [1337] = 1337, - [1338] = 1338, + [1338] = 1300, [1339] = 1339, - [1340] = 1340, - [1341] = 1328, - [1342] = 1306, + [1340] = 1300, + [1341] = 1245, + [1342] = 1342, [1343] = 1343, - [1344] = 1344, - [1345] = 1325, + [1344] = 1200, + [1345] = 1345, [1346] = 1346, - [1347] = 1347, - [1348] = 1348, + [1347] = 1316, + [1348] = 1228, [1349] = 1349, - [1350] = 1086, + [1350] = 1350, [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1354, - [1355] = 1306, + [1354] = 1300, + [1355] = 1316, [1356] = 1356, - [1357] = 1306, - [1358] = 1306, + [1357] = 1316, + [1358] = 1300, [1359] = 1359, - [1360] = 1073, + [1360] = 1360, [1361] = 1361, - [1362] = 1328, + [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1306, + [1366] = 1366, [1367] = 1367, [1368] = 1368, - [1369] = 1328, - [1370] = 1306, + [1369] = 1300, + [1370] = 1370, [1371] = 1371, - [1372] = 1372, + [1372] = 1154, [1373] = 1373, - [1374] = 1328, - [1375] = 1375, - [1376] = 1306, + [1374] = 1316, + [1375] = 1316, + [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1306, - [1380] = 1380, + [1379] = 1238, + [1380] = 1300, [1381] = 1381, - [1382] = 1382, - [1383] = 1328, - [1384] = 1306, + [1382] = 1213, + [1383] = 1316, + [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1316, [1387] = 1387, [1388] = 1388, - [1389] = 1389, + [1389] = 1300, [1390] = 1390, - [1391] = 1391, + [1391] = 1300, [1392] = 1392, - [1393] = 1393, + [1393] = 1316, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, + [1397] = 1300, [1398] = 1398, - [1399] = 1042, - [1400] = 1400, + [1399] = 1399, + [1400] = 1316, [1401] = 1401, [1402] = 1402, [1403] = 1403, - [1404] = 1404, + [1404] = 876, [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, + [1406] = 1300, + [1407] = 1316, + [1408] = 1300, [1409] = 1409, - [1410] = 1410, + [1410] = 1209, [1411] = 1411, [1412] = 1412, - [1413] = 1413, - [1414] = 1414, + [1413] = 825, + [1414] = 833, [1415] = 1415, - [1416] = 1416, + [1416] = 1316, [1417] = 1417, - [1418] = 1418, + [1418] = 788, [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, + [1420] = 830, + [1421] = 1300, + [1422] = 1195, [1423] = 1423, [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 992, + [1425] = 1209, + [1426] = 1162, + [1427] = 1228, + [1428] = 1177, [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, + [1430] = 1200, + [1431] = 1184, + [1432] = 1213, [1433] = 1433, - [1434] = 1431, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, + [1434] = 1195, + [1435] = 788, + [1436] = 1320, + [1437] = 1174, [1438] = 1438, - [1439] = 1439, + [1439] = 1154, [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 1445, + [1444] = 1443, + [1445] = 1442, [1446] = 1446, [1447] = 1447, [1448] = 1448, [1449] = 1449, - [1450] = 936, + [1450] = 1438, [1451] = 1451, [1452] = 1452, [1453] = 1453, @@ -4279,307 +4279,307 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1458] = 1458, [1459] = 1459, [1460] = 1460, - [1461] = 1365, + [1461] = 1461, [1462] = 1462, - [1463] = 1460, - [1464] = 1462, - [1465] = 1460, - [1466] = 1462, - [1467] = 1460, - [1468] = 982, + [1463] = 1463, + [1464] = 1460, + [1465] = 1448, + [1466] = 1460, + [1467] = 1467, + [1468] = 1468, [1469] = 1469, - [1470] = 984, - [1471] = 983, - [1472] = 1462, - [1473] = 1460, - [1474] = 986, + [1470] = 1438, + [1471] = 1443, + [1472] = 1472, + [1473] = 1442, + [1474] = 1474, [1475] = 1475, - [1476] = 1462, - [1477] = 1460, + [1476] = 1476, + [1477] = 1477, [1478] = 1478, - [1479] = 1462, - [1480] = 1460, + [1479] = 1479, + [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1462, + [1483] = 1467, [1484] = 1484, - [1485] = 1460, - [1486] = 1462, - [1487] = 1460, - [1488] = 1488, - [1489] = 1462, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1460, + [1489] = 1489, [1490] = 1490, - [1491] = 1460, + [1491] = 1491, [1492] = 1492, - [1493] = 1462, - [1494] = 1462, - [1495] = 1352, - [1496] = 1496, - [1497] = 1460, + [1493] = 1442, + [1494] = 1494, + [1495] = 1495, + [1496] = 1442, + [1497] = 1497, [1498] = 1498, - [1499] = 1462, - [1500] = 1500, - [1501] = 1460, - [1502] = 1462, - [1503] = 1460, - [1504] = 1462, - [1505] = 1308, - [1506] = 1460, + [1499] = 1438, + [1500] = 1467, + [1501] = 1442, + [1502] = 1443, + [1503] = 1438, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1462, - [1511] = 1460, - [1512] = 1512, - [1513] = 1042, + [1508] = 1443, + [1509] = 1442, + [1510] = 1442, + [1511] = 1511, + [1512] = 1442, + [1513] = 1513, [1514] = 1514, - [1515] = 1462, - [1516] = 1460, + [1515] = 1515, + [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1339, - [1520] = 1520, + [1519] = 1519, + [1520] = 1460, [1521] = 1521, [1522] = 1522, - [1523] = 1523, - [1524] = 1377, + [1523] = 1442, + [1524] = 1441, [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1530, - [1531] = 1310, - [1532] = 1532, - [1533] = 1449, + [1530] = 1460, + [1531] = 1531, + [1532] = 1438, + [1533] = 1442, [1534] = 1534, [1535] = 1535, - [1536] = 1536, + [1536] = 1443, [1537] = 1537, [1538] = 1538, - [1539] = 1539, + [1539] = 1442, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 1543, - [1544] = 1313, + [1543] = 1442, + [1544] = 1544, [1545] = 1545, - [1546] = 1448, + [1546] = 1546, [1547] = 1547, - [1548] = 1548, + [1548] = 1443, [1549] = 1549, [1550] = 1550, - [1551] = 1551, - [1552] = 1309, + [1551] = 1438, + [1552] = 1552, [1553] = 1553, - [1554] = 1554, + [1554] = 1460, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1312, + [1560] = 1460, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1564, + [1564] = 1438, [1565] = 1565, - [1566] = 1566, + [1566] = 1443, [1567] = 1567, [1568] = 1568, - [1569] = 1569, + [1569] = 1442, [1570] = 1570, [1571] = 1571, - [1572] = 1307, + [1572] = 1572, [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 1576, + [1576] = 1442, [1577] = 1577, [1578] = 1578, [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1308, - [1583] = 1313, - [1584] = 1584, + [1582] = 1582, + [1583] = 1460, + [1584] = 1438, [1585] = 1585, [1586] = 1586, - [1587] = 1309, + [1587] = 1587, [1588] = 1588, - [1589] = 1589, - [1590] = 1310, - [1591] = 1591, - [1592] = 1307, + [1589] = 1443, + [1590] = 1443, + [1591] = 1438, + [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 1312, + [1597] = 1460, [1598] = 1598, [1599] = 1599, [1600] = 1600, [1601] = 1601, - [1602] = 1602, + [1602] = 1442, [1603] = 1603, - [1604] = 1339, - [1605] = 936, - [1606] = 1601, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, [1607] = 1607, - [1608] = 1607, - [1609] = 1352, + [1608] = 1608, + [1609] = 1442, [1610] = 1610, [1611] = 1611, - [1612] = 1607, - [1613] = 1365, - [1614] = 1607, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, [1615] = 1615, - [1616] = 1616, - [1617] = 1607, - [1618] = 1607, + [1616] = 1443, + [1617] = 1438, + [1618] = 1460, [1619] = 1619, - [1620] = 1603, - [1621] = 1607, + [1620] = 1620, + [1621] = 1621, [1622] = 1622, [1623] = 1623, [1624] = 1624, [1625] = 1625, - [1626] = 1577, - [1627] = 1607, - [1628] = 1622, - [1629] = 1623, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, [1630] = 1630, - [1631] = 1577, + [1631] = 1631, [1632] = 1632, - [1633] = 1607, - [1634] = 1622, - [1635] = 1623, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, [1636] = 1636, - [1637] = 1577, + [1637] = 1637, [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1607, - [1643] = 1622, - [1644] = 1623, + [1642] = 1642, + [1643] = 1639, + [1644] = 1636, [1645] = 1645, [1646] = 1646, - [1647] = 1577, + [1647] = 1631, [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1607, - [1653] = 1622, + [1652] = 1652, + [1653] = 1653, [1654] = 1654, - [1655] = 1623, - [1656] = 1577, + [1655] = 1655, + [1656] = 1656, [1657] = 1657, [1658] = 1658, [1659] = 1659, - [1660] = 1607, - [1661] = 1622, - [1662] = 1623, - [1663] = 1663, - [1664] = 1577, + [1660] = 1660, + [1661] = 1626, + [1662] = 1662, + [1663] = 1631, + [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, [1669] = 1669, - [1670] = 1607, - [1671] = 1622, + [1670] = 1670, + [1671] = 1671, [1672] = 1672, - [1673] = 1623, - [1674] = 1577, - [1675] = 1607, - [1676] = 1622, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1626, [1677] = 1677, - [1678] = 1678, - [1679] = 1623, + [1678] = 1639, + [1679] = 1679, [1680] = 1680, [1681] = 1681, [1682] = 1682, - [1683] = 1683, - [1684] = 1577, - [1685] = 1685, - [1686] = 1686, - [1687] = 1607, + [1683] = 1636, + [1684] = 1684, + [1685] = 1636, + [1686] = 1636, + [1687] = 1639, [1688] = 1688, - [1689] = 1622, - [1690] = 1623, - [1691] = 1577, - [1692] = 1692, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1631, [1693] = 1693, - [1694] = 1549, + [1694] = 1694, [1695] = 1695, - [1696] = 1607, - [1697] = 1622, - [1698] = 1623, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, [1699] = 1699, - [1700] = 1577, + [1700] = 1700, [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1704, + [1704] = 1626, [1705] = 1705, [1706] = 1706, - [1707] = 1707, + [1707] = 1626, [1708] = 1708, [1709] = 1709, [1710] = 1710, [1711] = 1711, [1712] = 1712, - [1713] = 1377, + [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1716, + [1716] = 1631, [1717] = 1717, [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, - [1722] = 1722, + [1722] = 1636, [1723] = 1723, [1724] = 1724, [1725] = 1725, - [1726] = 1726, + [1726] = 1639, [1727] = 1727, - [1728] = 1728, + [1728] = 1636, [1729] = 1729, [1730] = 1730, [1731] = 1731, - [1732] = 1732, + [1732] = 1631, [1733] = 1733, [1734] = 1734, [1735] = 1735, [1736] = 1736, - [1737] = 1737, - [1738] = 1738, + [1737] = 1626, + [1738] = 1636, [1739] = 1739, [1740] = 1740, - [1741] = 1601, + [1741] = 1741, [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1623, - [1748] = 1622, - [1749] = 1607, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, [1750] = 1750, [1751] = 1751, [1752] = 1752, [1753] = 1753, [1754] = 1754, - [1755] = 1755, + [1755] = 1639, [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1636, [1759] = 1759, - [1760] = 1760, - [1761] = 1761, + [1760] = 1631, + [1761] = 1631, [1762] = 1762, [1763] = 1763, [1764] = 1764, @@ -4590,10 +4590,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1769] = 1769, [1770] = 1770, [1771] = 1771, - [1772] = 1695, + [1772] = 1772, [1773] = 1773, [1774] = 1774, - [1775] = 1775, + [1775] = 1626, [1776] = 1776, [1777] = 1777, [1778] = 1778, @@ -4615,114 +4615,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1794] = 1794, [1795] = 1795, [1796] = 1796, - [1797] = 1797, + [1797] = 1639, [1798] = 1798, [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, + [1800] = 1639, + [1801] = 1636, + [1802] = 1672, [1803] = 1803, [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 2, + [1806] = 1631, + [1807] = 1807, [1808] = 1808, [1809] = 1809, - [1810] = 1783, - [1811] = 1811, + [1810] = 1810, + [1811] = 1639, [1812] = 1812, [1813] = 1813, [1814] = 1814, [1815] = 1815, [1816] = 1816, [1817] = 1817, - [1818] = 1818, + [1818] = 1639, [1819] = 1819, [1820] = 1820, [1821] = 1821, [1822] = 1822, - [1823] = 1823, + [1823] = 1636, [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, + [1825] = 1736, + [1826] = 1626, + [1827] = 1631, + [1828] = 1631, + [1829] = 802, + [1830] = 1626, [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1834, - [1835] = 1835, + [1832] = 2, + [1833] = 1636, + [1834] = 1672, + [1835] = 1626, [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1839, + [1839] = 1831, [1840] = 1840, - [1841] = 1830, - [1842] = 962, - [1843] = 1783, + [1841] = 1841, + [1842] = 1626, + [1843] = 1639, [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1781, + [1847] = 1847, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1781, - [1852] = 1783, - [1853] = 1853, + [1851] = 1851, + [1852] = 1852, + [1853] = 1831, [1854] = 1854, - [1855] = 1855, - [1856] = 1845, - [1857] = 1783, + [1855] = 1854, + [1856] = 1856, + [1857] = 1857, [1858] = 1858, - [1859] = 1783, + [1859] = 1859, [1860] = 1860, [1861] = 1861, - [1862] = 1818, + [1862] = 1862, [1863] = 1863, - [1864] = 1781, - [1865] = 1865, - [1866] = 1845, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, + [1864] = 1862, + [1865] = 1863, + [1866] = 1866, + [1867] = 1860, + [1868] = 1861, + [1869] = 1859, [1870] = 1870, [1871] = 1871, [1872] = 1872, [1873] = 1873, [1874] = 1874, - [1875] = 1875, - [1876] = 1876, + [1875] = 1847, + [1876] = 1856, [1877] = 1877, [1878] = 1878, [1879] = 1879, - [1880] = 1880, - [1881] = 1881, + [1880] = 1856, + [1881] = 1854, [1882] = 1882, [1883] = 1883, - [1884] = 1884, + [1884] = 1854, [1885] = 1885, - [1886] = 1818, - [1887] = 1781, + [1886] = 1856, + [1887] = 1887, [1888] = 1888, - [1889] = 1845, - [1890] = 1890, - [1891] = 1891, + [1889] = 1889, + [1890] = 1860, + [1891] = 1851, [1892] = 1892, - [1893] = 1893, - [1894] = 1894, + [1893] = 1863, + [1894] = 1862, [1895] = 1895, - [1896] = 1896, - [1897] = 1849, - [1898] = 1898, - [1899] = 1818, - [1900] = 1781, - [1901] = 1845, + [1896] = 1847, + [1897] = 1861, + [1898] = 1859, + [1899] = 1870, + [1900] = 1900, + [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1904, + [1904] = 1847, [1905] = 1905, [1906] = 1906, [1907] = 1907, @@ -4731,98 +4731,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1910] = 1910, [1911] = 1911, [1912] = 1912, - [1913] = 1913, - [1914] = 1818, - [1915] = 1783, + [1913] = 1854, + [1914] = 1914, + [1915] = 1856, [1916] = 1916, - [1917] = 1781, + [1917] = 1917, [1918] = 1918, - [1919] = 1919, - [1920] = 1845, - [1921] = 1783, - [1922] = 1922, - [1923] = 1844, - [1924] = 1924, + [1919] = 1860, + [1920] = 1920, + [1921] = 1921, + [1922] = 1863, + [1923] = 1862, + [1924] = 1863, [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, + [1926] = 1861, + [1927] = 1859, + [1928] = 1870, [1929] = 1929, - [1930] = 1930, - [1931] = 1931, + [1930] = 1862, + [1931] = 1847, [1932] = 1932, [1933] = 1933, - [1934] = 1818, - [1935] = 1781, + [1934] = 1934, + [1935] = 1935, [1936] = 1936, - [1937] = 1845, - [1938] = 1783, - [1939] = 1939, + [1937] = 1937, + [1938] = 1938, + [1939] = 1854, [1940] = 1940, - [1941] = 1941, + [1941] = 1856, [1942] = 1942, [1943] = 1943, - [1944] = 1944, - [1945] = 1818, + [1944] = 1860, + [1945] = 1945, [1946] = 1946, - [1947] = 1947, - [1948] = 1781, + [1947] = 1863, + [1948] = 1862, [1949] = 1949, [1950] = 1950, - [1951] = 1845, - [1952] = 1952, - [1953] = 1953, - [1954] = 1818, + [1951] = 1861, + [1952] = 1859, + [1953] = 1870, + [1954] = 1889, [1955] = 1955, - [1956] = 1849, - [1957] = 1818, + [1956] = 1847, + [1957] = 1860, [1958] = 1958, - [1959] = 1781, - [1960] = 1845, + [1959] = 1959, + [1960] = 1960, [1961] = 1961, [1962] = 1962, - [1963] = 1783, - [1964] = 1964, + [1963] = 1963, + [1964] = 1854, [1965] = 1965, - [1966] = 1966, + [1966] = 1856, [1967] = 1967, - [1968] = 1968, + [1968] = 1860, [1969] = 1969, [1970] = 1970, - [1971] = 1971, - [1972] = 1972, + [1971] = 1863, + [1972] = 1862, [1973] = 1973, [1974] = 1974, - [1975] = 1975, - [1976] = 1783, - [1977] = 1977, + [1975] = 1861, + [1976] = 1859, + [1977] = 1870, [1978] = 1978, - [1979] = 1845, - [1980] = 1980, - [1981] = 1845, - [1982] = 1982, + [1979] = 1861, + [1980] = 1847, + [1981] = 1981, + [1982] = 1870, [1983] = 1983, [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1781, - [1988] = 1988, + [1987] = 1987, + [1988] = 1854, [1989] = 1989, - [1990] = 1990, - [1991] = 1818, - [1992] = 1992, - [1993] = 1781, + [1990] = 1856, + [1991] = 1991, + [1992] = 1860, + [1993] = 1993, [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1818, + [1995] = 1863, + [1996] = 1862, + [1997] = 1997, [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, + [1999] = 1861, + [2000] = 1859, + [2001] = 1870, [2002] = 2002, [2003] = 2003, - [2004] = 2004, + [2004] = 1847, [2005] = 2005, [2006] = 2006, [2007] = 2007, @@ -4830,422 +4830,268 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2009] = 2009, [2010] = 2010, [2011] = 2011, - [2012] = 2012, + [2012] = 1854, [2013] = 2013, - [2014] = 2014, + [2014] = 1856, [2015] = 2015, - [2016] = 2016, - [2017] = 2017, + [2016] = 1860, + [2017] = 1859, [2018] = 2018, - [2019] = 2019, - [2020] = 2020, + [2019] = 1863, + [2020] = 1862, [2021] = 2021, [2022] = 2022, - [2023] = 2023, - [2024] = 2002, - [2025] = 2003, - [2026] = 2004, + [2023] = 1861, + [2024] = 1859, + [2025] = 1870, + [2026] = 2026, [2027] = 2027, - [2028] = 2028, - [2029] = 2006, - [2030] = 2008, - [2031] = 2009, + [2028] = 1847, + [2029] = 2029, + [2030] = 1851, + [2031] = 2031, [2032] = 2032, - [2033] = 2013, + [2033] = 2033, [2034] = 2034, [2035] = 2035, - [2036] = 2036, + [2036] = 1854, [2037] = 2037, - [2038] = 2019, + [2038] = 1856, [2039] = 2039, - [2040] = 2021, - [2041] = 2019, + [2040] = 1860, + [2041] = 2041, [2042] = 2042, - [2043] = 2000, - [2044] = 2002, - [2045] = 2017, + [2043] = 1863, + [2044] = 1862, + [2045] = 2045, [2046] = 2046, - [2047] = 2003, - [2048] = 2004, - [2049] = 2049, + [2047] = 1861, + [2048] = 1859, + [2049] = 1870, [2050] = 2050, - [2051] = 2006, - [2052] = 2008, - [2053] = 2009, + [2051] = 2051, + [2052] = 1847, + [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 2013, - [2059] = 2059, - [2060] = 2060, - [2061] = 2017, - [2062] = 2062, + [2058] = 2058, + [2059] = 1870, + [2060] = 1854, + [2061] = 2061, + [2062] = 1856, [2063] = 2063, - [2064] = 2013, - [2065] = 2008, + [2064] = 1860, + [2065] = 2065, [2066] = 2066, - [2067] = 2019, - [2068] = 2068, - [2069] = 2021, + [2067] = 1863, + [2068] = 1862, + [2069] = 2069, [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2002, + [2071] = 1861, + [2072] = 1859, + [2073] = 1870, [2074] = 2074, [2075] = 2075, - [2076] = 2003, - [2077] = 2004, - [2078] = 2078, - [2079] = 2079, - [2080] = 2006, - [2081] = 2008, - [2082] = 2009, - [2083] = 2083, + [2076] = 2076, + [2077] = 1854, + [2078] = 1847, + [2079] = 1862, + [2080] = 2080, + [2081] = 2081, + [2082] = 1861, + [2083] = 1870, [2084] = 2084, - [2085] = 2013, + [2085] = 2085, [2086] = 2086, - [2087] = 2087, + [2087] = 1854, [2088] = 2088, [2089] = 2089, [2090] = 2090, [2091] = 2091, [2092] = 2092, - [2093] = 2019, + [2093] = 1854, [2094] = 2094, - [2095] = 2021, + [2095] = 2095, [2096] = 2096, [2097] = 2097, - [2098] = 2002, - [2099] = 2099, + [2098] = 2098, + [2099] = 1854, [2100] = 2100, - [2101] = 2003, - [2102] = 2004, + [2101] = 2101, + [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2006, - [2106] = 2008, - [2107] = 2009, + [2105] = 1854, + [2106] = 2106, + [2107] = 2107, [2108] = 2108, - [2109] = 2019, - [2110] = 2013, - [2111] = 2021, + [2109] = 1854, + [2110] = 2076, + [2111] = 2111, [2112] = 2112, [2113] = 2113, [2114] = 2114, [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2019, - [2119] = 2013, - [2120] = 2021, - [2121] = 2121, - [2122] = 2002, + [2116] = 1845, + [2117] = 2035, + [2118] = 2118, + [2119] = 1901, + [2120] = 2120, + [2121] = 2114, + [2122] = 2122, [2123] = 2123, - [2124] = 2124, - [2125] = 2003, - [2126] = 2004, + [2124] = 1925, + [2125] = 1929, + [2126] = 2126, [2127] = 2127, - [2128] = 1830, - [2129] = 2006, - [2130] = 2008, - [2131] = 2009, + [2128] = 1978, + [2129] = 2129, + [2130] = 2018, + [2131] = 2131, [2132] = 2132, [2133] = 2133, - [2134] = 2013, - [2135] = 2135, - [2136] = 2136, + [2134] = 2134, + [2135] = 2113, + [2136] = 2114, [2137] = 2137, - [2138] = 2138, + [2138] = 1845, [2139] = 2139, - [2140] = 2140, + [2140] = 1901, [2141] = 2141, - [2142] = 2019, + [2142] = 2142, [2143] = 2143, - [2144] = 2021, - [2145] = 2145, - [2146] = 2002, - [2147] = 2147, - [2148] = 2148, - [2149] = 2003, - [2150] = 2004, - [2151] = 2151, - [2152] = 2152, - [2153] = 2006, - [2154] = 2008, - [2155] = 2009, + [2144] = 1925, + [2145] = 1929, + [2146] = 1978, + [2147] = 2018, + [2148] = 2113, + [2149] = 2149, + [2150] = 2150, + [2151] = 2113, + [2152] = 1845, + [2153] = 2153, + [2154] = 1901, + [2155] = 2155, [2156] = 2156, - [2157] = 2157, - [2158] = 2013, - [2159] = 2159, - [2160] = 2160, + [2157] = 1925, + [2158] = 1929, + [2159] = 1978, + [2160] = 2018, [2161] = 2161, [2162] = 2162, [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2019, - [2167] = 2167, - [2168] = 2021, + [2164] = 2113, + [2165] = 1845, + [2166] = 2166, + [2167] = 1901, + [2168] = 2168, [2169] = 2169, - [2170] = 2002, - [2171] = 2171, - [2172] = 2172, - [2173] = 2003, - [2174] = 2004, + [2170] = 1925, + [2171] = 1929, + [2172] = 1978, + [2173] = 2018, + [2174] = 2174, [2175] = 2175, [2176] = 2176, - [2177] = 2006, - [2178] = 2008, - [2179] = 2009, - [2180] = 2180, + [2177] = 2113, + [2178] = 1845, + [2179] = 2179, + [2180] = 1901, [2181] = 2181, - [2182] = 2013, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, + [2182] = 2182, + [2183] = 1925, + [2184] = 1929, + [2185] = 1978, + [2186] = 2018, [2187] = 2187, [2188] = 2188, [2189] = 2189, - [2190] = 2019, - [2191] = 2191, - [2192] = 2021, - [2193] = 2193, - [2194] = 2002, - [2195] = 2195, + [2190] = 2113, + [2191] = 1845, + [2192] = 1925, + [2193] = 1929, + [2194] = 1978, + [2195] = 2018, [2196] = 2196, - [2197] = 2003, - [2198] = 2004, - [2199] = 2199, - [2200] = 2200, - [2201] = 2006, - [2202] = 2008, - [2203] = 2009, - [2204] = 2204, - [2205] = 2205, - [2206] = 2013, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, + [2197] = 2113, + [2198] = 1845, + [2199] = 1925, + [2200] = 1929, + [2201] = 1978, + [2202] = 2018, + [2203] = 2203, + [2204] = 2113, + [2205] = 1845, + [2206] = 1925, + [2207] = 1929, + [2208] = 1978, + [2209] = 2018, [2210] = 2210, - [2211] = 2211, - [2212] = 2212, - [2213] = 2021, - [2214] = 2019, - [2215] = 2215, - [2216] = 2021, + [2211] = 2113, + [2212] = 1845, + [2213] = 1925, + [2214] = 1929, + [2215] = 1978, + [2216] = 2018, [2217] = 2217, - [2218] = 2002, - [2219] = 2219, - [2220] = 2220, - [2221] = 2003, - [2222] = 2004, - [2223] = 2223, - [2224] = 2224, - [2225] = 2006, - [2226] = 2008, - [2227] = 2009, + [2218] = 2113, + [2219] = 1845, + [2220] = 1925, + [2221] = 1929, + [2222] = 1978, + [2223] = 2018, + [2224] = 1925, + [2225] = 1929, + [2226] = 2018, + [2227] = 2227, [2228] = 2228, - [2229] = 2229, + [2229] = 1921, [2230] = 2230, - [2231] = 2019, - [2232] = 2117, - [2233] = 2004, - [2234] = 2234, + [2231] = 2231, + [2232] = 1921, + [2233] = 2233, + [2234] = 1921, [2235] = 2235, - [2236] = 2006, - [2237] = 2009, - [2238] = 2002, - [2239] = 2003, - [2240] = 2240, - [2241] = 2019, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 2019, - [2248] = 2248, - [2249] = 2004, - [2250] = 2250, - [2251] = 2117, - [2252] = 2252, - [2253] = 2019, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2019, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 2019, - [2264] = 2264, - [2265] = 2006, - [2266] = 2266, - [2267] = 2267, - [2268] = 2252, - [2269] = 2269, - [2270] = 2094, - [2271] = 2066, - [2272] = 2272, - [2273] = 2090, - [2274] = 2274, - [2275] = 2275, - [2276] = 2009, - [2277] = 2277, - [2278] = 2244, - [2279] = 2248, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2267, - [2284] = 2074, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2267, - [2289] = 2252, - [2290] = 2290, - [2291] = 2094, - [2292] = 2292, - [2293] = 2090, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2244, - [2298] = 2248, - [2299] = 2282, - [2300] = 2074, - [2301] = 2301, - [2302] = 2302, - [2303] = 2267, - [2304] = 2094, - [2305] = 2305, - [2306] = 2090, - [2307] = 2307, - [2308] = 2308, - [2309] = 2244, - [2310] = 2248, - [2311] = 2282, - [2312] = 2074, - [2313] = 2313, - [2314] = 2314, - [2315] = 2267, - [2316] = 2094, - [2317] = 2317, - [2318] = 2090, - [2319] = 2319, - [2320] = 2320, - [2321] = 2244, - [2322] = 2248, - [2323] = 2282, - [2324] = 2074, - [2325] = 2325, - [2326] = 2326, - [2327] = 2267, - [2328] = 2094, - [2329] = 2329, - [2330] = 2090, - [2331] = 2331, - [2332] = 2332, - [2333] = 2244, - [2334] = 2248, - [2335] = 2282, - [2336] = 2074, - [2337] = 2337, - [2338] = 2338, - [2339] = 2267, - [2340] = 2094, - [2341] = 2244, - [2342] = 2248, - [2343] = 2282, - [2344] = 2074, - [2345] = 2345, - [2346] = 2267, - [2347] = 2094, - [2348] = 2244, - [2349] = 2248, - [2350] = 2282, - [2351] = 2074, - [2352] = 2352, - [2353] = 2267, - [2354] = 2094, - [2355] = 2244, - [2356] = 2248, - [2357] = 2282, - [2358] = 2074, - [2359] = 2359, - [2360] = 2267, - [2361] = 2094, - [2362] = 2244, - [2363] = 2248, - [2364] = 2282, - [2365] = 2074, - [2366] = 2366, - [2367] = 2267, - [2368] = 2094, - [2369] = 2244, - [2370] = 2248, - [2371] = 2282, - [2372] = 2074, - [2373] = 2244, - [2374] = 2248, - [2375] = 2074, - [2376] = 2376, - [2377] = 2377, - [2378] = 2308, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2308, - [2383] = 2383, - [2384] = 2384, - [2385] = 2308, - [2386] = 2386, - [2387] = 2387, - [2388] = 2308, - [2389] = 2282, - [2390] = 2390, - [2391] = 2308, - [2392] = 2392, - [2393] = 2308, - [2394] = 2308, - [2395] = 2308, - [2396] = 2308, - [2397] = 2308, - [2398] = 2100, - [2399] = 2100, - [2400] = 2100, - [2401] = 2100, - [2402] = 2100, - [2403] = 2100, - [2404] = 2100, - [2405] = 2100, - [2406] = 2100, - [2407] = 2100, - [2408] = 2114, - [2409] = 2114, - [2410] = 2114, - [2411] = 2114, - [2412] = 2114, - [2413] = 2114, - [2414] = 2114, - [2415] = 2114, - [2416] = 2114, - [2417] = 2114, - [2418] = 2286, - [2419] = 2286, - [2420] = 2286, - [2421] = 2286, - [2422] = 2286, - [2423] = 2286, - [2424] = 2286, - [2425] = 2286, - [2426] = 2286, - [2427] = 2286, + [2236] = 1921, + [2237] = 2076, + [2238] = 1921, + [2239] = 1921, + [2240] = 1921, + [2241] = 1921, + [2242] = 1921, + [2243] = 1921, + [2244] = 1883, + [2245] = 1883, + [2246] = 1883, + [2247] = 1883, + [2248] = 1883, + [2249] = 1883, + [2250] = 1883, + [2251] = 1883, + [2252] = 1883, + [2253] = 1883, + [2254] = 2074, + [2255] = 2074, + [2256] = 2074, + [2257] = 2074, + [2258] = 2074, + [2259] = 2074, + [2260] = 2074, + [2261] = 2074, + [2262] = 2074, + [2263] = 2074, + [2264] = 2149, + [2265] = 2149, + [2266] = 2149, + [2267] = 2149, + [2268] = 2149, + [2269] = 2149, + [2270] = 2149, + [2271] = 2149, + [2272] = 2149, + [2273] = 2149, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5435,7 +5281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -5487,7 +5333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -5497,7 +5343,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(1314); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -5877,7 +5723,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6314,7 +6160,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6324,7 +6170,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(1314); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -6368,7 +6214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6506,7 +6352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6557,7 +6403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6608,7 +6454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6618,7 +6464,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(1314); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -6742,31 +6588,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(1248); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1205); + lookahead == 'd') ADVANCE(1203); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1491); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1203); + lookahead == 'h') ADVANCE(1204); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1343); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1364); + lookahead == 'm') ADVANCE(1344); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1453); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1314); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1249); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1273); + lookahead == 'y') ADVANCE(1270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6802,29 +6648,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(1248); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1205); + lookahead == 'd') ADVANCE(1203); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1491); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1203); + lookahead == 'h') ADVANCE(1204); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1343); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1364); + lookahead == 'm') ADVANCE(1344); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1453); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1316); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1249); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1273); + lookahead == 'y') ADVANCE(1270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6860,23 +6706,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(1248); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1205); + lookahead == 'd') ADVANCE(1203); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1469); + lookahead == 'h') ADVANCE(1448); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1363); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1364); + lookahead == 'm') ADVANCE(1344); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1453); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1486); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1249); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1273); + lookahead == 'y') ADVANCE(1270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6912,23 +6758,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(1248); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1205); + lookahead == 'd') ADVANCE(1203); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1469); + lookahead == 'h') ADVANCE(1448); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1382); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1363); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1364); + lookahead == 'm') ADVANCE(1344); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1453); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1486); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1249); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1273); + lookahead == 'y') ADVANCE(1270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6968,7 +6814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -6978,7 +6824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'O' || lookahead == 'o') ADVANCE(1314); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'T' || lookahead == 't') ADVANCE(1451); if (lookahead == 'W' || @@ -7022,7 +6868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -7161,7 +7007,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -7205,29 +7051,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'B' || lookahead == 'b') ADVANCE(1248); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1205); + lookahead == 'd') ADVANCE(1203); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1491); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1203); + lookahead == 'h') ADVANCE(1204); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1342); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1364); + lookahead == 'm') ADVANCE(1344); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1453); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1316); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1249); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1273); + lookahead == 'y') ADVANCE(1270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7265,7 +7111,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1381); if (lookahead == 'L' || @@ -7307,7 +7153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1304); + lookahead == 's') ADVANCE(1303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7333,15 +7179,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(865); if (lookahead == ']') ADVANCE(1097); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1213); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7366,25 +7212,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1212); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1432); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1349); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1315); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7411,23 +7257,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1212); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1432); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1349); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7453,17 +7299,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1282); + lookahead == 'd') ADVANCE(1280); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1213); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7487,17 +7333,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1213); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1358); if (lookahead == '\t' || @@ -7544,15 +7390,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1391); + lookahead == 'a') ADVANCE(1390); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1213); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7575,7 +7421,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1606); if (lookahead == 'F' || @@ -7583,13 +7429,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); + lookahead == 'r') ADVANCE(1275); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1358); if (lookahead == '\t' || @@ -7614,23 +7460,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1212); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1432); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1348); + lookahead == 'l') ADVANCE(1349); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7655,17 +7501,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(1159); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1510); + lookahead == 'a') ADVANCE(1509); if (lookahead == 'F' || lookahead == 'f') ADVANCE(1213); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1462); + lookahead == 'n') ADVANCE(1463); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1598); + lookahead == 'q') ADVANCE(1590); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1499); + lookahead == 't') ADVANCE(1498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7757,7 +7603,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == '[') ADVANCE(1096); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1581); + lookahead == 'n') ADVANCE(1582); if (lookahead == 'V' || lookahead == 'v') ADVANCE(1218); if (lookahead == '\t' || @@ -7802,25 +7648,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1286); + lookahead == 'l') ADVANCE(1285); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1315); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7846,25 +7692,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1286); + lookahead == 'l') ADVANCE(1285); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7890,19 +7736,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7928,19 +7774,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1433); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -7964,25 +7810,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1285); + lookahead == 'l') ADVANCE(1284); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8047,23 +7893,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'A' || lookahead == 'a') ADVANCE(1523); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1433); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1410); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1533); + lookahead == 'u') ADVANCE(1536); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8084,25 +7930,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1286); + lookahead == 'l') ADVANCE(1285); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1315); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8125,25 +7971,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1286); + lookahead == 'l') ADVANCE(1285); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8166,19 +8012,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8201,19 +8047,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == ';') ADVANCE(865); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1433); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1274); + lookahead == 'r') ADVANCE(1273); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8240,15 +8086,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1349); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1315); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8275,11 +8121,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1349); + lookahead == 'l') ADVANCE(1350); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'W' || @@ -8328,9 +8174,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1533); + lookahead == 'u') ADVANCE(1536); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8354,9 +8200,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(1434); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1275); + lookahead == 'r') ADVANCE(1274); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1533); + lookahead == 'u') ADVANCE(1536); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8379,11 +8225,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(1338); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1473); + lookahead == 'f') ADVANCE(1471); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1503); + lookahead == 'p') ADVANCE(1501); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1430); + lookahead == 'u') ADVANCE(1429); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8402,7 +8248,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1282); + lookahead == 'd') ADVANCE(1280); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8421,7 +8267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1358); if (lookahead == '\t' || @@ -8466,25 +8312,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1415); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1285); + lookahead == 'l') ADVANCE(1284); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'W' || lookahead == 'w') ADVANCE(1335); if (lookahead == '\t' || @@ -8509,11 +8355,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'G' || lookahead == 'g') ADVANCE(1495); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1204); + lookahead == 'h') ADVANCE(1205); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1434); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1348); + lookahead == 'l') ADVANCE(1349); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1317); if (lookahead == 'W' || @@ -8542,27 +8388,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == '\\') ADVANCE(984); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1387); + lookahead == 'a') ADVANCE(1397); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1506); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1283); + lookahead == 'd') ADVANCE(1281); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1383); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1457); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1295); + lookahead == 'g') ADVANCE(1292); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1478); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1292); + lookahead == 'p') ADVANCE(1291); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1210); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1477); if (lookahead == 'W' || @@ -8585,27 +8431,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == '\\') ADVANCE(984); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1387); + lookahead == 'a') ADVANCE(1397); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1506); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1283); + lookahead == 'd') ADVANCE(1281); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1424); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1457); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1295); + lookahead == 'g') ADVANCE(1292); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1478); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1292); + lookahead == 'p') ADVANCE(1291); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1210); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1477); if (lookahead == 'W' || @@ -8628,27 +8474,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == '\\') ADVANCE(984); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1387); + lookahead == 'a') ADVANCE(1397); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1506); + lookahead == 'c') ADVANCE(1508); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1283); + lookahead == 'd') ADVANCE(1281); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1606); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1457); + lookahead == 'f') ADVANCE(1459); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1295); + lookahead == 'g') ADVANCE(1292); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1319); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1478); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1292); + lookahead == 'p') ADVANCE(1291); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1210); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1288); + lookahead == 's') ADVANCE(1287); if (lookahead == 'U' || lookahead == 'u') ADVANCE(1477); if (lookahead == 'W' || @@ -8742,11 +8588,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1392); + lookahead == 'a') ADVANCE(1391); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1586); + lookahead == 'f') ADVANCE(1584); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1512); + lookahead == 'p') ADVANCE(1511); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1470); if (lookahead == 'S' || @@ -8770,7 +8616,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1392); + lookahead == 'a') ADVANCE(1391); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8788,9 +8634,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1289); + lookahead == 'b') ADVANCE(1288); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1293); + lookahead == 'd') ADVANCE(1295); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8810,13 +8656,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'C' || lookahead == 'c') ADVANCE(1337); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1473); + lookahead == 'f') ADVANCE(1471); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1320); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1503); + lookahead == 'p') ADVANCE(1501); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1430); + lookahead == 'u') ADVANCE(1429); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8874,7 +8720,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1463); + lookahead == 'c') ADVANCE(1464); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8892,23 +8738,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); + lookahead == 'c') ADVANCE(1507); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1595); + lookahead == 'f') ADVANCE(1596); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1433); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1471); + lookahead == 'j') ADVANCE(1472); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); + lookahead == 'l') ADVANCE(1286); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1225); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1410); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1350); + lookahead == 'r') ADVANCE(1351); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1533); + lookahead == 'u') ADVANCE(1536); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8926,13 +8772,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1589); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1495); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1593); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1310); + lookahead == 'c') ADVANCE(1467); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1320); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1410); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8951,6 +8795,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || lookahead == 'c') ADVANCE(1589); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1495); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1594); if (lookahead == 'S' || lookahead == 's') ADVANCE(1310); if (lookahead == '\t' || @@ -8970,11 +8818,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1467); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1320); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1410); + lookahead == 'c') ADVANCE(1589); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1310); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -8992,9 +8838,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1586); + lookahead == 'f') ADVANCE(1584); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1512); + lookahead == 'p') ADVANCE(1511); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -9050,7 +8896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1581); + lookahead == 'n') ADVANCE(1582); if (lookahead == 'S' || lookahead == 's') ADVANCE(1306); if (lookahead == 'T' || @@ -9074,7 +8920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(84); if (lookahead == '/') ADVANCE(77); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1472); + lookahead == 'n') ADVANCE(1473); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -13306,7 +13152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_trigger_event_token2); if (lookahead == '.') ADVANCE(862); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1272); + lookahead == 'd') ADVANCE(1279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14315,7 +14161,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1201: ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); - if (lookahead == '_') ADVANCE(1599); + if (lookahead == '_') ADVANCE(1598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1613); @@ -14323,7 +14169,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1202: ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); - if (lookahead == '_') ADVANCE(1600); + if (lookahead == '_') ADVANCE(1599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1613); @@ -14332,9 +14178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1602); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1579); + lookahead == 'a') ADVANCE(1607); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14345,6 +14189,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1602); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1578); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14354,7 +14200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1607); + lookahead == 'a') ADVANCE(1602); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14394,7 +14240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1483); + lookahead == 'a') ADVANCE(1482); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14404,9 +14250,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1353); + lookahead == 'a') ADVANCE(1364); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1570); + lookahead == 'e') ADVANCE(1572); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14416,7 +14262,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1594); + lookahead == 'a') ADVANCE(1595); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14426,9 +14272,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1398); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'r') ADVANCE(1449); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14438,7 +14284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1398); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14448,7 +14294,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1431); + lookahead == 'a') ADVANCE(1377); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14458,7 +14304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1377); + lookahead == 'a') ADVANCE(1369); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14478,7 +14324,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1498); + lookahead == 'a') ADVANCE(1497); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14508,7 +14354,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1564); + lookahead == 'a') ADVANCE(1430); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14518,7 +14364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1369); + lookahead == 'a') ADVANCE(1563); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14528,7 +14374,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1566); + lookahead == 'a') ADVANCE(1565); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14558,7 +14404,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1572); + lookahead == 'a') ADVANCE(1573); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14568,7 +14414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1395); + lookahead == 'b') ADVANCE(1393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14578,7 +14424,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1398); + lookahead == 'b') ADVANCE(1396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14618,7 +14464,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1458); + lookahead == 'c') ADVANCE(1455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14638,7 +14484,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1546); + lookahead == 'c') ADVANCE(1545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14648,7 +14494,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1394); + lookahead == 'c') ADVANCE(1400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14658,7 +14504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1561); + lookahead == 'c') ADVANCE(1559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14668,7 +14514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1554); + lookahead == 'c') ADVANCE(1553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14678,7 +14524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1284); + lookahead == 'c') ADVANCE(1282); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14710,7 +14556,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1597); + lookahead == 'c') ADVANCE(1600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14760,7 +14606,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1596); + lookahead == 'd') ADVANCE(1279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14770,7 +14616,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1272); + lookahead == 'd') ADVANCE(1597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14800,7 +14646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1170); + lookahead == 'e') ADVANCE(1231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14810,7 +14656,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1172); + lookahead == 'e') ADVANCE(1170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14820,7 +14666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1090); + lookahead == 'e') ADVANCE(1172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14830,7 +14676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1231); + lookahead == 'e') ADVANCE(1090); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15012,7 +14858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1501); + lookahead == 'e') ADVANCE(1209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15032,7 +14878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1481); + lookahead == 'e') ADVANCE(1502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15042,7 +14888,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1209); + lookahead == 'e') ADVANCE(1570); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15052,9 +14900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1557); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1330); + lookahead == 'e') ADVANCE(1570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15064,7 +14910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1557); + lookahead == 'e') ADVANCE(1604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15074,7 +14920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1604); + lookahead == 'e') ADVANCE(1233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15084,7 +14930,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1233); + lookahead == 'e') ADVANCE(1230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15094,7 +14940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1412); + lookahead == 'e') ADVANCE(1221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15104,7 +14950,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1230); + lookahead == 'e') ADVANCE(1483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15114,7 +14960,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1220); + lookahead == 'e') ADVANCE(1324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15124,7 +14970,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1542); + lookahead == 'e') ADVANCE(1399); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(898); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15134,7 +14984,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1324); + lookahead == 'e') ADVANCE(1246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15144,11 +14994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1400); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(898); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1454); + lookahead == 'e') ADVANCE(1412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15158,7 +15004,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1245); + lookahead == 'e') ADVANCE(1325); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1403); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15171,8 +15021,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(1325); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1403); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15183,8 +15031,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15194,7 +15040,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1325); + lookahead == 'e') ADVANCE(1395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15204,7 +15050,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1396); + lookahead == 'e') ADVANCE(1332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15214,7 +15060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1332); + lookahead == 'e') ADVANCE(1541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15224,7 +15070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1278); + lookahead == 'e') ADVANCE(1404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15234,7 +15080,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1404); + lookahead == 'e') ADVANCE(1493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15244,7 +15090,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1493); + lookahead == 'e') ADVANCE(1542); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15254,7 +15102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1234); + lookahead == 'e') ADVANCE(1413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15274,9 +15122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1543); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1214); + lookahead == 'e') ADVANCE(1234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15286,7 +15132,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1413); + lookahead == 'e') ADVANCE(1283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15296,7 +15142,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); + lookahead == 'e') ADVANCE(1505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15338,7 +15184,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1518); + lookahead == 'e') ADVANCE(1519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15348,7 +15194,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1497); + lookahead == 'e') ADVANCE(1496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15358,7 +15204,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1487); + lookahead == 'e') ADVANCE(1551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15368,7 +15214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1552); + lookahead == 'e') ADVANCE(1487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15378,7 +15224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1443); + lookahead == 'e') ADVANCE(1445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15388,7 +15234,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1563); + lookahead == 'e') ADVANCE(1562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15398,7 +15244,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1507); + lookahead == 'e') ADVANCE(1506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15438,7 +15284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1565); + lookahead == 'e') ADVANCE(1564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15486,7 +15332,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'N' || lookahead == 'n') ADVANCE(895); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1246); + lookahead == 'r') ADVANCE(1245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15510,7 +15356,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(1318); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1246); + lookahead == 'r') ADVANCE(1245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15520,7 +15366,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1532); + lookahead == 'f') ADVANCE(1535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15532,7 +15378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'F' || lookahead == 'f') ADVANCE(1031); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1534); + lookahead == 'n') ADVANCE(1528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15592,7 +15438,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1550); + lookahead == 'f') ADVANCE(1549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15602,7 +15448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1461); + lookahead == 'f') ADVANCE(1462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15692,7 +15538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1270); + lookahead == 'h') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15702,7 +15548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1551); + lookahead == 'h') ADVANCE(1550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15712,9 +15558,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1279); + lookahead == 'h') ADVANCE(1277); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1388); + lookahead == 'o') ADVANCE(1387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15724,9 +15570,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1279); + lookahead == 'h') ADVANCE(1277); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1429); + lookahead == 'o') ADVANCE(1428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15736,7 +15582,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1291); + lookahead == 'h') ADVANCE(1290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15746,7 +15592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1468); + lookahead == 'h') ADVANCE(1469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15768,7 +15614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I' || lookahead == 'i') ADVANCE(1371); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1455); + lookahead == 'o') ADVANCE(1458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15788,7 +15634,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1373); + lookahead == 'i') ADVANCE(1426); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15798,7 +15646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1479); + lookahead == 'i') ADVANCE(1373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15808,7 +15656,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1612); + lookahead == 'i') ADVANCE(1479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15818,7 +15666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1411); + lookahead == 'i') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15828,9 +15676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1403); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1455); + lookahead == 'i') ADVANCE(1411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15841,6 +15687,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1403); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15850,7 +15698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1330); + lookahead == 'i') ADVANCE(1403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15860,7 +15708,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1541); + lookahead == 'i') ADVANCE(1330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15870,7 +15718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1406); + lookahead == 'i') ADVANCE(1407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15880,7 +15728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1528); + lookahead == 'i') ADVANCE(1540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15900,7 +15748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(1228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15910,7 +15758,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1228); + lookahead == 'i') ADVANCE(1423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15930,7 +15778,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1556); + lookahead == 'i') ADVANCE(1555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15960,7 +15808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1438); + lookahead == 'i') ADVANCE(1465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -15990,9 +15838,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1425); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1428); + lookahead == 'i') ADVANCE(1529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16002,7 +15848,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1464); + lookahead == 'i') ADVANCE(1440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16012,7 +15858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1236); + lookahead == 'i') ADVANCE(1466); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16022,7 +15868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1465); + lookahead == 'i') ADVANCE(1236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16032,7 +15878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1466); + lookahead == 'i') ADVANCE(1468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16062,9 +15908,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1249); + lookahead == 'k') ADVANCE(1250); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1351); + lookahead == 'm') ADVANCE(1353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16074,7 +15920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1249); + lookahead == 'k') ADVANCE(1250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16084,7 +15930,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1250); + lookahead == 'k') ADVANCE(1251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16164,7 +16010,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || lookahead == 'n') ADVANCE(973); if (lookahead == 'S' || @@ -16178,7 +16024,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); + lookahead == 'l') ADVANCE(1345); if (lookahead == 'N' || lookahead == 'n') ADVANCE(974); if (lookahead == 'S' || @@ -16236,7 +16082,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1571); + lookahead == 'l') ADVANCE(1579); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16246,9 +16094,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1580); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1529); + lookahead == 'l') ADVANCE(1579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16258,7 +16104,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1580); + lookahead == 'l') ADVANCE(1376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16268,7 +16114,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1376); + lookahead == 'l') ADVANCE(1378); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16279,8 +16127,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || lookahead == 'l') ADVANCE(1378); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16290,7 +16136,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1378); + lookahead == 'l') ADVANCE(1379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16300,7 +16146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1379); + lookahead == 'l') ADVANCE(1357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16310,7 +16156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1223); + lookahead == 'l') ADVANCE(1548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16320,7 +16166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1357); + lookahead == 'l') ADVANCE(1276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16330,7 +16176,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1277); + lookahead == 'l') ADVANCE(1264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16340,7 +16186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1549); + lookahead == 'l') ADVANCE(1561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16350,7 +16196,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1264); + lookahead == 'l') ADVANCE(1531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16360,7 +16206,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1530); + lookahead == 'l') ADVANCE(1311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16370,7 +16216,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1311); + lookahead == 'l') ADVANCE(1223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16400,7 +16246,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1351); + lookahead == 'm') ADVANCE(1353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16430,7 +16276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1217); + lookahead == 'm') ADVANCE(1307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16440,7 +16286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1307); + lookahead == 'm') ADVANCE(1217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16526,7 +16372,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1444); + lookahead == 'n') ADVANCE(1438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16628,7 +16474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1582); + lookahead == 'n') ADVANCE(1554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16638,7 +16484,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1355); + lookahead == 'n') ADVANCE(1581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16658,7 +16504,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1555); + lookahead == 'n') ADVANCE(1530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16668,7 +16514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1529); + lookahead == 'n') ADVANCE(1346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16678,7 +16524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1345); + lookahead == 'n') ADVANCE(1543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16688,7 +16534,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1544); + lookahead == 'n') ADVANCE(1241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16698,7 +16544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1547); + lookahead == 'n') ADVANCE(1546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16708,7 +16554,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1445); + lookahead == 'n') ADVANCE(1439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16718,7 +16564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1558); + lookahead == 'n') ADVANCE(1556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16738,7 +16584,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1553); + lookahead == 'n') ADVANCE(1552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16748,7 +16594,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1562); + lookahead == 'n') ADVANCE(1560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16758,7 +16604,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1265); + lookahead == 'n') ADVANCE(1304); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16768,7 +16616,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1269); + lookahead == 'n') ADVANCE(1304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16778,7 +16626,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1592); + lookahead == 'n') ADVANCE(1265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16788,7 +16636,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1241); + lookahead == 'n') ADVANCE(1269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16798,7 +16646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1235); + lookahead == 'n') ADVANCE(1356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16808,7 +16656,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1238); + lookahead == 'n') ADVANCE(1593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16818,9 +16666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1303); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1450); + lookahead == 'n') ADVANCE(1235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16830,7 +16676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1303); + lookahead == 'n') ADVANCE(1238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16840,7 +16686,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1574); + lookahead == 'n') ADVANCE(1568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16860,7 +16706,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1401); + lookahead == 'o') ADVANCE(1578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16870,7 +16716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1576); + lookahead == 'o') ADVANCE(1401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16900,7 +16746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1388); + lookahead == 'o') ADVANCE(1387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16910,7 +16756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); + lookahead == 'o') ADVANCE(1571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16920,7 +16766,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1475); + lookahead == 'o') ADVANCE(1576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16930,7 +16776,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1476); + lookahead == 'o') ADVANCE(1422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16940,7 +16786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1526); + lookahead == 'o') ADVANCE(1475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16950,7 +16796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1484); + lookahead == 'o') ADVANCE(1526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16960,7 +16806,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1422); + lookahead == 'o') ADVANCE(1476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16970,7 +16816,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1237); + lookahead == 'o') ADVANCE(1484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16980,7 +16826,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1323); + lookahead == 'o') ADVANCE(1237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -16990,7 +16836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1494); + lookahead == 'o') ADVANCE(1323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17000,9 +16846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1548); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1390); + lookahead == 'o') ADVANCE(1494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17012,7 +16856,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1389); + lookahead == 'o') ADVANCE(1547); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17022,7 +16868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1419); + lookahead == 'o') ADVANCE(1388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17032,7 +16878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1447); + lookahead == 'o') ADVANCE(1419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17042,7 +16888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1421); + lookahead == 'o') ADVANCE(1447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17052,7 +16898,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); + lookahead == 'o') ADVANCE(1431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17062,7 +16908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1511); + lookahead == 'o') ADVANCE(1421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17072,7 +16918,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1579); + lookahead == 'o') ADVANCE(1510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17082,7 +16928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1587); + lookahead == 'o') ADVANCE(1586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17092,7 +16938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1359); + lookahead == 'o') ADVANCE(1513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17102,7 +16948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1439); + lookahead == 'o') ADVANCE(1359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17112,7 +16958,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1514); + lookahead == 'o') ADVANCE(1441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17162,7 +17008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1296); + lookahead == 'p') ADVANCE(1293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17172,7 +17018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1590); + lookahead == 'q') ADVANCE(1591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17182,7 +17028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1591); + lookahead == 'q') ADVANCE(1592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17192,7 +17038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1059); + lookahead == 'r') ADVANCE(1148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17202,7 +17048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1148); + lookahead == 'r') ADVANCE(1142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17212,7 +17058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1142); + lookahead == 'r') ADVANCE(1059); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17292,7 +17138,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1448); + lookahead == 'r') ADVANCE(1449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17332,7 +17178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1449); + lookahead == 'r') ADVANCE(1454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17342,7 +17188,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1426); + lookahead == 'r') ADVANCE(1609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17352,7 +17198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1609); + lookahead == 'r') ADVANCE(1610); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17362,7 +17208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1610); + lookahead == 'r') ADVANCE(1587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17372,7 +17218,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1584); + lookahead == 'r') ADVANCE(1442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17392,7 +17238,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1251); + lookahead == 'r') ADVANCE(1352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17402,7 +17248,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1208); + lookahead == 'r') ADVANCE(1252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17412,7 +17258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); + lookahead == 'r') ADVANCE(1215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17422,7 +17268,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1221); + lookahead == 'r') ADVANCE(1414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17432,7 +17278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1414); + lookahead == 'r') ADVANCE(1544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17442,7 +17288,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1280); + lookahead == 'r') ADVANCE(1355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17452,7 +17298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1356); + lookahead == 'r') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17462,7 +17308,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1456); + lookahead == 'r') ADVANCE(1278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17472,7 +17318,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1545); + lookahead == 'r') ADVANCE(1517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17482,7 +17328,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1502); + lookahead == 'r') ADVANCE(1347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17492,7 +17338,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1346); + lookahead == 'r') ADVANCE(1460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17502,7 +17348,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1459); + lookahead == 'r') ADVANCE(1367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17512,7 +17358,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1366); + lookahead == 'r') ADVANCE(1298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17522,7 +17368,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1298); + lookahead == 'r') ADVANCE(1267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17532,7 +17378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1267); + lookahead == 'r') ADVANCE(1312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17552,7 +17398,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1312); + lookahead == 'r') ADVANCE(1208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17562,7 +17408,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1531); + lookahead == 'r') ADVANCE(1216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17572,7 +17418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1216); + lookahead == 'r') ADVANCE(1532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17582,7 +17428,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1517); + lookahead == 'r') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17662,7 +17508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1255); + lookahead == 's') ADVANCE(1297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17672,7 +17518,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1568); + lookahead == 's') ADVANCE(1255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17682,7 +17528,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1261); + lookahead == 's') ADVANCE(1566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17692,7 +17538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1262); + lookahead == 's') ADVANCE(1261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17702,7 +17548,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1281); + lookahead == 's') ADVANCE(1262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17712,7 +17558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1360); + lookahead == 's') ADVANCE(1308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17722,7 +17568,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1297); + lookahead == 's') ADVANCE(1309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17732,7 +17578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1308); + lookahead == 's') ADVANCE(1289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17742,7 +17588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1309); + lookahead == 's') ADVANCE(1360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17752,7 +17598,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1367); + lookahead == 's') ADVANCE(1366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17782,7 +17628,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1440); + lookahead == 't') ADVANCE(1054); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17792,7 +17638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1054); + lookahead == 't') ADVANCE(1056); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17802,7 +17648,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1056); + lookahead == 't') ADVANCE(1017); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17812,7 +17658,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1017); + lookahead == 't') ADVANCE(961); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17822,7 +17668,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(961); + lookahead == 't') ADVANCE(888); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17832,7 +17678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(888); + lookahead == 't') ADVANCE(1047); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17842,7 +17688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1047); + lookahead == 't') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17852,7 +17698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1299); + lookahead == 't') ADVANCE(936); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17862,7 +17708,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(936); + lookahead == 't') ADVANCE(892); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17872,7 +17718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(892); + lookahead == 't') ADVANCE(1069); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17882,7 +17728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1069); + lookahead == 't') ADVANCE(1072); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17892,7 +17738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1072); + lookahead == 't') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17902,7 +17748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(877); + lookahead == 't') ADVANCE(1201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17912,7 +17758,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1201); + lookahead == 't') ADVANCE(1050); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17922,7 +17768,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1050); + lookahead == 't') ADVANCE(1333); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17932,7 +17778,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1333); + lookahead == 't') ADVANCE(1334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17942,7 +17788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1334); + lookahead == 't') ADVANCE(1450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17952,7 +17798,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1578); + lookahead == 't') ADVANCE(1340); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17962,7 +17808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1450); + lookahead == 't') ADVANCE(1253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17972,7 +17818,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1340); + lookahead == 't') ADVANCE(1361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17982,7 +17828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1253); + lookahead == 't') ADVANCE(1386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -17992,7 +17838,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1365); + lookahead == 't') ADVANCE(1294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18002,7 +17848,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1386); + lookahead == 't') ADVANCE(1461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18012,7 +17858,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1460); + lookahead == 't') ADVANCE(1256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18022,7 +17868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1256); + lookahead == 't') ADVANCE(1257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18032,7 +17878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1257); + lookahead == 't') ADVANCE(1258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18042,7 +17888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1258); + lookahead == 't') ADVANCE(1503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18062,7 +17908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1504); + lookahead == 't') ADVANCE(1300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18072,7 +17918,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1513); + lookahead == 't') ADVANCE(1512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18082,7 +17928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1583); + lookahead == 't') ADVANCE(1580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18092,7 +17938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1294); + lookahead == 't') ADVANCE(1443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18102,7 +17948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1585); + lookahead == 't') ADVANCE(1583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18112,7 +17958,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1361); + lookahead == 't') ADVANCE(1585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18122,7 +17968,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1300); + lookahead == 't') ADVANCE(1365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18162,7 +18008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1496); + lookahead == 'u') ADVANCE(1481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18172,7 +18018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1482); + lookahead == 'u') ADVANCE(1405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18182,7 +18028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1405); + lookahead == 'u') ADVANCE(1499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18192,7 +18038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1407); + lookahead == 'u') ADVANCE(1558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18202,7 +18048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1560); + lookahead == 'u') ADVANCE(1406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18212,7 +18058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1505); + lookahead == 'u') ADVANCE(1504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18222,7 +18068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1260); + lookahead == 'u') ADVANCE(1444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18232,7 +18078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1519); + lookahead == 'u') ADVANCE(1518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18242,7 +18088,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1442); + lookahead == 'u') ADVANCE(1574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18252,7 +18098,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1573); + lookahead == 'u') ADVANCE(1260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18262,7 +18108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1559); + lookahead == 'u') ADVANCE(1557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18282,7 +18128,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1263); + lookahead == 'u') ADVANCE(1302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18292,7 +18138,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1305); + lookahead == 'u') ADVANCE(1263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18302,7 +18148,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1385); + lookahead == 'u') ADVANCE(1305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18312,7 +18158,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1226); + lookahead == 'u') ADVANCE(1385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18322,7 +18168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1397); + lookahead == 'u') ADVANCE(1226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18332,7 +18178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1393); + lookahead == 'u') ADVANCE(1394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18342,7 +18188,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1515); + lookahead == 'u') ADVANCE(1392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18352,7 +18198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1567); + lookahead == 'u') ADVANCE(1514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18362,7 +18208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1302); + lookahead == 'u') ADVANCE(1533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18372,7 +18218,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1535); + lookahead == 'u') ADVANCE(1534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18382,7 +18228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1536); + lookahead == 'u') ADVANCE(1567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18402,7 +18248,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1347); + lookahead == 'v') ADVANCE(1348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18412,7 +18258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1215); + lookahead == 'v') ADVANCE(1214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18432,7 +18278,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__identifier); if (lookahead == '.') ADVANCE(862); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1290); + lookahead == 'w') ADVANCE(1296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -18530,705 +18376,705 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2] = {.lex_state = 863}, [3] = {.lex_state = 16}, [4] = {.lex_state = 16}, - [5] = {.lex_state = 20}, + [5] = {.lex_state = 5}, [6] = {.lex_state = 5}, [7] = {.lex_state = 16}, - [8] = {.lex_state = 5}, - [9] = {.lex_state = 16}, + [8] = {.lex_state = 20}, + [9] = {.lex_state = 20}, [10] = {.lex_state = 20}, [11] = {.lex_state = 20}, [12] = {.lex_state = 20}, [13] = {.lex_state = 20}, - [14] = {.lex_state = 20}, - [15] = {.lex_state = 20}, - [16] = {.lex_state = 20}, + [14] = {.lex_state = 16}, + [15] = {.lex_state = 16}, + [16] = {.lex_state = 5}, [17] = {.lex_state = 20}, - [18] = {.lex_state = 20}, + [18] = {.lex_state = 16}, [19] = {.lex_state = 5}, - [20] = {.lex_state = 16}, - [21] = {.lex_state = 16}, - [22] = {.lex_state = 16}, - [23] = {.lex_state = 16}, - [24] = {.lex_state = 16}, - [25] = {.lex_state = 20}, - [26] = {.lex_state = 20}, - [27] = {.lex_state = 16}, - [28] = {.lex_state = 20}, - [29] = {.lex_state = 20}, - [30] = {.lex_state = 16}, + [20] = {.lex_state = 5}, + [21] = {.lex_state = 11}, + [22] = {.lex_state = 5}, + [23] = {.lex_state = 5}, + [24] = {.lex_state = 11}, + [25] = {.lex_state = 16}, + [26] = {.lex_state = 16}, + [27] = {.lex_state = 11}, + [28] = {.lex_state = 21}, + [29] = {.lex_state = 16}, + [30] = {.lex_state = 5}, [31] = {.lex_state = 16}, - [32] = {.lex_state = 16}, - [33] = {.lex_state = 5}, - [34] = {.lex_state = 5}, + [32] = {.lex_state = 11}, + [33] = {.lex_state = 11}, + [34] = {.lex_state = 16}, [35] = {.lex_state = 11}, [36] = {.lex_state = 11}, - [37] = {.lex_state = 5}, - [38] = {.lex_state = 5}, - [39] = {.lex_state = 16}, - [40] = {.lex_state = 11}, - [41] = {.lex_state = 16}, - [42] = {.lex_state = 11}, - [43] = {.lex_state = 21}, + [37] = {.lex_state = 11}, + [38] = {.lex_state = 20}, + [39] = {.lex_state = 20}, + [40] = {.lex_state = 21}, + [41] = {.lex_state = 20}, + [42] = {.lex_state = 31}, + [43] = {.lex_state = 20}, [44] = {.lex_state = 16}, - [45] = {.lex_state = 5}, - [46] = {.lex_state = 20}, - [47] = {.lex_state = 16}, - [48] = {.lex_state = 11}, - [49] = {.lex_state = 11}, - [50] = {.lex_state = 16}, - [51] = {.lex_state = 11}, - [52] = {.lex_state = 11}, - [53] = {.lex_state = 20}, - [54] = {.lex_state = 16}, - [55] = {.lex_state = 20}, - [56] = {.lex_state = 20}, - [57] = {.lex_state = 21}, - [58] = {.lex_state = 28}, - [59] = {.lex_state = 31}, - [60] = {.lex_state = 20}, - [61] = {.lex_state = 20}, - [62] = {.lex_state = 31}, - [63] = {.lex_state = 31}, + [45] = {.lex_state = 28}, + [46] = {.lex_state = 21}, + [47] = {.lex_state = 21}, + [48] = {.lex_state = 28}, + [49] = {.lex_state = 20}, + [50] = {.lex_state = 20}, + [51] = {.lex_state = 20}, + [52] = {.lex_state = 20}, + [53] = {.lex_state = 21}, + [54] = {.lex_state = 28}, + [55] = {.lex_state = 86}, + [56] = {.lex_state = 16}, + [57] = {.lex_state = 16}, + [58] = {.lex_state = 16}, + [59] = {.lex_state = 16}, + [60] = {.lex_state = 31}, + [61] = {.lex_state = 18}, + [62] = {.lex_state = 28}, + [63] = {.lex_state = 20}, [64] = {.lex_state = 21}, - [65] = {.lex_state = 21}, - [66] = {.lex_state = 86}, - [67] = {.lex_state = 21}, - [68] = {.lex_state = 20}, - [69] = {.lex_state = 20}, - [70] = {.lex_state = 20}, - [71] = {.lex_state = 21}, - [72] = {.lex_state = 21}, - [73] = {.lex_state = 21}, - [74] = {.lex_state = 18}, - [75] = {.lex_state = 28}, - [76] = {.lex_state = 28}, - [77] = {.lex_state = 28}, - [78] = {.lex_state = 21}, - [79] = {.lex_state = 28}, - [80] = {.lex_state = 21}, - [81] = {.lex_state = 21}, - [82] = {.lex_state = 28}, - [83] = {.lex_state = 28}, - [84] = {.lex_state = 21}, - [85] = {.lex_state = 28}, - [86] = {.lex_state = 28}, - [87] = {.lex_state = 21}, - [88] = {.lex_state = 28}, - [89] = {.lex_state = 28}, - [90] = {.lex_state = 21}, + [65] = {.lex_state = 31}, + [66] = {.lex_state = 21}, + [67] = {.lex_state = 18}, + [68] = {.lex_state = 16}, + [69] = {.lex_state = 86}, + [70] = {.lex_state = 16}, + [71] = {.lex_state = 20}, + [72] = {.lex_state = 20}, + [73] = {.lex_state = 18}, + [74] = {.lex_state = 20}, + [75] = {.lex_state = 20}, + [76] = {.lex_state = 16}, + [77] = {.lex_state = 16}, + [78] = {.lex_state = 18}, + [79] = {.lex_state = 27}, + [80] = {.lex_state = 20}, + [81] = {.lex_state = 18}, + [82] = {.lex_state = 16}, + [83] = {.lex_state = 16}, + [84] = {.lex_state = 20}, + [85] = {.lex_state = 86}, + [86] = {.lex_state = 18}, + [87] = {.lex_state = 32}, + [88] = {.lex_state = 16}, + [89] = {.lex_state = 7}, + [90] = {.lex_state = 7}, [91] = {.lex_state = 16}, - [92] = {.lex_state = 16}, - [93] = {.lex_state = 16}, - [94] = {.lex_state = 16}, - [95] = {.lex_state = 18}, - [96] = {.lex_state = 18}, - [97] = {.lex_state = 86}, - [98] = {.lex_state = 20}, - [99] = {.lex_state = 18}, - [100] = {.lex_state = 16}, - [101] = {.lex_state = 16}, + [92] = {.lex_state = 20}, + [93] = {.lex_state = 10}, + [94] = {.lex_state = 10}, + [95] = {.lex_state = 20}, + [96] = {.lex_state = 16}, + [97] = {.lex_state = 20}, + [98] = {.lex_state = 16}, + [99] = {.lex_state = 16}, + [100] = {.lex_state = 20}, + [101] = {.lex_state = 18}, [102] = {.lex_state = 16}, [103] = {.lex_state = 16}, - [104] = {.lex_state = 16}, - [105] = {.lex_state = 16}, + [104] = {.lex_state = 20}, + [105] = {.lex_state = 20}, [106] = {.lex_state = 16}, [107] = {.lex_state = 20}, - [108] = {.lex_state = 18}, - [109] = {.lex_state = 16}, - [110] = {.lex_state = 16}, + [108] = {.lex_state = 20}, + [109] = {.lex_state = 20}, + [110] = {.lex_state = 17}, [111] = {.lex_state = 16}, - [112] = {.lex_state = 20}, - [113] = {.lex_state = 10}, + [112] = {.lex_state = 16}, + [113] = {.lex_state = 20}, [114] = {.lex_state = 20}, - [115] = {.lex_state = 16}, - [116] = {.lex_state = 16}, - [117] = {.lex_state = 16}, - [118] = {.lex_state = 16}, - [119] = {.lex_state = 20}, - [120] = {.lex_state = 18}, - [121] = {.lex_state = 10}, - [122] = {.lex_state = 20}, - [123] = {.lex_state = 18}, + [115] = {.lex_state = 17}, + [116] = {.lex_state = 17}, + [117] = {.lex_state = 27}, + [118] = {.lex_state = 17}, + [119] = {.lex_state = 32}, + [120] = {.lex_state = 13}, + [121] = {.lex_state = 32}, + [122] = {.lex_state = 13}, + [123] = {.lex_state = 7}, [124] = {.lex_state = 17}, - [125] = {.lex_state = 20}, - [126] = {.lex_state = 18}, - [127] = {.lex_state = 16}, - [128] = {.lex_state = 18}, - [129] = {.lex_state = 20}, - [130] = {.lex_state = 27}, - [131] = {.lex_state = 32}, - [132] = {.lex_state = 20}, - [133] = {.lex_state = 20}, - [134] = {.lex_state = 20}, - [135] = {.lex_state = 20}, - [136] = {.lex_state = 20}, - [137] = {.lex_state = 20}, - [138] = {.lex_state = 20}, - [139] = {.lex_state = 20}, - [140] = {.lex_state = 16}, - [141] = {.lex_state = 20}, - [142] = {.lex_state = 18}, - [143] = {.lex_state = 7}, - [144] = {.lex_state = 86}, + [125] = {.lex_state = 10}, + [126] = {.lex_state = 27}, + [127] = {.lex_state = 39}, + [128] = {.lex_state = 6}, + [129] = {.lex_state = 17}, + [130] = {.lex_state = 17}, + [131] = {.lex_state = 6}, + [132] = {.lex_state = 27}, + [133] = {.lex_state = 19}, + [134] = {.lex_state = 40}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 6}, + [137] = {.lex_state = 22}, + [138] = {.lex_state = 39}, + [139] = {.lex_state = 19}, + [140] = {.lex_state = 7}, + [141] = {.lex_state = 10}, + [142] = {.lex_state = 7}, + [143] = {.lex_state = 39}, + [144] = {.lex_state = 16}, [145] = {.lex_state = 7}, - [146] = {.lex_state = 18}, - [147] = {.lex_state = 18}, - [148] = {.lex_state = 18}, - [149] = {.lex_state = 18}, - [150] = {.lex_state = 27}, - [151] = {.lex_state = 17}, - [152] = {.lex_state = 17}, - [153] = {.lex_state = 17}, - [154] = {.lex_state = 27}, - [155] = {.lex_state = 27}, - [156] = {.lex_state = 17}, - [157] = {.lex_state = 27}, - [158] = {.lex_state = 27}, - [159] = {.lex_state = 32}, - [160] = {.lex_state = 17}, - [161] = {.lex_state = 10}, - [162] = {.lex_state = 39}, - [163] = {.lex_state = 6}, - [164] = {.lex_state = 6}, - [165] = {.lex_state = 13}, - [166] = {.lex_state = 19}, - [167] = {.lex_state = 32}, - [168] = {.lex_state = 17}, - [169] = {.lex_state = 17}, - [170] = {.lex_state = 40}, - [171] = {.lex_state = 27}, - [172] = {.lex_state = 17}, - [173] = {.lex_state = 27}, - [174] = {.lex_state = 17}, - [175] = {.lex_state = 17}, - [176] = {.lex_state = 27}, - [177] = {.lex_state = 27}, - [178] = {.lex_state = 27}, - [179] = {.lex_state = 17}, - [180] = {.lex_state = 17}, - [181] = {.lex_state = 17}, - [182] = {.lex_state = 7}, - [183] = {.lex_state = 13}, - [184] = {.lex_state = 39}, - [185] = {.lex_state = 19}, - [186] = {.lex_state = 10}, - [187] = {.lex_state = 10}, - [188] = {.lex_state = 19}, - [189] = {.lex_state = 19}, - [190] = {.lex_state = 19}, - [191] = {.lex_state = 10}, - [192] = {.lex_state = 39}, - [193] = {.lex_state = 16}, - [194] = {.lex_state = 39}, - [195] = {.lex_state = 10}, - [196] = {.lex_state = 21}, - [197] = {.lex_state = 22}, - [198] = {.lex_state = 19}, - [199] = {.lex_state = 13}, - [200] = {.lex_state = 7}, - [201] = {.lex_state = 19}, - [202] = {.lex_state = 7}, - [203] = {.lex_state = 19}, - [204] = {.lex_state = 19}, - [205] = {.lex_state = 19}, + [146] = {.lex_state = 19}, + [147] = {.lex_state = 19}, + [148] = {.lex_state = 7}, + [149] = {.lex_state = 39}, + [150] = {.lex_state = 22}, + [151] = {.lex_state = 40}, + [152] = {.lex_state = 10}, + [153] = {.lex_state = 40}, + [154] = {.lex_state = 21}, + [155] = {.lex_state = 19}, + [156] = {.lex_state = 10}, + [157] = {.lex_state = 10}, + [158] = {.lex_state = 10}, + [159] = {.lex_state = 21}, + [160] = {.lex_state = 19}, + [161] = {.lex_state = 12}, + [162] = {.lex_state = 12}, + [163] = {.lex_state = 19}, + [164] = {.lex_state = 13}, + [165] = {.lex_state = 87}, + [166] = {.lex_state = 21}, + [167] = {.lex_state = 13}, + [168] = {.lex_state = 13}, + [169] = {.lex_state = 12}, + [170] = {.lex_state = 87}, + [171] = {.lex_state = 87}, + [172] = {.lex_state = 15}, + [173] = {.lex_state = 87}, + [174] = {.lex_state = 18}, + [175] = {.lex_state = 15}, + [176] = {.lex_state = 87}, + [177] = {.lex_state = 19}, + [178] = {.lex_state = 87}, + [179] = {.lex_state = 87}, + [180] = {.lex_state = 87}, + [181] = {.lex_state = 87}, + [182] = {.lex_state = 87}, + [183] = {.lex_state = 87}, + [184] = {.lex_state = 87}, + [185] = {.lex_state = 13}, + [186] = {.lex_state = 13}, + [187] = {.lex_state = 21}, + [188] = {.lex_state = 14}, + [189] = {.lex_state = 14}, + [190] = {.lex_state = 18}, + [191] = {.lex_state = 28}, + [192] = {.lex_state = 13}, + [193] = {.lex_state = 6}, + [194] = {.lex_state = 6}, + [195] = {.lex_state = 87}, + [196] = {.lex_state = 87}, + [197] = {.lex_state = 19}, + [198] = {.lex_state = 6}, + [199] = {.lex_state = 6}, + [200] = {.lex_state = 28}, + [201] = {.lex_state = 87}, + [202] = {.lex_state = 87}, + [203] = {.lex_state = 87}, + [204] = {.lex_state = 87}, + [205] = {.lex_state = 87}, [206] = {.lex_state = 12}, - [207] = {.lex_state = 39}, - [208] = {.lex_state = 19}, - [209] = {.lex_state = 19}, - [210] = {.lex_state = 19}, - [211] = {.lex_state = 19}, - [212] = {.lex_state = 21}, - [213] = {.lex_state = 10}, - [214] = {.lex_state = 12}, - [215] = {.lex_state = 39}, - [216] = {.lex_state = 39}, - [217] = {.lex_state = 39}, - [218] = {.lex_state = 40}, - [219] = {.lex_state = 40}, - [220] = {.lex_state = 39}, - [221] = {.lex_state = 22}, - [222] = {.lex_state = 39}, - [223] = {.lex_state = 39}, - [224] = {.lex_state = 7}, - [225] = {.lex_state = 6}, - [226] = {.lex_state = 7}, - [227] = {.lex_state = 7}, - [228] = {.lex_state = 87}, - [229] = {.lex_state = 13}, - [230] = {.lex_state = 15}, - [231] = {.lex_state = 6}, - [232] = {.lex_state = 21}, - [233] = {.lex_state = 6}, - [234] = {.lex_state = 13}, - [235] = {.lex_state = 13}, - [236] = {.lex_state = 13}, - [237] = {.lex_state = 18}, - [238] = {.lex_state = 14}, - [239] = {.lex_state = 13}, - [240] = {.lex_state = 14}, - [241] = {.lex_state = 87}, - [242] = {.lex_state = 15}, - [243] = {.lex_state = 28}, - [244] = {.lex_state = 18}, - [245] = {.lex_state = 87}, - [246] = {.lex_state = 87}, - [247] = {.lex_state = 21}, - [248] = {.lex_state = 87}, - [249] = {.lex_state = 6}, - [250] = {.lex_state = 6}, - [251] = {.lex_state = 87}, - [252] = {.lex_state = 87}, - [253] = {.lex_state = 87}, - [254] = {.lex_state = 19}, - [255] = {.lex_state = 12}, - [256] = {.lex_state = 87}, - [257] = {.lex_state = 87}, - [258] = {.lex_state = 87}, - [259] = {.lex_state = 87}, - [260] = {.lex_state = 19}, - [261] = {.lex_state = 87}, - [262] = {.lex_state = 87}, - [263] = {.lex_state = 87}, - [264] = {.lex_state = 87}, - [265] = {.lex_state = 87}, - [266] = {.lex_state = 87}, - [267] = {.lex_state = 87}, - [268] = {.lex_state = 28}, - [269] = {.lex_state = 12}, - [270] = {.lex_state = 88}, - [271] = {.lex_state = 21}, - [272] = {.lex_state = 21}, - [273] = {.lex_state = 21}, - [274] = {.lex_state = 88}, - [275] = {.lex_state = 17}, - [276] = {.lex_state = 21}, - [277] = {.lex_state = 18}, - [278] = {.lex_state = 27}, - [279] = {.lex_state = 18}, - [280] = {.lex_state = 23}, - [281] = {.lex_state = 21}, - [282] = {.lex_state = 23}, - [283] = {.lex_state = 12}, - [284] = {.lex_state = 12}, - [285] = {.lex_state = 12}, - [286] = {.lex_state = 14}, - [287] = {.lex_state = 6}, - [288] = {.lex_state = 28}, - [289] = {.lex_state = 12}, - [290] = {.lex_state = 35}, - [291] = {.lex_state = 35}, - [292] = {.lex_state = 35}, - [293] = {.lex_state = 35}, - [294] = {.lex_state = 15}, - [295] = {.lex_state = 17}, - [296] = {.lex_state = 88}, - [297] = {.lex_state = 88}, - [298] = {.lex_state = 27}, - [299] = {.lex_state = 26}, - [300] = {.lex_state = 28}, - [301] = {.lex_state = 21}, - [302] = {.lex_state = 28}, - [303] = {.lex_state = 28}, - [304] = {.lex_state = 28}, - [305] = {.lex_state = 28}, - [306] = {.lex_state = 28}, - [307] = {.lex_state = 14}, - [308] = {.lex_state = 27}, - [309] = {.lex_state = 21}, - [310] = {.lex_state = 28}, - [311] = {.lex_state = 19}, - [312] = {.lex_state = 28}, - [313] = {.lex_state = 21}, - [314] = {.lex_state = 28}, - [315] = {.lex_state = 28}, - [316] = {.lex_state = 21}, - [317] = {.lex_state = 21}, - [318] = {.lex_state = 21}, - [319] = {.lex_state = 18}, - [320] = {.lex_state = 18}, - [321] = {.lex_state = 18}, - [322] = {.lex_state = 15}, - [323] = {.lex_state = 18}, - [324] = {.lex_state = 21}, - [325] = {.lex_state = 28}, - [326] = {.lex_state = 28}, - [327] = {.lex_state = 21}, - [328] = {.lex_state = 28}, - [329] = {.lex_state = 21}, - [330] = {.lex_state = 21}, - [331] = {.lex_state = 21}, - [332] = {.lex_state = 28}, - [333] = {.lex_state = 26}, - [334] = {.lex_state = 18}, - [335] = {.lex_state = 14}, - [336] = {.lex_state = 14}, - [337] = {.lex_state = 14}, - [338] = {.lex_state = 19}, - [339] = {.lex_state = 15}, - [340] = {.lex_state = 21}, - [341] = {.lex_state = 19}, - [342] = {.lex_state = 21}, - [343] = {.lex_state = 21}, - [344] = {.lex_state = 15}, + [207] = {.lex_state = 21}, + [208] = {.lex_state = 88}, + [209] = {.lex_state = 23}, + [210] = {.lex_state = 17}, + [211] = {.lex_state = 28}, + [212] = {.lex_state = 88}, + [213] = {.lex_state = 27}, + [214] = {.lex_state = 15}, + [215] = {.lex_state = 18}, + [216] = {.lex_state = 18}, + [217] = {.lex_state = 17}, + [218] = {.lex_state = 12}, + [219] = {.lex_state = 12}, + [220] = {.lex_state = 12}, + [221] = {.lex_state = 21}, + [222] = {.lex_state = 12}, + [223] = {.lex_state = 14}, + [224] = {.lex_state = 6}, + [225] = {.lex_state = 35}, + [226] = {.lex_state = 21}, + [227] = {.lex_state = 88}, + [228] = {.lex_state = 35}, + [229] = {.lex_state = 35}, + [230] = {.lex_state = 35}, + [231] = {.lex_state = 21}, + [232] = {.lex_state = 23}, + [233] = {.lex_state = 27}, + [234] = {.lex_state = 21}, + [235] = {.lex_state = 88}, + [236] = {.lex_state = 28}, + [237] = {.lex_state = 28}, + [238] = {.lex_state = 21}, + [239] = {.lex_state = 21}, + [240] = {.lex_state = 28}, + [241] = {.lex_state = 21}, + [242] = {.lex_state = 21}, + [243] = {.lex_state = 21}, + [244] = {.lex_state = 21}, + [245] = {.lex_state = 21}, + [246] = {.lex_state = 18}, + [247] = {.lex_state = 18}, + [248] = {.lex_state = 18}, + [249] = {.lex_state = 18}, + [250] = {.lex_state = 28}, + [251] = {.lex_state = 28}, + [252] = {.lex_state = 28}, + [253] = {.lex_state = 28}, + [254] = {.lex_state = 28}, + [255] = {.lex_state = 44}, + [256] = {.lex_state = 21}, + [257] = {.lex_state = 17}, + [258] = {.lex_state = 17}, + [259] = {.lex_state = 21}, + [260] = {.lex_state = 44}, + [261] = {.lex_state = 28}, + [262] = {.lex_state = 14}, + [263] = {.lex_state = 21}, + [264] = {.lex_state = 21}, + [265] = {.lex_state = 21}, + [266] = {.lex_state = 21}, + [267] = {.lex_state = 27}, + [268] = {.lex_state = 15}, + [269] = {.lex_state = 15}, + [270] = {.lex_state = 28}, + [271] = {.lex_state = 18}, + [272] = {.lex_state = 19}, + [273] = {.lex_state = 15}, + [274] = {.lex_state = 15}, + [275] = {.lex_state = 26}, + [276] = {.lex_state = 14}, + [277] = {.lex_state = 28}, + [278] = {.lex_state = 21}, + [279] = {.lex_state = 28}, + [280] = {.lex_state = 21}, + [281] = {.lex_state = 28}, + [282] = {.lex_state = 19}, + [283] = {.lex_state = 21}, + [284] = {.lex_state = 14}, + [285] = {.lex_state = 14}, + [286] = {.lex_state = 28}, + [287] = {.lex_state = 28}, + [288] = {.lex_state = 26}, + [289] = {.lex_state = 15}, + [290] = {.lex_state = 28}, + [291] = {.lex_state = 28}, + [292] = {.lex_state = 21}, + [293] = {.lex_state = 19}, + [294] = {.lex_state = 21}, + [295] = {.lex_state = 14}, + [296] = {.lex_state = 28}, + [297] = {.lex_state = 28}, + [298] = {.lex_state = 39}, + [299] = {.lex_state = 18}, + [300] = {.lex_state = 18}, + [301] = {.lex_state = 18}, + [302] = {.lex_state = 18}, + [303] = {.lex_state = 18}, + [304] = {.lex_state = 18}, + [305] = {.lex_state = 18}, + [306] = {.lex_state = 18}, + [307] = {.lex_state = 27}, + [308] = {.lex_state = 18}, + [309] = {.lex_state = 18}, + [310] = {.lex_state = 18}, + [311] = {.lex_state = 17}, + [312] = {.lex_state = 18}, + [313] = {.lex_state = 18}, + [314] = {.lex_state = 18}, + [315] = {.lex_state = 18}, + [316] = {.lex_state = 36}, + [317] = {.lex_state = 18}, + [318] = {.lex_state = 18}, + [319] = {.lex_state = 17}, + [320] = {.lex_state = 17}, + [321] = {.lex_state = 17}, + [322] = {.lex_state = 17}, + [323] = {.lex_state = 19}, + [324] = {.lex_state = 19}, + [325] = {.lex_state = 39}, + [326] = {.lex_state = 36}, + [327] = {.lex_state = 36}, + [328] = {.lex_state = 36}, + [329] = {.lex_state = 17}, + [330] = {.lex_state = 27}, + [331] = {.lex_state = 19}, + [332] = {.lex_state = 27}, + [333] = {.lex_state = 19}, + [334] = {.lex_state = 27}, + [335] = {.lex_state = 19}, + [336] = {.lex_state = 17}, + [337] = {.lex_state = 27}, + [338] = {.lex_state = 17}, + [339] = {.lex_state = 17}, + [340] = {.lex_state = 17}, + [341] = {.lex_state = 17}, + [342] = {.lex_state = 27}, + [343] = {.lex_state = 17}, + [344] = {.lex_state = 19}, [345] = {.lex_state = 17}, - [346] = {.lex_state = 14}, - [347] = {.lex_state = 15}, - [348] = {.lex_state = 28}, - [349] = {.lex_state = 21}, - [350] = {.lex_state = 28}, - [351] = {.lex_state = 28}, - [352] = {.lex_state = 28}, - [353] = {.lex_state = 21}, + [346] = {.lex_state = 27}, + [347] = {.lex_state = 27}, + [348] = {.lex_state = 17}, + [349] = {.lex_state = 17}, + [350] = {.lex_state = 27}, + [351] = {.lex_state = 17}, + [352] = {.lex_state = 27}, + [353] = {.lex_state = 17}, [354] = {.lex_state = 17}, - [355] = {.lex_state = 28}, - [356] = {.lex_state = 21}, - [357] = {.lex_state = 44}, - [358] = {.lex_state = 44}, - [359] = {.lex_state = 15}, - [360] = {.lex_state = 21}, - [361] = {.lex_state = 36}, - [362] = {.lex_state = 18}, - [363] = {.lex_state = 18}, - [364] = {.lex_state = 18}, - [365] = {.lex_state = 18}, - [366] = {.lex_state = 18}, - [367] = {.lex_state = 18}, - [368] = {.lex_state = 18}, - [369] = {.lex_state = 19}, - [370] = {.lex_state = 19}, - [371] = {.lex_state = 18}, - [372] = {.lex_state = 36}, - [373] = {.lex_state = 39}, - [374] = {.lex_state = 18}, - [375] = {.lex_state = 18}, - [376] = {.lex_state = 18}, - [377] = {.lex_state = 39}, - [378] = {.lex_state = 36}, - [379] = {.lex_state = 36}, - [380] = {.lex_state = 17}, - [381] = {.lex_state = 17}, - [382] = {.lex_state = 18}, - [383] = {.lex_state = 18}, - [384] = {.lex_state = 18}, - [385] = {.lex_state = 18}, - [386] = {.lex_state = 18}, - [387] = {.lex_state = 18}, - [388] = {.lex_state = 27}, - [389] = {.lex_state = 17}, - [390] = {.lex_state = 17}, - [391] = {.lex_state = 17}, - [392] = {.lex_state = 27}, - [393] = {.lex_state = 27}, - [394] = {.lex_state = 41}, - [395] = {.lex_state = 27}, - [396] = {.lex_state = 17}, + [355] = {.lex_state = 27}, + [356] = {.lex_state = 27}, + [357] = {.lex_state = 33}, + [358] = {.lex_state = 27}, + [359] = {.lex_state = 45}, + [360] = {.lex_state = 27}, + [361] = {.lex_state = 17}, + [362] = {.lex_state = 19}, + [363] = {.lex_state = 17}, + [364] = {.lex_state = 27}, + [365] = {.lex_state = 39}, + [366] = {.lex_state = 27}, + [367] = {.lex_state = 27}, + [368] = {.lex_state = 45}, + [369] = {.lex_state = 29}, + [370] = {.lex_state = 27}, + [371] = {.lex_state = 41}, + [372] = {.lex_state = 17}, + [373] = {.lex_state = 41}, + [374] = {.lex_state = 41}, + [375] = {.lex_state = 27}, + [376] = {.lex_state = 21}, + [377] = {.lex_state = 41}, + [378] = {.lex_state = 17}, + [379] = {.lex_state = 19}, + [380] = {.lex_state = 39}, + [381] = {.lex_state = 39}, + [382] = {.lex_state = 19}, + [383] = {.lex_state = 19}, + [384] = {.lex_state = 19}, + [385] = {.lex_state = 39}, + [386] = {.lex_state = 29}, + [387] = {.lex_state = 39}, + [388] = {.lex_state = 39}, + [389] = {.lex_state = 33}, + [390] = {.lex_state = 19}, + [391] = {.lex_state = 39}, + [392] = {.lex_state = 21}, + [393] = {.lex_state = 33}, + [394] = {.lex_state = 19}, + [395] = {.lex_state = 19}, + [396] = {.lex_state = 39}, [397] = {.lex_state = 19}, - [398] = {.lex_state = 27}, - [399] = {.lex_state = 45}, - [400] = {.lex_state = 27}, - [401] = {.lex_state = 41}, - [402] = {.lex_state = 27}, - [403] = {.lex_state = 27}, + [398] = {.lex_state = 21}, + [399] = {.lex_state = 51}, + [400] = {.lex_state = 39}, + [401] = {.lex_state = 39}, + [402] = {.lex_state = 39}, + [403] = {.lex_state = 19}, [404] = {.lex_state = 19}, - [405] = {.lex_state = 27}, - [406] = {.lex_state = 19}, - [407] = {.lex_state = 27}, - [408] = {.lex_state = 27}, - [409] = {.lex_state = 17}, + [405] = {.lex_state = 34}, + [406] = {.lex_state = 39}, + [407] = {.lex_state = 16}, + [408] = {.lex_state = 19}, + [409] = {.lex_state = 51}, [410] = {.lex_state = 19}, - [411] = {.lex_state = 45}, - [412] = {.lex_state = 17}, - [413] = {.lex_state = 17}, - [414] = {.lex_state = 17}, - [415] = {.lex_state = 17}, - [416] = {.lex_state = 27}, - [417] = {.lex_state = 27}, - [418] = {.lex_state = 27}, - [419] = {.lex_state = 27}, - [420] = {.lex_state = 41}, - [421] = {.lex_state = 27}, - [422] = {.lex_state = 17}, - [423] = {.lex_state = 33}, - [424] = {.lex_state = 39}, - [425] = {.lex_state = 17}, - [426] = {.lex_state = 41}, - [427] = {.lex_state = 17}, - [428] = {.lex_state = 17}, - [429] = {.lex_state = 17}, - [430] = {.lex_state = 21}, - [431] = {.lex_state = 17}, - [432] = {.lex_state = 27}, - [433] = {.lex_state = 27}, - [434] = {.lex_state = 17}, - [435] = {.lex_state = 29}, - [436] = {.lex_state = 17}, - [437] = {.lex_state = 17}, - [438] = {.lex_state = 17}, - [439] = {.lex_state = 27}, - [440] = {.lex_state = 17}, - [441] = {.lex_state = 19}, - [442] = {.lex_state = 19}, - [443] = {.lex_state = 29}, - [444] = {.lex_state = 51}, - [445] = {.lex_state = 39}, - [446] = {.lex_state = 33}, - [447] = {.lex_state = 19}, - [448] = {.lex_state = 33}, - [449] = {.lex_state = 21}, + [411] = {.lex_state = 39}, + [412] = {.lex_state = 39}, + [413] = {.lex_state = 30}, + [414] = {.lex_state = 19}, + [415] = {.lex_state = 39}, + [416] = {.lex_state = 19}, + [417] = {.lex_state = 39}, + [418] = {.lex_state = 39}, + [419] = {.lex_state = 39}, + [420] = {.lex_state = 39}, + [421] = {.lex_state = 39}, + [422] = {.lex_state = 29}, + [423] = {.lex_state = 19}, + [424] = {.lex_state = 29}, + [425] = {.lex_state = 19}, + [426] = {.lex_state = 19}, + [427] = {.lex_state = 34}, + [428] = {.lex_state = 16}, + [429] = {.lex_state = 34}, + [430] = {.lex_state = 30}, + [431] = {.lex_state = 19}, + [432] = {.lex_state = 19}, + [433] = {.lex_state = 30}, + [434] = {.lex_state = 30}, + [435] = {.lex_state = 8}, + [436] = {.lex_state = 8}, + [437] = {.lex_state = 21}, + [438] = {.lex_state = 9}, + [439] = {.lex_state = 9}, + [440] = {.lex_state = 16}, + [441] = {.lex_state = 8}, + [442] = {.lex_state = 16}, + [443] = {.lex_state = 16}, + [444] = {.lex_state = 16}, + [445] = {.lex_state = 16}, + [446] = {.lex_state = 16}, + [447] = {.lex_state = 16}, + [448] = {.lex_state = 16}, + [449] = {.lex_state = 16}, [450] = {.lex_state = 16}, - [451] = {.lex_state = 19}, - [452] = {.lex_state = 39}, - [453] = {.lex_state = 19}, - [454] = {.lex_state = 30}, - [455] = {.lex_state = 29}, - [456] = {.lex_state = 19}, - [457] = {.lex_state = 19}, - [458] = {.lex_state = 29}, - [459] = {.lex_state = 39}, - [460] = {.lex_state = 39}, - [461] = {.lex_state = 19}, - [462] = {.lex_state = 19}, - [463] = {.lex_state = 19}, - [464] = {.lex_state = 19}, - [465] = {.lex_state = 19}, - [466] = {.lex_state = 39}, - [467] = {.lex_state = 19}, - [468] = {.lex_state = 19}, - [469] = {.lex_state = 39}, - [470] = {.lex_state = 29}, - [471] = {.lex_state = 39}, - [472] = {.lex_state = 34}, - [473] = {.lex_state = 29}, - [474] = {.lex_state = 39}, - [475] = {.lex_state = 39}, - [476] = {.lex_state = 39}, - [477] = {.lex_state = 29}, - [478] = {.lex_state = 39}, - [479] = {.lex_state = 19}, - [480] = {.lex_state = 19}, - [481] = {.lex_state = 39}, - [482] = {.lex_state = 39}, - [483] = {.lex_state = 29}, - [484] = {.lex_state = 39}, - [485] = {.lex_state = 39}, - [486] = {.lex_state = 19}, - [487] = {.lex_state = 39}, - [488] = {.lex_state = 51}, - [489] = {.lex_state = 29}, - [490] = {.lex_state = 29}, - [491] = {.lex_state = 39}, - [492] = {.lex_state = 39}, - [493] = {.lex_state = 39}, - [494] = {.lex_state = 21}, - [495] = {.lex_state = 19}, - [496] = {.lex_state = 29}, - [497] = {.lex_state = 30}, - [498] = {.lex_state = 16}, - [499] = {.lex_state = 30}, - [500] = {.lex_state = 30}, - [501] = {.lex_state = 30}, - [502] = {.lex_state = 30}, - [503] = {.lex_state = 34}, - [504] = {.lex_state = 30}, - [505] = {.lex_state = 19}, - [506] = {.lex_state = 34}, - [507] = {.lex_state = 30}, - [508] = {.lex_state = 30}, - [509] = {.lex_state = 30}, - [510] = {.lex_state = 19}, - [511] = {.lex_state = 8}, - [512] = {.lex_state = 30}, - [513] = {.lex_state = 8}, - [514] = {.lex_state = 8}, - [515] = {.lex_state = 9}, + [451] = {.lex_state = 16}, + [452] = {.lex_state = 16}, + [453] = {.lex_state = 24}, + [454] = {.lex_state = 16}, + [455] = {.lex_state = 16}, + [456] = {.lex_state = 8}, + [457] = {.lex_state = 16}, + [458] = {.lex_state = 16}, + [459] = {.lex_state = 16}, + [460] = {.lex_state = 16}, + [461] = {.lex_state = 24}, + [462] = {.lex_state = 8}, + [463] = {.lex_state = 16}, + [464] = {.lex_state = 16}, + [465] = {.lex_state = 16}, + [466] = {.lex_state = 8}, + [467] = {.lex_state = 16}, + [468] = {.lex_state = 16}, + [469] = {.lex_state = 16}, + [470] = {.lex_state = 16}, + [471] = {.lex_state = 16}, + [472] = {.lex_state = 16}, + [473] = {.lex_state = 8}, + [474] = {.lex_state = 16}, + [475] = {.lex_state = 16}, + [476] = {.lex_state = 8}, + [477] = {.lex_state = 16}, + [478] = {.lex_state = 16}, + [479] = {.lex_state = 16}, + [480] = {.lex_state = 16}, + [481] = {.lex_state = 16}, + [482] = {.lex_state = 16}, + [483] = {.lex_state = 16}, + [484] = {.lex_state = 16}, + [485] = {.lex_state = 9}, + [486] = {.lex_state = 16}, + [487] = {.lex_state = 16}, + [488] = {.lex_state = 16}, + [489] = {.lex_state = 16}, + [490] = {.lex_state = 16}, + [491] = {.lex_state = 16}, + [492] = {.lex_state = 16}, + [493] = {.lex_state = 16}, + [494] = {.lex_state = 9}, + [495] = {.lex_state = 16}, + [496] = {.lex_state = 9}, + [497] = {.lex_state = 16}, + [498] = {.lex_state = 9}, + [499] = {.lex_state = 29}, + [500] = {.lex_state = 29}, + [501] = {.lex_state = 25}, + [502] = {.lex_state = 16}, + [503] = {.lex_state = 9}, + [504] = {.lex_state = 16}, + [505] = {.lex_state = 16}, + [506] = {.lex_state = 16}, + [507] = {.lex_state = 9}, + [508] = {.lex_state = 25}, + [509] = {.lex_state = 16}, + [510] = {.lex_state = 16}, + [511] = {.lex_state = 16}, + [512] = {.lex_state = 16}, + [513] = {.lex_state = 16}, + [514] = {.lex_state = 16}, + [515] = {.lex_state = 16}, [516] = {.lex_state = 16}, - [517] = {.lex_state = 21}, - [518] = {.lex_state = 9}, - [519] = {.lex_state = 16}, + [517] = {.lex_state = 16}, + [518] = {.lex_state = 16}, + [519] = {.lex_state = 37}, [520] = {.lex_state = 16}, - [521] = {.lex_state = 16}, - [522] = {.lex_state = 8}, + [521] = {.lex_state = 30}, + [522] = {.lex_state = 30}, [523] = {.lex_state = 16}, - [524] = {.lex_state = 16}, - [525] = {.lex_state = 16}, + [524] = {.lex_state = 29}, + [525] = {.lex_state = 37}, [526] = {.lex_state = 16}, - [527] = {.lex_state = 16}, + [527] = {.lex_state = 37}, [528] = {.lex_state = 16}, [529] = {.lex_state = 16}, [530] = {.lex_state = 16}, [531] = {.lex_state = 16}, [532] = {.lex_state = 16}, - [533] = {.lex_state = 16}, - [534] = {.lex_state = 16}, - [535] = {.lex_state = 16}, - [536] = {.lex_state = 16}, - [537] = {.lex_state = 16}, - [538] = {.lex_state = 8}, - [539] = {.lex_state = 16}, - [540] = {.lex_state = 16}, - [541] = {.lex_state = 16}, - [542] = {.lex_state = 16}, - [543] = {.lex_state = 16}, - [544] = {.lex_state = 16}, - [545] = {.lex_state = 16}, - [546] = {.lex_state = 16}, - [547] = {.lex_state = 16}, - [548] = {.lex_state = 16}, - [549] = {.lex_state = 16}, - [550] = {.lex_state = 16}, - [551] = {.lex_state = 24}, - [552] = {.lex_state = 16}, - [553] = {.lex_state = 16}, - [554] = {.lex_state = 16}, - [555] = {.lex_state = 8}, - [556] = {.lex_state = 24}, - [557] = {.lex_state = 9}, - [558] = {.lex_state = 16}, - [559] = {.lex_state = 16}, - [560] = {.lex_state = 16}, - [561] = {.lex_state = 16}, - [562] = {.lex_state = 8}, - [563] = {.lex_state = 16}, - [564] = {.lex_state = 16}, - [565] = {.lex_state = 16}, - [566] = {.lex_state = 16}, - [567] = {.lex_state = 16}, - [568] = {.lex_state = 8}, - [569] = {.lex_state = 16}, - [570] = {.lex_state = 16}, - [571] = {.lex_state = 29}, - [572] = {.lex_state = 9}, - [573] = {.lex_state = 9}, - [574] = {.lex_state = 9}, - [575] = {.lex_state = 16}, - [576] = {.lex_state = 16}, - [577] = {.lex_state = 29}, - [578] = {.lex_state = 25}, - [579] = {.lex_state = 16}, - [580] = {.lex_state = 16}, - [581] = {.lex_state = 9}, - [582] = {.lex_state = 16}, - [583] = {.lex_state = 9}, - [584] = {.lex_state = 25}, - [585] = {.lex_state = 16}, - [586] = {.lex_state = 16}, - [587] = {.lex_state = 16}, - [588] = {.lex_state = 16}, - [589] = {.lex_state = 16}, - [590] = {.lex_state = 16}, - [591] = {.lex_state = 30}, - [592] = {.lex_state = 16}, - [593] = {.lex_state = 16}, - [594] = {.lex_state = 16}, - [595] = {.lex_state = 16}, - [596] = {.lex_state = 16}, - [597] = {.lex_state = 29}, - [598] = {.lex_state = 16}, - [599] = {.lex_state = 16}, - [600] = {.lex_state = 16}, - [601] = {.lex_state = 16}, - [602] = {.lex_state = 37}, - [603] = {.lex_state = 16}, - [604] = {.lex_state = 37}, - [605] = {.lex_state = 16}, - [606] = {.lex_state = 30}, - [607] = {.lex_state = 16}, - [608] = {.lex_state = 37}, - [609] = {.lex_state = 37}, - [610] = {.lex_state = 16}, - [611] = {.lex_state = 38}, - [612] = {.lex_state = 29}, - [613] = {.lex_state = 38}, - [614] = {.lex_state = 29}, - [615] = {.lex_state = 29}, - [616] = {.lex_state = 29}, - [617] = {.lex_state = 29}, - [618] = {.lex_state = 29}, - [619] = {.lex_state = 30}, - [620] = {.lex_state = 29}, - [621] = {.lex_state = 29}, - [622] = {.lex_state = 29}, - [623] = {.lex_state = 38}, - [624] = {.lex_state = 38}, - [625] = {.lex_state = 29}, - [626] = {.lex_state = 29}, - [627] = {.lex_state = 29}, - [628] = {.lex_state = 29}, - [629] = {.lex_state = 29}, - [630] = {.lex_state = 29}, - [631] = {.lex_state = 29}, - [632] = {.lex_state = 29}, - [633] = {.lex_state = 29}, - [634] = {.lex_state = 29}, - [635] = {.lex_state = 30}, - [636] = {.lex_state = 30}, - [637] = {.lex_state = 30}, - [638] = {.lex_state = 30}, - [639] = {.lex_state = 30}, - [640] = {.lex_state = 30}, - [641] = {.lex_state = 30}, - [642] = {.lex_state = 30}, - [643] = {.lex_state = 30}, - [644] = {.lex_state = 30}, - [645] = {.lex_state = 30}, - [646] = {.lex_state = 30}, - [647] = {.lex_state = 30}, - [648] = {.lex_state = 30}, - [649] = {.lex_state = 30}, - [650] = {.lex_state = 30}, - [651] = {.lex_state = 30}, - [652] = {.lex_state = 30}, - [653] = {.lex_state = 30}, - [654] = {.lex_state = 54}, - [655] = {.lex_state = 54}, - [656] = {.lex_state = 54}, - [657] = {.lex_state = 50}, - [658] = {.lex_state = 50}, - [659] = {.lex_state = 47}, - [660] = {.lex_state = 47}, - [661] = {.lex_state = 47}, - [662] = {.lex_state = 47}, - [663] = {.lex_state = 47}, - [664] = {.lex_state = 47}, - [665] = {.lex_state = 47}, - [666] = {.lex_state = 47}, - [667] = {.lex_state = 47}, - [668] = {.lex_state = 863}, - [669] = {.lex_state = 47}, - [670] = {.lex_state = 47}, - [671] = {.lex_state = 47}, - [672] = {.lex_state = 47}, - [673] = {.lex_state = 47}, - [674] = {.lex_state = 47}, - [675] = {.lex_state = 47}, - [676] = {.lex_state = 47}, - [677] = {.lex_state = 863}, - [678] = {.lex_state = 47}, - [679] = {.lex_state = 47}, - [680] = {.lex_state = 47}, - [681] = {.lex_state = 47}, - [682] = {.lex_state = 47}, - [683] = {.lex_state = 47}, - [684] = {.lex_state = 47}, - [685] = {.lex_state = 47}, - [686] = {.lex_state = 47}, - [687] = {.lex_state = 47}, - [688] = {.lex_state = 47}, - [689] = {.lex_state = 47}, - [690] = {.lex_state = 46}, - [691] = {.lex_state = 46}, - [692] = {.lex_state = 46}, + [533] = {.lex_state = 37}, + [534] = {.lex_state = 29}, + [535] = {.lex_state = 29}, + [536] = {.lex_state = 29}, + [537] = {.lex_state = 29}, + [538] = {.lex_state = 29}, + [539] = {.lex_state = 29}, + [540] = {.lex_state = 38}, + [541] = {.lex_state = 30}, + [542] = {.lex_state = 38}, + [543] = {.lex_state = 29}, + [544] = {.lex_state = 38}, + [545] = {.lex_state = 38}, + [546] = {.lex_state = 29}, + [547] = {.lex_state = 29}, + [548] = {.lex_state = 29}, + [549] = {.lex_state = 29}, + [550] = {.lex_state = 29}, + [551] = {.lex_state = 29}, + [552] = {.lex_state = 29}, + [553] = {.lex_state = 29}, + [554] = {.lex_state = 29}, + [555] = {.lex_state = 29}, + [556] = {.lex_state = 29}, + [557] = {.lex_state = 29}, + [558] = {.lex_state = 30}, + [559] = {.lex_state = 30}, + [560] = {.lex_state = 30}, + [561] = {.lex_state = 30}, + [562] = {.lex_state = 30}, + [563] = {.lex_state = 30}, + [564] = {.lex_state = 30}, + [565] = {.lex_state = 30}, + [566] = {.lex_state = 30}, + [567] = {.lex_state = 30}, + [568] = {.lex_state = 30}, + [569] = {.lex_state = 30}, + [570] = {.lex_state = 30}, + [571] = {.lex_state = 30}, + [572] = {.lex_state = 30}, + [573] = {.lex_state = 30}, + [574] = {.lex_state = 30}, + [575] = {.lex_state = 30}, + [576] = {.lex_state = 30}, + [577] = {.lex_state = 54}, + [578] = {.lex_state = 54}, + [579] = {.lex_state = 54}, + [580] = {.lex_state = 50}, + [581] = {.lex_state = 50}, + [582] = {.lex_state = 47}, + [583] = {.lex_state = 863}, + [584] = {.lex_state = 47}, + [585] = {.lex_state = 47}, + [586] = {.lex_state = 47}, + [587] = {.lex_state = 47}, + [588] = {.lex_state = 47}, + [589] = {.lex_state = 47}, + [590] = {.lex_state = 47}, + [591] = {.lex_state = 47}, + [592] = {.lex_state = 47}, + [593] = {.lex_state = 863}, + [594] = {.lex_state = 47}, + [595] = {.lex_state = 47}, + [596] = {.lex_state = 47}, + [597] = {.lex_state = 47}, + [598] = {.lex_state = 47}, + [599] = {.lex_state = 47}, + [600] = {.lex_state = 47}, + [601] = {.lex_state = 47}, + [602] = {.lex_state = 47}, + [603] = {.lex_state = 47}, + [604] = {.lex_state = 47}, + [605] = {.lex_state = 47}, + [606] = {.lex_state = 47}, + [607] = {.lex_state = 47}, + [608] = {.lex_state = 47}, + [609] = {.lex_state = 47}, + [610] = {.lex_state = 47}, + [611] = {.lex_state = 47}, + [612] = {.lex_state = 47}, + [613] = {.lex_state = 46}, + [614] = {.lex_state = 46}, + [615] = {.lex_state = 46}, + [616] = {.lex_state = 46}, + [617] = {.lex_state = 43}, + [618] = {.lex_state = 46}, + [619] = {.lex_state = 46}, + [620] = {.lex_state = 46}, + [621] = {.lex_state = 43}, + [622] = {.lex_state = 49}, + [623] = {.lex_state = 43}, + [624] = {.lex_state = 43}, + [625] = {.lex_state = 43}, + [626] = {.lex_state = 43}, + [627] = {.lex_state = 43}, + [628] = {.lex_state = 43}, + [629] = {.lex_state = 43}, + [630] = {.lex_state = 43}, + [631] = {.lex_state = 43}, + [632] = {.lex_state = 43}, + [633] = {.lex_state = 43}, + [634] = {.lex_state = 43}, + [635] = {.lex_state = 43}, + [636] = {.lex_state = 43}, + [637] = {.lex_state = 52}, + [638] = {.lex_state = 43}, + [639] = {.lex_state = 43}, + [640] = {.lex_state = 43}, + [641] = {.lex_state = 43}, + [642] = {.lex_state = 43}, + [643] = {.lex_state = 43}, + [644] = {.lex_state = 43}, + [645] = {.lex_state = 43}, + [646] = {.lex_state = 43}, + [647] = {.lex_state = 43}, + [648] = {.lex_state = 43}, + [649] = {.lex_state = 43}, + [650] = {.lex_state = 43}, + [651] = {.lex_state = 43}, + [652] = {.lex_state = 43}, + [653] = {.lex_state = 43}, + [654] = {.lex_state = 43}, + [655] = {.lex_state = 43}, + [656] = {.lex_state = 43}, + [657] = {.lex_state = 43}, + [658] = {.lex_state = 43}, + [659] = {.lex_state = 43}, + [660] = {.lex_state = 43}, + [661] = {.lex_state = 43}, + [662] = {.lex_state = 43}, + [663] = {.lex_state = 43}, + [664] = {.lex_state = 43}, + [665] = {.lex_state = 43}, + [666] = {.lex_state = 43}, + [667] = {.lex_state = 43}, + [668] = {.lex_state = 43}, + [669] = {.lex_state = 43}, + [670] = {.lex_state = 43}, + [671] = {.lex_state = 43}, + [672] = {.lex_state = 43}, + [673] = {.lex_state = 43}, + [674] = {.lex_state = 43}, + [675] = {.lex_state = 43}, + [676] = {.lex_state = 43}, + [677] = {.lex_state = 43}, + [678] = {.lex_state = 43}, + [679] = {.lex_state = 43}, + [680] = {.lex_state = 43}, + [681] = {.lex_state = 43}, + [682] = {.lex_state = 43}, + [683] = {.lex_state = 43}, + [684] = {.lex_state = 43}, + [685] = {.lex_state = 43}, + [686] = {.lex_state = 43}, + [687] = {.lex_state = 43}, + [688] = {.lex_state = 43}, + [689] = {.lex_state = 43}, + [690] = {.lex_state = 43}, + [691] = {.lex_state = 43}, + [692] = {.lex_state = 43}, [693] = {.lex_state = 43}, - [694] = {.lex_state = 46}, - [695] = {.lex_state = 46}, - [696] = {.lex_state = 46}, - [697] = {.lex_state = 46}, + [694] = {.lex_state = 43}, + [695] = {.lex_state = 43}, + [696] = {.lex_state = 43}, + [697] = {.lex_state = 43}, [698] = {.lex_state = 43}, - [699] = {.lex_state = 52}, + [699] = {.lex_state = 43}, [700] = {.lex_state = 43}, [701] = {.lex_state = 43}, [702] = {.lex_state = 43}, - [703] = {.lex_state = 49}, + [703] = {.lex_state = 43}, [704] = {.lex_state = 43}, [705] = {.lex_state = 43}, [706] = {.lex_state = 43}, @@ -19245,899 +19091,899 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 43}, [718] = {.lex_state = 43}, [719] = {.lex_state = 43}, - [720] = {.lex_state = 43}, - [721] = {.lex_state = 43}, - [722] = {.lex_state = 43}, - [723] = {.lex_state = 43}, - [724] = {.lex_state = 43}, - [725] = {.lex_state = 43}, - [726] = {.lex_state = 43}, - [727] = {.lex_state = 43}, - [728] = {.lex_state = 43}, - [729] = {.lex_state = 43}, - [730] = {.lex_state = 43}, - [731] = {.lex_state = 43}, - [732] = {.lex_state = 43}, - [733] = {.lex_state = 43}, - [734] = {.lex_state = 43}, - [735] = {.lex_state = 43}, - [736] = {.lex_state = 43}, - [737] = {.lex_state = 43}, - [738] = {.lex_state = 43}, - [739] = {.lex_state = 43}, - [740] = {.lex_state = 43}, - [741] = {.lex_state = 43}, - [742] = {.lex_state = 43}, - [743] = {.lex_state = 43}, - [744] = {.lex_state = 43}, - [745] = {.lex_state = 43}, - [746] = {.lex_state = 43}, - [747] = {.lex_state = 43}, - [748] = {.lex_state = 43}, - [749] = {.lex_state = 43}, - [750] = {.lex_state = 43}, - [751] = {.lex_state = 43}, - [752] = {.lex_state = 43}, - [753] = {.lex_state = 43}, - [754] = {.lex_state = 43}, - [755] = {.lex_state = 43}, - [756] = {.lex_state = 43}, - [757] = {.lex_state = 43}, - [758] = {.lex_state = 43}, - [759] = {.lex_state = 43}, - [760] = {.lex_state = 43}, - [761] = {.lex_state = 43}, - [762] = {.lex_state = 43}, - [763] = {.lex_state = 43}, - [764] = {.lex_state = 43}, - [765] = {.lex_state = 43}, - [766] = {.lex_state = 43}, - [767] = {.lex_state = 43}, - [768] = {.lex_state = 43}, - [769] = {.lex_state = 43}, - [770] = {.lex_state = 43}, - [771] = {.lex_state = 43}, - [772] = {.lex_state = 43}, - [773] = {.lex_state = 43}, - [774] = {.lex_state = 43}, - [775] = {.lex_state = 43}, - [776] = {.lex_state = 43}, - [777] = {.lex_state = 43}, - [778] = {.lex_state = 43}, - [779] = {.lex_state = 43}, - [780] = {.lex_state = 43}, - [781] = {.lex_state = 43}, - [782] = {.lex_state = 43}, - [783] = {.lex_state = 43}, - [784] = {.lex_state = 43}, - [785] = {.lex_state = 43}, - [786] = {.lex_state = 43}, - [787] = {.lex_state = 43}, - [788] = {.lex_state = 43}, - [789] = {.lex_state = 43}, - [790] = {.lex_state = 43}, - [791] = {.lex_state = 43}, - [792] = {.lex_state = 43}, - [793] = {.lex_state = 43}, - [794] = {.lex_state = 43}, - [795] = {.lex_state = 43}, - [796] = {.lex_state = 43}, - [797] = {.lex_state = 43}, - [798] = {.lex_state = 43}, - [799] = {.lex_state = 43}, - [800] = {.lex_state = 43}, - [801] = {.lex_state = 43}, - [802] = {.lex_state = 43}, - [803] = {.lex_state = 43}, - [804] = {.lex_state = 43}, - [805] = {.lex_state = 43}, - [806] = {.lex_state = 43}, - [807] = {.lex_state = 43}, - [808] = {.lex_state = 43}, - [809] = {.lex_state = 43}, - [810] = {.lex_state = 43}, - [811] = {.lex_state = 43}, - [812] = {.lex_state = 43}, - [813] = {.lex_state = 43}, - [814] = {.lex_state = 43}, - [815] = {.lex_state = 43}, - [816] = {.lex_state = 43}, - [817] = {.lex_state = 43}, - [818] = {.lex_state = 43}, - [819] = {.lex_state = 43}, - [820] = {.lex_state = 43}, - [821] = {.lex_state = 43}, - [822] = {.lex_state = 43}, - [823] = {.lex_state = 43}, - [824] = {.lex_state = 43}, - [825] = {.lex_state = 43}, - [826] = {.lex_state = 43}, - [827] = {.lex_state = 43}, - [828] = {.lex_state = 43}, - [829] = {.lex_state = 43}, - [830] = {.lex_state = 43}, - [831] = {.lex_state = 43}, - [832] = {.lex_state = 43}, - [833] = {.lex_state = 43}, - [834] = {.lex_state = 43}, - [835] = {.lex_state = 43}, - [836] = {.lex_state = 43}, - [837] = {.lex_state = 43}, - [838] = {.lex_state = 43}, - [839] = {.lex_state = 43}, - [840] = {.lex_state = 43}, - [841] = {.lex_state = 43}, - [842] = {.lex_state = 43}, - [843] = {.lex_state = 43}, - [844] = {.lex_state = 43}, - [845] = {.lex_state = 43}, - [846] = {.lex_state = 43}, - [847] = {.lex_state = 43}, - [848] = {.lex_state = 43}, - [849] = {.lex_state = 43}, - [850] = {.lex_state = 43}, - [851] = {.lex_state = 43}, - [852] = {.lex_state = 43}, - [853] = {.lex_state = 43}, - [854] = {.lex_state = 43}, - [855] = {.lex_state = 43}, - [856] = {.lex_state = 43}, - [857] = {.lex_state = 43}, - [858] = {.lex_state = 43}, - [859] = {.lex_state = 43}, - [860] = {.lex_state = 43}, - [861] = {.lex_state = 43}, - [862] = {.lex_state = 43}, - [863] = {.lex_state = 43}, - [864] = {.lex_state = 43}, - [865] = {.lex_state = 43}, - [866] = {.lex_state = 43}, - [867] = {.lex_state = 43}, - [868] = {.lex_state = 43}, - [869] = {.lex_state = 43}, - [870] = {.lex_state = 43}, - [871] = {.lex_state = 43}, - [872] = {.lex_state = 43}, + [720] = {.lex_state = 863}, + [721] = {.lex_state = 863}, + [722] = {.lex_state = 863}, + [723] = {.lex_state = 86}, + [724] = {.lex_state = 863}, + [725] = {.lex_state = 863}, + [726] = {.lex_state = 863}, + [727] = {.lex_state = 58}, + [728] = {.lex_state = 863}, + [729] = {.lex_state = 863}, + [730] = {.lex_state = 58}, + [731] = {.lex_state = 0}, + [732] = {.lex_state = 863}, + [733] = {.lex_state = 863}, + [734] = {.lex_state = 863}, + [735] = {.lex_state = 0}, + [736] = {.lex_state = 863}, + [737] = {.lex_state = 0}, + [738] = {.lex_state = 863}, + [739] = {.lex_state = 863}, + [740] = {.lex_state = 58}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 863}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 863}, + [745] = {.lex_state = 58}, + [746] = {.lex_state = 0}, + [747] = {.lex_state = 863}, + [748] = {.lex_state = 863}, + [749] = {.lex_state = 863}, + [750] = {.lex_state = 0}, + [751] = {.lex_state = 863}, + [752] = {.lex_state = 87}, + [753] = {.lex_state = 58}, + [754] = {.lex_state = 863}, + [755] = {.lex_state = 65}, + [756] = {.lex_state = 58}, + [757] = {.lex_state = 863}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 863}, + [760] = {.lex_state = 59}, + [761] = {.lex_state = 0}, + [762] = {.lex_state = 863}, + [763] = {.lex_state = 863}, + [764] = {.lex_state = 0}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 0}, + [767] = {.lex_state = 863}, + [768] = {.lex_state = 863}, + [769] = {.lex_state = 0}, + [770] = {.lex_state = 59}, + [771] = {.lex_state = 0}, + [772] = {.lex_state = 62}, + [773] = {.lex_state = 59}, + [774] = {.lex_state = 0}, + [775] = {.lex_state = 0}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 863}, + [778] = {.lex_state = 63}, + [779] = {.lex_state = 59}, + [780] = {.lex_state = 66}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 62}, + [783] = {.lex_state = 63}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 59}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 863}, + [789] = {.lex_state = 63}, + [790] = {.lex_state = 63}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 62}, + [793] = {.lex_state = 0}, + [794] = {.lex_state = 63}, + [795] = {.lex_state = 63}, + [796] = {.lex_state = 0}, + [797] = {.lex_state = 0}, + [798] = {.lex_state = 63}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 59}, + [801] = {.lex_state = 0}, + [802] = {.lex_state = 863}, + [803] = {.lex_state = 62}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 62}, + [806] = {.lex_state = 62}, + [807] = {.lex_state = 0}, + [808] = {.lex_state = 82}, + [809] = {.lex_state = 0}, + [810] = {.lex_state = 0}, + [811] = {.lex_state = 863}, + [812] = {.lex_state = 60}, + [813] = {.lex_state = 863}, + [814] = {.lex_state = 0}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 863}, + [819] = {.lex_state = 863}, + [820] = {.lex_state = 54}, + [821] = {.lex_state = 863}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 863}, + [824] = {.lex_state = 61}, + [825] = {.lex_state = 863}, + [826] = {.lex_state = 863}, + [827] = {.lex_state = 863}, + [828] = {.lex_state = 863}, + [829] = {.lex_state = 863}, + [830] = {.lex_state = 863}, + [831] = {.lex_state = 60}, + [832] = {.lex_state = 863}, + [833] = {.lex_state = 863}, + [834] = {.lex_state = 60}, + [835] = {.lex_state = 54}, + [836] = {.lex_state = 54}, + [837] = {.lex_state = 863}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 67}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 63}, + [842] = {.lex_state = 863}, + [843] = {.lex_state = 60}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 54}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 61}, + [848] = {.lex_state = 863}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 54}, + [851] = {.lex_state = 61}, + [852] = {.lex_state = 54}, + [853] = {.lex_state = 54}, + [854] = {.lex_state = 54}, + [855] = {.lex_state = 863}, + [856] = {.lex_state = 863}, + [857] = {.lex_state = 863}, + [858] = {.lex_state = 863}, + [859] = {.lex_state = 54}, + [860] = {.lex_state = 863}, + [861] = {.lex_state = 54}, + [862] = {.lex_state = 60}, + [863] = {.lex_state = 60}, + [864] = {.lex_state = 69}, + [865] = {.lex_state = 63}, + [866] = {.lex_state = 54}, + [867] = {.lex_state = 0}, + [868] = {.lex_state = 863}, + [869] = {.lex_state = 863}, + [870] = {.lex_state = 863}, + [871] = {.lex_state = 863}, + [872] = {.lex_state = 863}, [873] = {.lex_state = 43}, - [874] = {.lex_state = 863}, - [875] = {.lex_state = 863}, - [876] = {.lex_state = 86}, - [877] = {.lex_state = 863}, - [878] = {.lex_state = 863}, - [879] = {.lex_state = 58}, - [880] = {.lex_state = 863}, - [881] = {.lex_state = 863}, - [882] = {.lex_state = 58}, - [883] = {.lex_state = 58}, - [884] = {.lex_state = 0}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 54}, + [876] = {.lex_state = 863}, + [877] = {.lex_state = 0}, + [878] = {.lex_state = 42}, + [879] = {.lex_state = 61}, + [880] = {.lex_state = 43}, + [881] = {.lex_state = 43}, + [882] = {.lex_state = 863}, + [883] = {.lex_state = 61}, + [884] = {.lex_state = 61}, [885] = {.lex_state = 0}, - [886] = {.lex_state = 863}, - [887] = {.lex_state = 863}, - [888] = {.lex_state = 863}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 863}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 863}, - [893] = {.lex_state = 863}, - [894] = {.lex_state = 863}, + [886] = {.lex_state = 43}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0}, + [889] = {.lex_state = 863}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 43}, + [892] = {.lex_state = 54}, + [893] = {.lex_state = 43}, + [894] = {.lex_state = 43}, [895] = {.lex_state = 863}, - [896] = {.lex_state = 863}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 58}, - [899] = {.lex_state = 863}, - [900] = {.lex_state = 863}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 58}, - [903] = {.lex_state = 863}, + [896] = {.lex_state = 43}, + [897] = {.lex_state = 54}, + [898] = {.lex_state = 54}, + [899] = {.lex_state = 68}, + [900] = {.lex_state = 54}, + [901] = {.lex_state = 54}, + [902] = {.lex_state = 863}, + [903] = {.lex_state = 0}, [904] = {.lex_state = 863}, - [905] = {.lex_state = 58}, - [906] = {.lex_state = 59}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 65}, + [905] = {.lex_state = 863}, + [906] = {.lex_state = 863}, + [907] = {.lex_state = 863}, + [908] = {.lex_state = 863}, [909] = {.lex_state = 0}, - [910] = {.lex_state = 863}, - [911] = {.lex_state = 863}, - [912] = {.lex_state = 87}, - [913] = {.lex_state = 863}, - [914] = {.lex_state = 863}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 54}, + [912] = {.lex_state = 64}, + [913] = {.lex_state = 54}, + [914] = {.lex_state = 0}, [915] = {.lex_state = 863}, - [916] = {.lex_state = 863}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 96}, + [918] = {.lex_state = 54}, + [919] = {.lex_state = 863}, + [920] = {.lex_state = 863}, + [921] = {.lex_state = 70}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 59}, + [923] = {.lex_state = 54}, [924] = {.lex_state = 863}, - [925] = {.lex_state = 62}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, + [925] = {.lex_state = 863}, + [926] = {.lex_state = 863}, + [927] = {.lex_state = 863}, [928] = {.lex_state = 863}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 863}, - [931] = {.lex_state = 59}, - [932] = {.lex_state = 62}, - [933] = {.lex_state = 63}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 863}, - [937] = {.lex_state = 63}, - [938] = {.lex_state = 63}, - [939] = {.lex_state = 63}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 63}, + [929] = {.lex_state = 54}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 863}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 64}, + [935] = {.lex_state = 72}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 863}, + [938] = {.lex_state = 54}, + [939] = {.lex_state = 0}, + [940] = {.lex_state = 74}, + [941] = {.lex_state = 74}, [942] = {.lex_state = 0}, - [943] = {.lex_state = 59}, - [944] = {.lex_state = 63}, - [945] = {.lex_state = 63}, - [946] = {.lex_state = 66}, - [947] = {.lex_state = 59}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 59}, + [943] = {.lex_state = 55}, + [944] = {.lex_state = 54}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 54}, + [947] = {.lex_state = 54}, + [948] = {.lex_state = 72}, + [949] = {.lex_state = 863}, [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, - [952] = {.lex_state = 62}, - [953] = {.lex_state = 0}, + [952] = {.lex_state = 64}, + [953] = {.lex_state = 74}, [954] = {.lex_state = 0}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 82}, - [959] = {.lex_state = 62}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 62}, - [962] = {.lex_state = 863}, - [963] = {.lex_state = 62}, - [964] = {.lex_state = 0}, + [955] = {.lex_state = 55}, + [956] = {.lex_state = 83}, + [957] = {.lex_state = 55}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 74}, + [961] = {.lex_state = 54}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 0}, + [964] = {.lex_state = 64}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 863}, - [967] = {.lex_state = 54}, + [966] = {.lex_state = 54}, + [967] = {.lex_state = 863}, [968] = {.lex_state = 863}, - [969] = {.lex_state = 863}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 863}, + [971] = {.lex_state = 863}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 863}, - [975] = {.lex_state = 863}, - [976] = {.lex_state = 60}, + [974] = {.lex_state = 54}, + [975] = {.lex_state = 0}, + [976] = {.lex_state = 54}, [977] = {.lex_state = 863}, - [978] = {.lex_state = 54}, - [979] = {.lex_state = 60}, - [980] = {.lex_state = 863}, + [978] = {.lex_state = 74}, + [979] = {.lex_state = 73}, + [980] = {.lex_state = 0}, [981] = {.lex_state = 54}, - [982] = {.lex_state = 863}, + [982] = {.lex_state = 0}, [983] = {.lex_state = 863}, - [984] = {.lex_state = 863}, - [985] = {.lex_state = 61}, + [984] = {.lex_state = 73}, + [985] = {.lex_state = 100}, [986] = {.lex_state = 863}, - [987] = {.lex_state = 863}, - [988] = {.lex_state = 863}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, [989] = {.lex_state = 863}, - [990] = {.lex_state = 60}, - [991] = {.lex_state = 863}, - [992] = {.lex_state = 69}, - [993] = {.lex_state = 54}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 863}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 0}, + [992] = {.lex_state = 863}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 64}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 863}, - [997] = {.lex_state = 863}, - [998] = {.lex_state = 54}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 863}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 863}, - [1001] = {.lex_state = 54}, + [1001] = {.lex_state = 863}, [1002] = {.lex_state = 863}, - [1003] = {.lex_state = 54}, - [1004] = {.lex_state = 54}, - [1005] = {.lex_state = 863}, - [1006] = {.lex_state = 61}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 863}, - [1009] = {.lex_state = 863}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 60}, - [1012] = {.lex_state = 67}, - [1013] = {.lex_state = 63}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 54}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 64}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 93}, + [1007] = {.lex_state = 63}, + [1008] = {.lex_state = 63}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 63}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 863}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 63}, + [1016] = {.lex_state = 863}, [1017] = {.lex_state = 863}, - [1018] = {.lex_state = 54}, - [1019] = {.lex_state = 863}, - [1020] = {.lex_state = 863}, - [1021] = {.lex_state = 60}, - [1022] = {.lex_state = 863}, + [1018] = {.lex_state = 107}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 63}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 63}, - [1024] = {.lex_state = 61}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 54}, - [1027] = {.lex_state = 863}, - [1028] = {.lex_state = 43}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 63}, + [1026] = {.lex_state = 63}, + [1027] = {.lex_state = 63}, + [1028] = {.lex_state = 63}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 61}, - [1031] = {.lex_state = 43}, - [1032] = {.lex_state = 54}, - [1033] = {.lex_state = 43}, - [1034] = {.lex_state = 863}, - [1035] = {.lex_state = 54}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 863}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 863}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 863}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 54}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 54}, - [1040] = {.lex_state = 61}, - [1041] = {.lex_state = 61}, - [1042] = {.lex_state = 863}, - [1043] = {.lex_state = 43}, + [1037] = {.lex_state = 863}, + [1038] = {.lex_state = 863}, + [1039] = {.lex_state = 863}, + [1040] = {.lex_state = 0}, + [1041] = {.lex_state = 863}, + [1042] = {.lex_state = 54}, + [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 863}, - [1046] = {.lex_state = 43}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 863}, [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 43}, - [1049] = {.lex_state = 43}, - [1050] = {.lex_state = 42}, - [1051] = {.lex_state = 43}, + [1048] = {.lex_state = 863}, + [1049] = {.lex_state = 863}, + [1050] = {.lex_state = 863}, + [1051] = {.lex_state = 863}, [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 68}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 96}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 54}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 863}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 863}, + [1057] = {.lex_state = 48}, [1058] = {.lex_state = 863}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 863}, - [1062] = {.lex_state = 54}, - [1063] = {.lex_state = 863}, - [1064] = {.lex_state = 54}, - [1065] = {.lex_state = 863}, - [1066] = {.lex_state = 70}, - [1067] = {.lex_state = 863}, - [1068] = {.lex_state = 863}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 863}, - [1071] = {.lex_state = 64}, - [1072] = {.lex_state = 863}, - [1073] = {.lex_state = 863}, - [1074] = {.lex_state = 863}, + [1059] = {.lex_state = 55}, + [1060] = {.lex_state = 863}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 48}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 863}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 48}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 48}, + [1069] = {.lex_state = 48}, + [1070] = {.lex_state = 72}, + [1071] = {.lex_state = 48}, + [1072] = {.lex_state = 48}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 863}, - [1076] = {.lex_state = 863}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 54}, - [1079] = {.lex_state = 54}, + [1076] = {.lex_state = 55}, + [1077] = {.lex_state = 48}, + [1078] = {.lex_state = 48}, + [1079] = {.lex_state = 863}, [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 54}, - [1082] = {.lex_state = 54}, - [1083] = {.lex_state = 863}, - [1084] = {.lex_state = 863}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 863}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 54}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 74}, - [1092] = {.lex_state = 55}, - [1093] = {.lex_state = 54}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 48}, + [1083] = {.lex_state = 48}, + [1084] = {.lex_state = 48}, + [1085] = {.lex_state = 48}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 863}, + [1088] = {.lex_state = 48}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 48}, + [1091] = {.lex_state = 863}, + [1092] = {.lex_state = 863}, + [1093] = {.lex_state = 0}, [1094] = {.lex_state = 863}, - [1095] = {.lex_state = 72}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 74}, - [1099] = {.lex_state = 55}, - [1100] = {.lex_state = 74}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 83}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 64}, - [1105] = {.lex_state = 54}, - [1106] = {.lex_state = 74}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 72}, - [1109] = {.lex_state = 55}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 54}, - [1113] = {.lex_state = 54}, - [1114] = {.lex_state = 0}, + [1095] = {.lex_state = 48}, + [1096] = {.lex_state = 48}, + [1097] = {.lex_state = 863}, + [1098] = {.lex_state = 863}, + [1099] = {.lex_state = 863}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 48}, + [1102] = {.lex_state = 48}, + [1103] = {.lex_state = 863}, + [1104] = {.lex_state = 863}, + [1105] = {.lex_state = 48}, + [1106] = {.lex_state = 55}, + [1107] = {.lex_state = 863}, + [1108] = {.lex_state = 863}, + [1109] = {.lex_state = 863}, + [1110] = {.lex_state = 863}, + [1111] = {.lex_state = 48}, + [1112] = {.lex_state = 863}, + [1113] = {.lex_state = 863}, + [1114] = {.lex_state = 48}, [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 863}, - [1117] = {.lex_state = 64}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 54}, - [1121] = {.lex_state = 54}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 100}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, + [1116] = {.lex_state = 48}, + [1117] = {.lex_state = 0}, + [1118] = {.lex_state = 863}, + [1119] = {.lex_state = 863}, + [1120] = {.lex_state = 863}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 55}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 863}, + [1125] = {.lex_state = 863}, [1126] = {.lex_state = 863}, [1127] = {.lex_state = 863}, - [1128] = {.lex_state = 0}, + [1128] = {.lex_state = 863}, [1129] = {.lex_state = 863}, [1130] = {.lex_state = 863}, - [1131] = {.lex_state = 64}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 54}, - [1134] = {.lex_state = 0}, + [1131] = {.lex_state = 55}, + [1132] = {.lex_state = 863}, + [1133] = {.lex_state = 55}, + [1134] = {.lex_state = 863}, [1135] = {.lex_state = 863}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 863}, - [1138] = {.lex_state = 73}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 863}, - [1141] = {.lex_state = 863}, - [1142] = {.lex_state = 73}, + [1136] = {.lex_state = 863}, + [1137] = {.lex_state = 20}, + [1138] = {.lex_state = 863}, + [1139] = {.lex_state = 863}, + [1140] = {.lex_state = 102}, + [1141] = {.lex_state = 95}, + [1142] = {.lex_state = 863}, [1143] = {.lex_state = 863}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 863}, - [1147] = {.lex_state = 54}, + [1144] = {.lex_state = 95}, + [1145] = {.lex_state = 76}, + [1146] = {.lex_state = 20}, + [1147] = {.lex_state = 863}, [1148] = {.lex_state = 863}, - [1149] = {.lex_state = 863}, - [1150] = {.lex_state = 64}, - [1151] = {.lex_state = 863}, + [1149] = {.lex_state = 95}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 71}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, + [1153] = {.lex_state = 55}, [1154] = {.lex_state = 863}, - [1155] = {.lex_state = 74}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 64}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 863}, + [1157] = {.lex_state = 863}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 863}, - [1160] = {.lex_state = 63}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, + [1162] = {.lex_state = 863}, [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 863}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 63}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 63}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 93}, - [1171] = {.lex_state = 63}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 63}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 63}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 63}, - [1178] = {.lex_state = 63}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 63}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 107}, - [1183] = {.lex_state = 63}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 101}, + [1166] = {.lex_state = 55}, + [1167] = {.lex_state = 55}, + [1168] = {.lex_state = 55}, + [1169] = {.lex_state = 863}, + [1170] = {.lex_state = 91}, + [1171] = {.lex_state = 101}, + [1172] = {.lex_state = 863}, + [1173] = {.lex_state = 0}, + [1174] = {.lex_state = 863}, + [1175] = {.lex_state = 55}, + [1176] = {.lex_state = 863}, + [1177] = {.lex_state = 863}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 863}, + [1180] = {.lex_state = 863}, + [1181] = {.lex_state = 863}, + [1182] = {.lex_state = 863}, + [1183] = {.lex_state = 863}, [1184] = {.lex_state = 863}, - [1185] = {.lex_state = 863}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 863}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 863}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 863}, + [1187] = {.lex_state = 55}, + [1188] = {.lex_state = 863}, + [1189] = {.lex_state = 55}, + [1190] = {.lex_state = 55}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 863}, + [1193] = {.lex_state = 55}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 54}, + [1195] = {.lex_state = 863}, + [1196] = {.lex_state = 863}, [1197] = {.lex_state = 863}, - [1198] = {.lex_state = 863}, - [1199] = {.lex_state = 863}, + [1198] = {.lex_state = 55}, + [1199] = {.lex_state = 55}, [1200] = {.lex_state = 863}, - [1201] = {.lex_state = 863}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 863}, + [1201] = {.lex_state = 55}, + [1202] = {.lex_state = 863}, + [1203] = {.lex_state = 55}, [1204] = {.lex_state = 0}, [1205] = {.lex_state = 863}, - [1206] = {.lex_state = 863}, - [1207] = {.lex_state = 863}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 55}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 863}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 863}, - [1212] = {.lex_state = 48}, + [1210] = {.lex_state = 863}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, [1213] = {.lex_state = 863}, - [1214] = {.lex_state = 48}, - [1215] = {.lex_state = 48}, + [1214] = {.lex_state = 863}, + [1215] = {.lex_state = 55}, [1216] = {.lex_state = 863}, - [1217] = {.lex_state = 0}, + [1217] = {.lex_state = 97}, [1218] = {.lex_state = 863}, - [1219] = {.lex_state = 48}, + [1219] = {.lex_state = 0}, [1220] = {.lex_state = 863}, - [1221] = {.lex_state = 48}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 55}, [1223] = {.lex_state = 863}, - [1224] = {.lex_state = 48}, - [1225] = {.lex_state = 863}, - [1226] = {.lex_state = 48}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 48}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 48}, - [1231] = {.lex_state = 863}, - [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 863}, - [1234] = {.lex_state = 863}, + [1224] = {.lex_state = 863}, + [1225] = {.lex_state = 0}, + [1226] = {.lex_state = 102}, + [1227] = {.lex_state = 863}, + [1228] = {.lex_state = 863}, + [1229] = {.lex_state = 863}, + [1230] = {.lex_state = 55}, + [1231] = {.lex_state = 104}, + [1232] = {.lex_state = 863}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, [1235] = {.lex_state = 48}, [1236] = {.lex_state = 48}, [1237] = {.lex_state = 48}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 72}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 863}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 863}, + [1241] = {.lex_state = 0}, [1242] = {.lex_state = 48}, - [1243] = {.lex_state = 863}, - [1244] = {.lex_state = 863}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 48}, - [1247] = {.lex_state = 48}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 48}, - [1250] = {.lex_state = 863}, - [1251] = {.lex_state = 48}, - [1252] = {.lex_state = 863}, - [1253] = {.lex_state = 55}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 106}, + [1248] = {.lex_state = 863}, + [1249] = {.lex_state = 863}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 863}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 106}, [1254] = {.lex_state = 863}, - [1255] = {.lex_state = 48}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 863}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 48}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, + [1257] = {.lex_state = 105}, + [1258] = {.lex_state = 98}, + [1259] = {.lex_state = 16}, + [1260] = {.lex_state = 863}, + [1261] = {.lex_state = 863}, + [1262] = {.lex_state = 863}, [1263] = {.lex_state = 863}, - [1264] = {.lex_state = 48}, - [1265] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 863}, [1266] = {.lex_state = 48}, [1267] = {.lex_state = 863}, - [1268] = {.lex_state = 0}, + [1268] = {.lex_state = 863}, [1269] = {.lex_state = 863}, - [1270] = {.lex_state = 48}, - [1271] = {.lex_state = 55}, - [1272] = {.lex_state = 95}, - [1273] = {.lex_state = 863}, - [1274] = {.lex_state = 55}, - [1275] = {.lex_state = 20}, - [1276] = {.lex_state = 863}, + [1270] = {.lex_state = 863}, + [1271] = {.lex_state = 48}, + [1272] = {.lex_state = 863}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 863}, + [1275] = {.lex_state = 48}, + [1276] = {.lex_state = 105}, [1277] = {.lex_state = 863}, - [1278] = {.lex_state = 863}, - [1279] = {.lex_state = 101}, - [1280] = {.lex_state = 20}, - [1281] = {.lex_state = 863}, + [1278] = {.lex_state = 63}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 106}, + [1281] = {.lex_state = 75}, [1282] = {.lex_state = 863}, - [1283] = {.lex_state = 863}, - [1284] = {.lex_state = 863}, - [1285] = {.lex_state = 95}, - [1286] = {.lex_state = 863}, - [1287] = {.lex_state = 863}, - [1288] = {.lex_state = 55}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 48}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 863}, [1289] = {.lex_state = 863}, [1290] = {.lex_state = 863}, [1291] = {.lex_state = 863}, [1292] = {.lex_state = 863}, - [1293] = {.lex_state = 863}, - [1294] = {.lex_state = 863}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 48}, + [1296] = {.lex_state = 863}, [1297] = {.lex_state = 863}, - [1298] = {.lex_state = 863}, - [1299] = {.lex_state = 863}, - [1300] = {.lex_state = 55}, - [1301] = {.lex_state = 76}, - [1302] = {.lex_state = 863}, - [1303] = {.lex_state = 95}, - [1304] = {.lex_state = 101}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 57}, + [1301] = {.lex_state = 863}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 20}, + [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 55}, - [1307] = {.lex_state = 863}, - [1308] = {.lex_state = 863}, - [1309] = {.lex_state = 863}, - [1310] = {.lex_state = 863}, - [1311] = {.lex_state = 97}, - [1312] = {.lex_state = 863}, - [1313] = {.lex_state = 863}, - [1314] = {.lex_state = 55}, + [1306] = {.lex_state = 863}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 863}, + [1312] = {.lex_state = 42}, + [1313] = {.lex_state = 48}, + [1314] = {.lex_state = 57}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 55}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 863}, - [1319] = {.lex_state = 55}, - [1320] = {.lex_state = 55}, + [1316] = {.lex_state = 57}, + [1317] = {.lex_state = 57}, + [1318] = {.lex_state = 48}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, [1321] = {.lex_state = 863}, - [1322] = {.lex_state = 863}, - [1323] = {.lex_state = 863}, - [1324] = {.lex_state = 863}, - [1325] = {.lex_state = 55}, - [1326] = {.lex_state = 863}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 57}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 57}, + [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, + [1329] = {.lex_state = 20}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 71}, - [1333] = {.lex_state = 863}, - [1334] = {.lex_state = 863}, - [1335] = {.lex_state = 863}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 863}, - [1338] = {.lex_state = 863}, - [1339] = {.lex_state = 863}, - [1340] = {.lex_state = 863}, + [1331] = {.lex_state = 48}, + [1332] = {.lex_state = 48}, + [1333] = {.lex_state = 48}, + [1334] = {.lex_state = 57}, + [1335] = {.lex_state = 57}, + [1336] = {.lex_state = 57}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 57}, + [1339] = {.lex_state = 48}, + [1340] = {.lex_state = 57}, [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 55}, - [1343] = {.lex_state = 55}, + [1342] = {.lex_state = 863}, + [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 55}, + [1345] = {.lex_state = 863}, [1346] = {.lex_state = 863}, - [1347] = {.lex_state = 91}, - [1348] = {.lex_state = 103}, + [1347] = {.lex_state = 57}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 863}, - [1350] = {.lex_state = 0}, + [1350] = {.lex_state = 106}, [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 863}, - [1353] = {.lex_state = 863}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 55}, - [1356] = {.lex_state = 103}, - [1357] = {.lex_state = 55}, - [1358] = {.lex_state = 55}, - [1359] = {.lex_state = 863}, - [1360] = {.lex_state = 863}, - [1361] = {.lex_state = 863}, + [1352] = {.lex_state = 48}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 57}, + [1355] = {.lex_state = 57}, + [1356] = {.lex_state = 89}, + [1357] = {.lex_state = 57}, + [1358] = {.lex_state = 57}, + [1359] = {.lex_state = 92}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 863}, - [1364] = {.lex_state = 863}, - [1365] = {.lex_state = 863}, - [1366] = {.lex_state = 55}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 89}, + [1366] = {.lex_state = 863}, [1367] = {.lex_state = 863}, - [1368] = {.lex_state = 863}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 55}, - [1371] = {.lex_state = 0}, + [1368] = {.lex_state = 106}, + [1369] = {.lex_state = 57}, + [1370] = {.lex_state = 106}, + [1371] = {.lex_state = 48}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 863}, - [1376] = {.lex_state = 55}, - [1377] = {.lex_state = 863}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 55}, - [1380] = {.lex_state = 863}, - [1381] = {.lex_state = 863}, + [1373] = {.lex_state = 863}, + [1374] = {.lex_state = 57}, + [1375] = {.lex_state = 57}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 863}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 57}, + [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 55}, - [1385] = {.lex_state = 75}, - [1386] = {.lex_state = 863}, - [1387] = {.lex_state = 863}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 48}, - [1391] = {.lex_state = 863}, - [1392] = {.lex_state = 863}, - [1393] = {.lex_state = 0}, + [1383] = {.lex_state = 57}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 48}, + [1386] = {.lex_state = 57}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 57}, + [1389] = {.lex_state = 57}, + [1390] = {.lex_state = 106}, + [1391] = {.lex_state = 57}, + [1392] = {.lex_state = 106}, + [1393] = {.lex_state = 57}, [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 863}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 106}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 863}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 863}, - [1403] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 106}, + [1397] = {.lex_state = 57}, + [1398] = {.lex_state = 106}, + [1399] = {.lex_state = 42}, + [1400] = {.lex_state = 57}, + [1401] = {.lex_state = 863}, + [1402] = {.lex_state = 48}, + [1403] = {.lex_state = 106}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 106}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 863}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 863}, - [1410] = {.lex_state = 863}, - [1411] = {.lex_state = 105}, - [1412] = {.lex_state = 48}, - [1413] = {.lex_state = 48}, - [1414] = {.lex_state = 863}, - [1415] = {.lex_state = 48}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 104}, + [1405] = {.lex_state = 863}, + [1406] = {.lex_state = 57}, + [1407] = {.lex_state = 57}, + [1408] = {.lex_state = 57}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 863}, + [1412] = {.lex_state = 103}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 94}, + [1416] = {.lex_state = 57}, + [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 863}, + [1421] = {.lex_state = 57}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 863}, + [1424] = {.lex_state = 0}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 863}, - [1427] = {.lex_state = 106}, - [1428] = {.lex_state = 48}, - [1429] = {.lex_state = 863}, - [1430] = {.lex_state = 48}, - [1431] = {.lex_state = 48}, - [1432] = {.lex_state = 863}, - [1433] = {.lex_state = 863}, - [1434] = {.lex_state = 48}, - [1435] = {.lex_state = 863}, - [1436] = {.lex_state = 105}, - [1437] = {.lex_state = 863}, - [1438] = {.lex_state = 63}, - [1439] = {.lex_state = 863}, - [1440] = {.lex_state = 863}, - [1441] = {.lex_state = 863}, - [1442] = {.lex_state = 863}, - [1443] = {.lex_state = 863}, - [1444] = {.lex_state = 48}, - [1445] = {.lex_state = 98}, - [1446] = {.lex_state = 16}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 16}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 109}, + [1441] = {.lex_state = 48}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 48}, + [1448] = {.lex_state = 110}, + [1449] = {.lex_state = 48}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 20}, - [1452] = {.lex_state = 94}, - [1453] = {.lex_state = 863}, - [1454] = {.lex_state = 106}, - [1455] = {.lex_state = 42}, - [1456] = {.lex_state = 106}, - [1457] = {.lex_state = 106}, - [1458] = {.lex_state = 106}, - [1459] = {.lex_state = 89}, - [1460] = {.lex_state = 57}, + [1451] = {.lex_state = 48}, + [1452] = {.lex_state = 48}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 108}, + [1456] = {.lex_state = 48}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 16}, + [1460] = {.lex_state = 0}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 57}, - [1463] = {.lex_state = 57}, - [1464] = {.lex_state = 57}, - [1465] = {.lex_state = 57}, - [1466] = {.lex_state = 57}, - [1467] = {.lex_state = 57}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 110}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 102}, + [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 57}, - [1473] = {.lex_state = 57}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 92}, - [1476] = {.lex_state = 57}, - [1477] = {.lex_state = 57}, - [1478] = {.lex_state = 863}, - [1479] = {.lex_state = 57}, - [1480] = {.lex_state = 57}, - [1481] = {.lex_state = 106}, - [1482] = {.lex_state = 106}, - [1483] = {.lex_state = 57}, + [1472] = {.lex_state = 16}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 48}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 95}, + [1477] = {.lex_state = 54}, + [1478] = {.lex_state = 48}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 57}, - [1486] = {.lex_state = 57}, - [1487] = {.lex_state = 57}, - [1488] = {.lex_state = 89}, - [1489] = {.lex_state = 57}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 57}, - [1492] = {.lex_state = 863}, - [1493] = {.lex_state = 57}, - [1494] = {.lex_state = 57}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 863}, - [1497] = {.lex_state = 57}, - [1498] = {.lex_state = 42}, - [1499] = {.lex_state = 57}, - [1500] = {.lex_state = 863}, - [1501] = {.lex_state = 57}, - [1502] = {.lex_state = 57}, - [1503] = {.lex_state = 57}, - [1504] = {.lex_state = 57}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 863}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 48}, + [1495] = {.lex_state = 109}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 90}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 57}, - [1507] = {.lex_state = 863}, - [1508] = {.lex_state = 863}, - [1509] = {.lex_state = 106}, - [1510] = {.lex_state = 57}, - [1511] = {.lex_state = 57}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 48}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, + [1513] = {.lex_state = 99}, [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 57}, - [1516] = {.lex_state = 57}, - [1517] = {.lex_state = 48}, - [1518] = {.lex_state = 57}, - [1519] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 48}, [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 863}, + [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 863}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 48}, - [1527] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 48}, + [1525] = {.lex_state = 48}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 54}, [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 106}, + [1529] = {.lex_state = 48}, [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 863}, - [1535] = {.lex_state = 0}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 48}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 48}, - [1538] = {.lex_state = 863}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 16}, [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 48}, + [1540] = {.lex_state = 16}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 863}, + [1545] = {.lex_state = 48}, [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 863}, - [1548] = {.lex_state = 48}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, + [1550] = {.lex_state = 54}, [1551] = {.lex_state = 0}, [1552] = {.lex_state = 0}, [1553] = {.lex_state = 48}, - [1554] = {.lex_state = 48}, - [1555] = {.lex_state = 20}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, [1556] = {.lex_state = 0}, [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, + [1558] = {.lex_state = 48}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 863}, + [1562] = {.lex_state = 0}, [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 48}, - [1565] = {.lex_state = 863}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 48}, - [1568] = {.lex_state = 863}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, [1572] = {.lex_state = 0}, [1573] = {.lex_state = 0}, [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 863}, - [1576] = {.lex_state = 48}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 54}, + [1578] = {.lex_state = 0}, [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 48}, - [1581] = {.lex_state = 48}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 48}, + [1584] = {.lex_state = 0}, [1585] = {.lex_state = 0}, [1586] = {.lex_state = 0}, [1587] = {.lex_state = 0}, [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 48}, + [1589] = {.lex_state = 0}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 48}, + [1595] = {.lex_state = 20}, [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, + [1598] = {.lex_state = 16}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, [1601] = {.lex_state = 0}, [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 110}, + [1603] = {.lex_state = 0}, [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 16}, + [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, + [1611] = {.lex_state = 95}, + [1612] = {.lex_state = 109}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, @@ -20145,237 +19991,237 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 0}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 110}, + [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 109}, + [1624] = {.lex_state = 48}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, + [1627] = {.lex_state = 48}, + [1628] = {.lex_state = 48}, + [1629] = {.lex_state = 48}, [1630] = {.lex_state = 0}, [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 48}, + [1632] = {.lex_state = 0}, [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, + [1635] = {.lex_state = 863}, [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, + [1637] = {.lex_state = 48}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, + [1639] = {.lex_state = 863}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, + [1641] = {.lex_state = 54}, [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, + [1643] = {.lex_state = 863}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 48}, + [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 54}, + [1648] = {.lex_state = 48}, [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 48}, - [1651] = {.lex_state = 0}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 16}, [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 0}, + [1656] = {.lex_state = 48}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, + [1660] = {.lex_state = 48}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, + [1662] = {.lex_state = 48}, [1663] = {.lex_state = 0}, [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, + [1665] = {.lex_state = 48}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, + [1667] = {.lex_state = 20}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, + [1672] = {.lex_state = 48}, [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, + [1674] = {.lex_state = 48}, [1675] = {.lex_state = 0}, [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, + [1678] = {.lex_state = 863}, [1679] = {.lex_state = 0}, [1680] = {.lex_state = 0}, [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 109}, - [1684] = {.lex_state = 0}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 863}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, + [1687] = {.lex_state = 863}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, + [1689] = {.lex_state = 48}, + [1690] = {.lex_state = 48}, [1691] = {.lex_state = 0}, [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 95}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 48}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, + [1693] = {.lex_state = 48}, + [1694] = {.lex_state = 48}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 48}, + [1697] = {.lex_state = 48}, [1698] = {.lex_state = 0}, [1699] = {.lex_state = 0}, [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 99}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 48}, + [1701] = {.lex_state = 0}, + [1702] = {.lex_state = 48}, + [1703] = {.lex_state = 48}, + [1704] = {.lex_state = 0}, [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 863}, + [1706] = {.lex_state = 0}, [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, + [1708] = {.lex_state = 863}, [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 16}, - [1712] = {.lex_state = 54}, - [1713] = {.lex_state = 0}, + [1710] = {.lex_state = 48}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 0}, + [1713] = {.lex_state = 48}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 20}, - [1717] = {.lex_state = 0}, + [1715] = {.lex_state = 48}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 863}, [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, [1721] = {.lex_state = 0}, [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 109}, - [1725] = {.lex_state = 108}, - [1726] = {.lex_state = 16}, - [1727] = {.lex_state = 16}, - [1728] = {.lex_state = 48}, - [1729] = {.lex_state = 48}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 95}, - [1732] = {.lex_state = 48}, + [1724] = {.lex_state = 0}, + [1725] = {.lex_state = 0}, + [1726] = {.lex_state = 863}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 48}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, + [1735] = {.lex_state = 48}, + [1736] = {.lex_state = 48}, [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 90}, + [1740] = {.lex_state = 0}, [1741] = {.lex_state = 0}, [1742] = {.lex_state = 0}, [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, + [1745] = {.lex_state = 48}, [1746] = {.lex_state = 0}, [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, + [1748] = {.lex_state = 863}, [1749] = {.lex_state = 0}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, [1753] = {.lex_state = 0}, [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, + [1755] = {.lex_state = 863}, [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 48}, + [1759] = {.lex_state = 48}, + [1760] = {.lex_state = 0}, [1761] = {.lex_state = 0}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 16}, - [1765] = {.lex_state = 48}, - [1766] = {.lex_state = 0}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 48}, [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 48}, + [1768] = {.lex_state = 48}, + [1769] = {.lex_state = 48}, + [1770] = {.lex_state = 0}, [1771] = {.lex_state = 0}, [1772] = {.lex_state = 48}, - [1773] = {.lex_state = 16}, + [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 48}, - [1778] = {.lex_state = 48}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 48}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 48}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 48}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 48}, + [1782] = {.lex_state = 48}, + [1783] = {.lex_state = 48}, + [1784] = {.lex_state = 863}, + [1785] = {.lex_state = 0}, [1786] = {.lex_state = 48}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 48}, - [1790] = {.lex_state = 48}, + [1787] = {.lex_state = 48}, + [1788] = {.lex_state = 48}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 48}, + [1792] = {.lex_state = 48}, + [1793] = {.lex_state = 0}, [1794] = {.lex_state = 48}, [1795] = {.lex_state = 863}, - [1796] = {.lex_state = 48}, - [1797] = {.lex_state = 54}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 863}, [1798] = {.lex_state = 48}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 48}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, + [1799] = {.lex_state = 48}, + [1800] = {.lex_state = 863}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 48}, + [1803] = {.lex_state = 48}, [1804] = {.lex_state = 0}, [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 0}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 48}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, + [1811] = {.lex_state = 863}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, + [1813] = {.lex_state = 48}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 48}, - [1817] = {.lex_state = 0}, + [1817] = {.lex_state = 48}, [1818] = {.lex_state = 863}, - [1819] = {.lex_state = 48}, - [1820] = {.lex_state = 48}, + [1819] = {.lex_state = 0}, + [1820] = {.lex_state = 0}, [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 0}, + [1822] = {.lex_state = 48}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, + [1824] = {.lex_state = 48}, + [1825] = {.lex_state = 48}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 48}, + [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 863}, - [1830] = {.lex_state = 109}, - [1831] = {.lex_state = 863}, - [1832] = {.lex_state = 48}, + [1829] = {.lex_state = 16}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 92}, + [1832] = {.lex_state = 89}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, + [1834] = {.lex_state = 48}, [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, + [1837] = {.lex_state = 48}, + [1838] = {.lex_state = 48}, + [1839] = {.lex_state = 109}, [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 92}, - [1842] = {.lex_state = 16}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 48}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 863}, + [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 48}, - [1850] = {.lex_state = 0}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 863}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 48}, @@ -20386,60 +20232,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 48}, - [1862] = {.lex_state = 863}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 48}, - [1868] = {.lex_state = 48}, - [1869] = {.lex_state = 48}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 48}, - [1873] = {.lex_state = 48}, - [1874] = {.lex_state = 48}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 0}, + [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 48}, + [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 863}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 20}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 53}, + [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 863}, + [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 48}, + [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 48}, - [1894] = {.lex_state = 48}, - [1895] = {.lex_state = 48}, - [1896] = {.lex_state = 48}, - [1897] = {.lex_state = 48}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 863}, + [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 48}, + [1903] = {.lex_state = 0}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 48}, - [1907] = {.lex_state = 48}, - [1908] = {.lex_state = 48}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 0}, + [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 48}, + [1912] = {.lex_state = 16}, [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 863}, + [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, [1916] = {.lex_state = 0}, [1917] = {.lex_state = 0}, @@ -20448,18 +20294,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1920] = {.lex_state = 0}, [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 48}, - [1924] = {.lex_state = 48}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 48}, + [1928] = {.lex_state = 0}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 48}, - [1934] = {.lex_state = 863}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, @@ -20467,67 +20313,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1939] = {.lex_state = 0}, [1940] = {.lex_state = 863}, [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 48}, - [1943] = {.lex_state = 48}, - [1944] = {.lex_state = 48}, - [1945] = {.lex_state = 863}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 0}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 16}, + [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 863}, - [1955] = {.lex_state = 48}, - [1956] = {.lex_state = 48}, - [1957] = {.lex_state = 863}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 0}, [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 48}, + [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 48}, + [1966] = {.lex_state = 0}, [1967] = {.lex_state = 0}, [1968] = {.lex_state = 0}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 48}, + [1970] = {.lex_state = 0}, [1971] = {.lex_state = 0}, [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, + [1974] = {.lex_state = 863}, [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0}, + [1978] = {.lex_state = 48}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 48}, + [1982] = {.lex_state = 0}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 863}, [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 863}, + [1986] = {.lex_state = 0}, [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 863}, - [1992] = {.lex_state = 48}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 48}, - [1995] = {.lex_state = 48}, - [1996] = {.lex_state = 48}, - [1997] = {.lex_state = 863}, + [1994] = {.lex_state = 0}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 863}, + [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 0}, + [2002] = {.lex_state = 20}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 0}, @@ -20552,11 +20398,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2024] = {.lex_state = 0}, [2025] = {.lex_state = 0}, [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, + [2027] = {.lex_state = 863}, [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, + [2031] = {.lex_state = 863}, [2032] = {.lex_state = 0}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, @@ -20580,21 +20426,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2052] = {.lex_state = 0}, [2053] = {.lex_state = 0}, [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, + [2055] = {.lex_state = 48}, [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 20}, + [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, [2060] = {.lex_state = 0}, [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 863}, + [2062] = {.lex_state = 0}, [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, [2066] = {.lex_state = 0}, [2067] = {.lex_state = 0}, [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, + [2069] = {.lex_state = 863}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, @@ -20613,7 +20459,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2085] = {.lex_state = 0}, [2086] = {.lex_state = 0}, [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 48}, + [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, @@ -20624,8 +20470,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 863}, - [2100] = {.lex_state = 53}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, @@ -20639,20 +20485,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, + [2114] = {.lex_state = 54}, [2115] = {.lex_state = 0}, [2116] = {.lex_state = 0}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 0}, + [2121] = {.lex_state = 54}, [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, [2124] = {.lex_state = 0}, [2125] = {.lex_state = 0}, [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 863}, + [2127] = {.lex_state = 0}, [2128] = {.lex_state = 48}, [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, @@ -20661,7 +20507,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, + [2136] = {.lex_state = 54}, [2137] = {.lex_state = 0}, [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, @@ -20671,10 +20517,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2143] = {.lex_state = 0}, [2144] = {.lex_state = 0}, [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0}, + [2146] = {.lex_state = 48}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, + [2149] = {.lex_state = 48}, [2150] = {.lex_state = 0}, [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, @@ -20684,7 +20530,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2156] = {.lex_state = 0}, [2157] = {.lex_state = 0}, [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0}, + [2159] = {.lex_state = 48}, [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, @@ -20697,7 +20543,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, + [2172] = {.lex_state = 48}, [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, [2175] = {.lex_state = 0}, @@ -20710,45 +20556,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, + [2185] = {.lex_state = 48}, [2186] = {.lex_state = 0}, [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 0}, + [2189] = {.lex_state = 863}, [2190] = {.lex_state = 0}, [2191] = {.lex_state = 0}, [2192] = {.lex_state = 0}, [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, + [2194] = {.lex_state = 48}, [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, [2197] = {.lex_state = 0}, [2198] = {.lex_state = 0}, [2199] = {.lex_state = 0}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, + [2201] = {.lex_state = 48}, [2202] = {.lex_state = 0}, [2203] = {.lex_state = 0}, [2204] = {.lex_state = 0}, [2205] = {.lex_state = 0}, [2206] = {.lex_state = 0}, [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 0}, + [2208] = {.lex_state = 48}, [2209] = {.lex_state = 0}, [2210] = {.lex_state = 0}, [2211] = {.lex_state = 0}, [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 16}, + [2215] = {.lex_state = 48}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, [2218] = {.lex_state = 0}, [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0}, [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 863}, + [2222] = {.lex_state = 48}, + [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, @@ -20769,16 +20615,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2241] = {.lex_state = 0}, [2242] = {.lex_state = 0}, [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 54}, - [2253] = {.lex_state = 0}, + [2244] = {.lex_state = 53}, + [2245] = {.lex_state = 53}, + [2246] = {.lex_state = 53}, + [2247] = {.lex_state = 53}, + [2248] = {.lex_state = 53}, + [2249] = {.lex_state = 53}, + [2250] = {.lex_state = 53}, + [2251] = {.lex_state = 53}, + [2252] = {.lex_state = 53}, + [2253] = {.lex_state = 53}, [2254] = {.lex_state = 0}, [2255] = {.lex_state = 0}, [2256] = {.lex_state = 0}, @@ -20789,170 +20635,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 0}, [2262] = {.lex_state = 0}, [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 863}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 54}, - [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 48}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 0}, - [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 48}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 54}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 48}, - [2300] = {.lex_state = 0}, - [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 0}, - [2307] = {.lex_state = 0}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 48}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 0}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 0}, - [2322] = {.lex_state = 0}, - [2323] = {.lex_state = 48}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 0}, - [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 0}, - [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 48}, - [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 863}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 48}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, - [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 48}, - [2351] = {.lex_state = 0}, - [2352] = {.lex_state = 863}, - [2353] = {.lex_state = 0}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 48}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 48}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 48}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 0}, - [2374] = {.lex_state = 0}, - [2375] = {.lex_state = 0}, - [2376] = {.lex_state = 0}, - [2377] = {.lex_state = 0}, - [2378] = {.lex_state = 0}, - [2379] = {.lex_state = 0}, - [2380] = {.lex_state = 0}, - [2381] = {.lex_state = 0}, - [2382] = {.lex_state = 0}, - [2383] = {.lex_state = 0}, - [2384] = {.lex_state = 0}, - [2385] = {.lex_state = 0}, - [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 0}, - [2388] = {.lex_state = 0}, - [2389] = {.lex_state = 48}, - [2390] = {.lex_state = 0}, - [2391] = {.lex_state = 0}, - [2392] = {.lex_state = 0}, - [2393] = {.lex_state = 0}, - [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 0}, - [2396] = {.lex_state = 0}, - [2397] = {.lex_state = 0}, - [2398] = {.lex_state = 53}, - [2399] = {.lex_state = 53}, - [2400] = {.lex_state = 53}, - [2401] = {.lex_state = 53}, - [2402] = {.lex_state = 53}, - [2403] = {.lex_state = 53}, - [2404] = {.lex_state = 53}, - [2405] = {.lex_state = 53}, - [2406] = {.lex_state = 53}, - [2407] = {.lex_state = 53}, - [2408] = {.lex_state = 0}, - [2409] = {.lex_state = 0}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 0}, - [2412] = {.lex_state = 0}, - [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 0}, - [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 0}, - [2417] = {.lex_state = 0}, - [2418] = {.lex_state = 48}, - [2419] = {.lex_state = 48}, - [2420] = {.lex_state = 48}, - [2421] = {.lex_state = 48}, - [2422] = {.lex_state = 48}, - [2423] = {.lex_state = 48}, - [2424] = {.lex_state = 48}, - [2425] = {.lex_state = 48}, - [2426] = {.lex_state = 48}, - [2427] = {.lex_state = 48}, + [2264] = {.lex_state = 48}, + [2265] = {.lex_state = 48}, + [2266] = {.lex_state = 48}, + [2267] = {.lex_state = 48}, + [2268] = {.lex_state = 48}, + [2269] = {.lex_state = 48}, + [2270] = {.lex_state = 48}, + [2271] = {.lex_state = 48}, + [2272] = {.lex_state = 48}, + [2273] = {.lex_state = 48}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -21146,27 +20838,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__constraint] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2380), - [sym__statement] = STATE(2379), - [sym_drop_type_statement] = STATE(2379), - [sym_update_statement] = STATE(2379), - [sym_drop_function_statement] = STATE(2379), - [sym_create_type_statement] = STATE(2379), - [sym_insert_statement] = STATE(2379), - [sym_create_table_statement] = STATE(2379), - [sym_create_schema_statement] = STATE(2379), - [sym_create_index_statement] = STATE(2379), - [sym_delete_statement] = STATE(2379), - [sym_alter_table_statement] = STATE(2379), - [sym_grant_statement] = STATE(2379), - [sym_psql_statement] = STATE(1058), - [sym_create_sequence_statement] = STATE(2379), - [sym_create_trigger_statement] = STATE(2379), - [sym_do_block] = STATE(2379), - [sym_select_statement] = STATE(2379), - [sym_with_query] = STATE(1453), - [sym_create_function_statement] = STATE(2379), - [aux_sym_source_file_repeat1] = STATE(677), + [sym_source_file] = STATE(2217), + [sym__statement] = STATE(2210), + [sym_drop_type_statement] = STATE(2210), + [sym_update_statement] = STATE(2210), + [sym_drop_function_statement] = STATE(2210), + [sym_create_type_statement] = STATE(2210), + [sym_insert_statement] = STATE(2210), + [sym_create_table_statement] = STATE(2210), + [sym_create_schema_statement] = STATE(2210), + [sym_create_index_statement] = STATE(2210), + [sym_delete_statement] = STATE(2210), + [sym_alter_table_statement] = STATE(2210), + [sym_grant_statement] = STATE(2210), + [sym_psql_statement] = STATE(906), + [sym_create_sequence_statement] = STATE(2210), + [sym_create_trigger_statement] = STATE(2210), + [sym_do_block] = STATE(2210), + [sym_select_statement] = STATE(2210), + [sym_with_query] = STATE(1405), + [sym_create_function_statement] = STATE(2210), + [aux_sym_source_file_repeat1] = STATE(593), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_drop_type_statement_token1] = ACTIONS(7), [aux_sym_update_statement_token1] = ACTIONS(9), @@ -21395,87 +21087,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 9, + [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - aux_sym__interval_fields_token1, - ACTIONS(49), 1, - aux_sym__interval_fields_token3, - ACTIONS(51), 1, - aux_sym__interval_fields_token4, - ACTIONS(53), 1, - aux_sym__interval_fields_token5, - STATE(139), 1, - sym__interval_fields, - ACTIONS(47), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [82] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(43), 1, anon_sym_LPAREN, - STATE(33), 1, + STATE(20), 1, sym_type_length, - ACTIONS(59), 7, + ACTIONS(45), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -21483,7 +21102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 53, + ACTIONS(41), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -21537,30 +21156,99 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [156] = 9, + [74] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 1, + ACTIONS(47), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_precision, + ACTIONS(45), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [148] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, aux_sym__interval_fields_token1, - ACTIONS(65), 1, + ACTIONS(57), 1, aux_sym__interval_fields_token3, - ACTIONS(67), 1, + ACTIONS(59), 1, aux_sym__interval_fields_token4, - ACTIONS(69), 1, + ACTIONS(61), 1, aux_sym__interval_fields_token5, - STATE(101), 1, + STATE(91), 1, sym__interval_fields, - ACTIONS(63), 2, + ACTIONS(55), 2, aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, - ACTIONS(43), 6, + ACTIONS(51), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 49, + ACTIONS(49), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -21610,49 +21298,54 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [238] = 5, + [230] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(63), 1, + aux_sym__interval_fields_token1, + ACTIONS(67), 1, + aux_sym__interval_fields_token3, + ACTIONS(69), 1, + aux_sym__interval_fields_token4, ACTIONS(71), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_precision, - ACTIONS(59), 7, - aux_sym_alter_column_action_token1, + aux_sym__interval_fields_token5, + STATE(114), 1, + sym__interval_fields, + ACTIONS(65), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 53, + ACTIONS(49), 48, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym__type_token1, - aux_sym__type_token2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -21678,49 +21371,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - sym__constraint, - [312] = 21, + [312] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, - aux_sym_alter_column_action_token1, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, + ACTIONS(78), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(108), 1, sym_cast, - STATE(110), 1, + STATE(95), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(87), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(90), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(102), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, + ACTIONS(93), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(84), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(96), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, @@ -21731,249 +21413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 21, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - sym_and, - sym__constraint, - [417] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, + STATE(657), 5, sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [508] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 32, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [605] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(103), 1, - aux_sym_trigger_event_token2, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, + sym_other_op, sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(117), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -21983,7 +21429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 21, + ACTIONS(73), 20, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -22004,400 +21450,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym_and, - [712] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(113), 1, - sym_cast, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 6, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [799] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - sym_cast, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(103), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 47, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [882] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - aux_sym_trigger_event_token2, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(117), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [989] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 1, - sym_cast, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(77), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 47, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [1072] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(123), 1, - sym_and, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(117), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(119), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [1181] = 3, + [407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 7, @@ -22463,17 +21516,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [1250] = 6, + [476] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(116), 1, + aux_sym_grant_targets_token4, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(146), 1, + sym_cast, + STATE(95), 1, + sym_comparison_null, + ACTIONS(125), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(131), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(122), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(134), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(657), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(111), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [571] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(173), 1, + sym_cast, + STATE(95), 1, + sym_comparison_null, + ACTIONS(159), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(157), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(165), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(657), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(149), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [666] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + aux_sym_grant_targets_token4, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(210), 1, + sym_cast, + STATE(95), 1, + sym_comparison_null, + ACTIONS(189), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(195), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(186), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(198), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(657), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(175), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [761] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(213), 1, + aux_sym_alter_column_action_token1, + ACTIONS(215), 1, + aux_sym_trigger_event_token2, + ACTIONS(227), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(221), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(131), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(218), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(224), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(111), 19, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + sym__constraint, + [856] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(230), 1, + aux_sym_alter_column_action_token1, + ACTIONS(232), 1, + aux_sym_trigger_event_token2, + ACTIONS(244), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(238), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(195), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(235), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(241), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(175), 19, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + sym__constraint, + [951] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, anon_sym_LBRACK, - STATE(41), 1, + STATE(25), 1, aux_sym__type_repeat1, - ACTIONS(131), 2, + ACTIONS(253), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(127), 7, + ACTIONS(249), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -22481,7 +21929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(125), 50, + ACTIONS(247), 50, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -22532,643 +21980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [1325] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(103), 1, - aux_sym_alter_column_action_token1, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 21, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - sym_and, - sym__constraint, - [1430] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 32, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - sym__constraint, - [1525] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 36, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - sym__constraint, - [1618] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(103), 2, - aux_sym_alter_column_action_token1, - aux_sym_comparison_kw_token1, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 27, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - sym__constraint, - [1717] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 4, - aux_sym_alter_column_action_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 45, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - sym__constraint, - [1808] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(123), 1, - sym_and, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(117), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 20, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [1917] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 35, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [2010] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(77), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - sym__constraint, - [2093] = 3, + [1026] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 7, @@ -23234,207 +22046,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2162] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_SLASH, - ACTIONS(109), 1, - anon_sym_DASH, - ACTIONS(111), 1, - anon_sym_PLUS, - ACTIONS(113), 1, - sym_cast, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - STATE(135), 1, - sym_comparison_null, - STATE(820), 1, - sym_other_op, - STATE(822), 1, - sym_comparison_kw, - STATE(824), 1, - sym_contains_op, - STATE(831), 1, - sym_comparison_op, - STATE(833), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(103), 2, - aux_sym_trigger_event_token2, - aux_sym_comparison_kw_token1, - ACTIONS(105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [2263] = 10, + [1095] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(103), 6, + aux_sym_comparison_kw_token1, + ACTIONS(255), 1, aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(257), 1, + aux_sym_trigger_event_token2, + ACTIONS(269), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(90), 2, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, + ACTIONS(102), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - sym__constraint, - [2346] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(263), 2, anon_sym_SLASH, - ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(135), 1, - aux_sym_alter_column_action_token1, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(93), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(260), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(266), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, @@ -23445,100 +22089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_sequence_increment_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - sym__constraint, - [2455] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, + STATE(716), 5, sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_alter_column_action_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 46, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -23548,12 +22105,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_and, + ACTIONS(73), 19, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, sym__constraint, - [2542] = 3, + [1190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 7, + ACTIONS(274), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -23561,7 +22136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(141), 53, + ACTIONS(272), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -23615,10 +22190,10 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [2610] = 3, + [1258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(147), 7, + ACTIONS(278), 7, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_PERCENT, @@ -23626,7 +22201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(145), 53, + ACTIONS(276), 53, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -23680,14 +22255,14 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [2678] = 5, + [1326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(149), 1, + ACTIONS(280), 1, anon_sym_LPAREN, - STATE(48), 1, + STATE(37), 1, sym_precision, - ACTIONS(59), 8, + ACTIONS(45), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -23696,7 +22271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 50, + ACTIONS(41), 50, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -23747,14 +22322,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2750] = 5, + [1398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(151), 1, + ACTIONS(284), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [1466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 7, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(286), 53, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [1534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(290), 1, anon_sym_LPAREN, - STATE(48), 1, + STATE(37), 1, sym_type_length, - ACTIONS(59), 8, + ACTIONS(45), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -23763,7 +22468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 50, + ACTIONS(41), 50, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -23814,151 +22519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [2822] = 3, + [1606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 7, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 53, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, + ACTIONS(251), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [2890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 7, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 53, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [2958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACK, - STATE(39), 1, + STATE(26), 1, aux_sym__type_repeat1, - ACTIONS(163), 6, + ACTIONS(294), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 51, + ACTIONS(292), 51, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -24010,17 +22585,83 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [3029] = 6, + [1677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(168), 1, + ACTIONS(300), 1, anon_sym_LBRACK, - STATE(56), 1, + STATE(26), 1, aux_sym__type_repeat1, - ACTIONS(170), 2, + ACTIONS(298), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [1748] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(303), 1, + anon_sym_LBRACK, + STATE(41), 1, + aux_sym__type_repeat1, + ACTIONS(305), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(127), 8, + ACTIONS(249), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -24029,7 +22670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(125), 47, + ACTIONS(247), 47, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -24077,136 +22718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACK, - STATE(39), 1, - aux_sym__type_repeat1, - ACTIONS(174), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 51, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [3173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 50, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3239] = 3, + [1821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -24269,7 +22781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3305] = 3, + [1887] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -24332,7 +22844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [3371] = 3, + [1953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -24395,94 +22907,27 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [3437] = 3, + [2019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 51, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_DOT, - aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 1, - anon_sym_LPAREN, - ACTIONS(182), 1, - anon_sym_DOT, - ACTIONS(184), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 6, + ACTIONS(298), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(176), 49, + ACTIONS(296), 52, anon_sym_SEMI, anon_sym_COMMA, + aux_sym_update_statement_token2, aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_items_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, @@ -24495,6 +22940,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_if_statement_token2, aux_sym_where_filter_token1, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, @@ -24524,70 +22970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [3575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(141), 50, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3641] = 3, + [2085] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 8, @@ -24650,73 +23033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3707] = 3, + [2151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 52, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [3773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 8, + ACTIONS(288), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -24725,7 +23045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(145), 50, + ACTIONS(286), 50, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -24776,156 +23096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [3839] = 3, + [2217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 50, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3905] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(186), 1, + ACTIONS(309), 1, anon_sym_LPAREN, - ACTIONS(188), 1, + ACTIONS(313), 1, anon_sym_DOT, - ACTIONS(190), 1, + ACTIONS(315), 1, aux_sym_time_expression_token1, - ACTIONS(180), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(176), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [3977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 6, + ACTIONS(311), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(172), 51, + ACTIONS(307), 49, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token2, aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_items_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_create_index_statement_token1, - aux_sym_index_using_token1, aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, @@ -24967,14 +23162,205 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [4042] = 5, + [2289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(192), 1, + ACTIONS(284), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_LBRACK, - STATE(55), 1, - aux_sym__type_repeat1, - ACTIONS(163), 7, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(272), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(276), 50, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + anon_sym_LPAREN, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(321), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -24982,7 +23368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 48, + ACTIONS(307), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -25031,14 +23417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4111] = 5, + [2559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(168), 1, - anon_sym_LBRACK, - STATE(55), 1, - aux_sym__type_repeat1, - ACTIONS(174), 7, + ACTIONS(31), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -25046,9 +23428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(172), 48, + ACTIONS(29), 51, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, @@ -25068,6 +23451,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + anon_sym_DOT, + aux_sym_time_expression_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -25095,23 +23480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4180] = 9, + [2625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(195), 1, + ACTIONS(323), 1, aux_sym__interval_fields_token1, - ACTIONS(199), 1, + ACTIONS(327), 1, aux_sym__interval_fields_token3, - ACTIONS(201), 1, + ACTIONS(329), 1, aux_sym__interval_fields_token4, - ACTIONS(203), 1, + ACTIONS(331), 1, aux_sym__interval_fields_token5, - STATE(301), 1, + STATE(263), 1, sym__interval_fields, - ACTIONS(197), 2, + ACTIONS(325), 2, aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, - ACTIONS(43), 7, + ACTIONS(51), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -25119,7 +23504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(41), 43, + ACTIONS(49), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -25163,61 +23548,515 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4257] = 27, + [2702] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, + ACTIONS(303), 1, + anon_sym_LBRACK, + STATE(43), 1, + aux_sym__type_repeat1, + ACTIONS(294), 7, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(207), 1, - aux_sym_update_statement_token2, - ACTIONS(213), 1, anon_sym_SLASH, - ACTIONS(215), 1, anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - ACTIONS(225), 1, - sym_and, - ACTIONS(227), 1, - sym__identifier, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - STATE(1027), 1, - sym_identifier, - ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(219), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(221), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(205), 3, + aux_sym_comparison_kw_token1, + ACTIONS(292), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(115), 4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2771] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(333), 1, + aux_sym__interval_fields_token1, + ACTIONS(337), 1, + aux_sym__interval_fields_token3, + ACTIONS(339), 1, + aux_sym__interval_fields_token4, + ACTIONS(341), 1, + aux_sym__interval_fields_token5, + STATE(254), 1, + sym__interval_fields, + ACTIONS(335), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(49), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(51), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [2848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(343), 1, + anon_sym_LBRACK, + STATE(43), 1, + aux_sym__type_repeat1, + ACTIONS(298), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [2917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(292), 51, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_index_using_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [2982] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(348), 1, + aux_sym_update_statement_token2, + ACTIONS(360), 1, + sym_cast, + ACTIONS(362), 1, + sym__identifier, + STATE(250), 1, + sym_comparison_null, + STATE(882), 1, + sym_identifier, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(356), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(358), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(346), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(352), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(354), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(153), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(676), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(350), 10, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [3081] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(213), 1, + aux_sym_update_set_token1, + ACTIONS(215), 1, + aux_sym_trigger_event_token2, + ACTIONS(373), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(367), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(131), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(364), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(370), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(111), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + [3173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(33), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3237] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(388), 1, + sym_cast, + STATE(250), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(382), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(385), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(376), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(379), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(78), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -25228,7 +24067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(676), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -25238,152 +24083,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(209), 10, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [4370] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - aux_sym__interval_fields_token1, - ACTIONS(233), 1, - aux_sym__interval_fields_token3, - ACTIONS(235), 1, - aux_sym__interval_fields_token4, - ACTIONS(237), 1, - aux_sym__interval_fields_token5, - STATE(332), 1, - sym__interval_fields, - ACTIONS(231), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(43), 25, + ACTIONS(255), 12, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, sym__identifier, - [4447] = 3, + [3329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 49, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [4511] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(241), 1, + ACTIONS(393), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, + ACTIONS(395), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -25391,7 +24109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 48, + ACTIONS(391), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -25440,14 +24158,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [4577] = 3, + [3395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 25, + ACTIONS(397), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -25455,8 +24200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -25469,19 +24219,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(39), 31, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + sym_and, + [3461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(399), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(401), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(37), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, aux_sym__interval_fields_token1, aux_sym__interval_fields_token2, @@ -25489,19 +24378,444 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [3657] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(415), 1, + sym_cast, + STATE(250), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(409), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(412), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(175), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(403), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(180), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(676), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(230), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [3749] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(444), 1, + aux_sym_for_statement_token3, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(452), 1, + aux_sym_if_statement_token5, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + STATE(1279), 1, + aux_sym_if_statement_repeat1, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + ACTIONS(450), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + STATE(85), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1889), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [3865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(462), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [4641] = 3, + sym__constraint, + [3931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(464), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [3997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(466), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [4063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(468), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [4129] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -25562,117 +24876,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [4705] = 12, + [4193] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 6, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [4787] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(249), 1, - sym_cast, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(103), 7, - aux_sym_update_set_token1, + ACTIONS(470), 1, + aux_sym__interval_fields_token1, + ACTIONS(474), 1, + aux_sym__interval_fields_token3, + ACTIONS(476), 1, + aux_sym__interval_fields_token4, + ACTIONS(478), 1, + aux_sym__interval_fields_token5, + STATE(315), 1, + sym__interval_fields, + ACTIONS(472), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 42, + ACTIONS(49), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, @@ -25699,67 +24941,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - [4865] = 29, + [4269] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(492), 1, + sym_cast, + STATE(250), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(486), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(489), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(111), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(480), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(483), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(116), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(676), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(213), 12, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [4361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [4425] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(78), 1, + aux_sym_grant_targets_token4, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(255), 1, + aux_sym_update_set_token1, + ACTIONS(257), 1, + aux_sym_trigger_event_token2, + ACTIONS(504), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(498), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(495), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(501), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + [4517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(39), 31, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [4581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + aux_sym_grant_targets_token4, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(230), 1, + aux_sym_update_set_token1, + ACTIONS(232), 1, + aux_sym_trigger_event_token2, + ACTIONS(516), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(510), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(195), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(507), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(513), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(175), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + [4673] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(215), 1, + aux_sym_trigger_event_token2, + ACTIONS(528), 1, + sym_cast, + STATE(299), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(522), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(131), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(519), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(525), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(665), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(111), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [4762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(175), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [4825] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(251), 1, + ACTIONS(418), 1, aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, + ACTIONS(420), 1, aux_sym_update_statement_token1, - ACTIONS(255), 1, + ACTIONS(422), 1, aux_sym_create_type_statement_token1, - ACTIONS(257), 1, + ACTIONS(424), 1, aux_sym_insert_statement_token1, - ACTIONS(259), 1, + ACTIONS(426), 1, aux_sym_insert_conflict_token3, - ACTIONS(261), 1, + ACTIONS(428), 1, aux_sym_delete_statement_token1, - ACTIONS(263), 1, + ACTIONS(430), 1, aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, + ACTIONS(432), 1, aux_sym_grant_statement_token1, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(269), 1, + ACTIONS(436), 1, aux_sym_trigger_scope_token1, - ACTIONS(271), 1, + ACTIONS(438), 1, aux_sym_trigger_exec_token1, - ACTIONS(273), 1, + ACTIONS(440), 1, aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, + ACTIONS(442), 1, aux_sym_get_diagnostics_statement_token1, - ACTIONS(277), 1, - aux_sym_for_statement_token3, - ACTIONS(279), 1, + ACTIONS(446), 1, aux_sym_raise_statement_token1, - ACTIONS(281), 1, + ACTIONS(448), 1, aux_sym_if_statement_token1, - ACTIONS(285), 1, - aux_sym_if_statement_token5, - ACTIONS(287), 1, + ACTIONS(454), 1, aux_sym_return_statement_token1, - ACTIONS(289), 1, + ACTIONS(456), 1, aux_sym_perform_statement_token1, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(293), 1, + ACTIONS(460), 1, sym__identifier, - STATE(1425), 1, - aux_sym_if_statement_repeat1, - STATE(1453), 1, + STATE(1405), 1, sym_with_query, - STATE(1975), 1, + STATE(1836), 1, sym_identifier, - ACTIONS(283), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - STATE(97), 2, + STATE(85), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2043), 27, + ACTIONS(531), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(1889), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -25787,1744 +25506,17 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [4981] = 3, + [4934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 49, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(297), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(299), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5243] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - aux_sym_update_set_token1, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - sym_and, - [5345] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(249), 1, - sym_cast, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(77), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [5423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(33), 49, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5487] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(307), 1, - aux_sym__interval_fields_token1, - ACTIONS(311), 1, - aux_sym__interval_fields_token3, - ACTIONS(313), 1, - aux_sym__interval_fields_token4, - ACTIONS(315), 1, - aux_sym__interval_fields_token5, - STATE(383), 1, - sym__interval_fields, - ACTIONS(309), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [5563] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - ACTIONS(225), 1, - sym_and, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(219), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(221), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(135), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym__identifier, - [5669] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5755] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(101), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 17, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [5849] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(103), 1, - aux_sym_update_set_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - sym_and, - [5951] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [6039] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 4, - aux_sym_update_set_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [6131] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [6219] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 19, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [6309] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(219), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(221), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(101), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [6411] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(103), 2, - aux_sym_update_set_token1, - aux_sym_comparison_kw_token1, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [6507] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [6589] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(101), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [6667] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [6753] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(213), 1, - anon_sym_SLASH, - ACTIONS(215), 1, - anon_sym_DASH, - ACTIONS(217), 1, - anon_sym_PLUS, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(211), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(219), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(221), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(73), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 14, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [6855] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_cast, - STATE(351), 1, - sym_comparison_null, - STATE(826), 1, - sym_or, - STATE(832), 1, - sym_comparison_op, - STATE(834), 1, - sym_contains_op, - STATE(836), 1, - sym_comparison_kw, - STATE(838), 1, - sym_other_op, - ACTIONS(73), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [6933] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(135), 1, - aux_sym_update_set_token1, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - [7039] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(319), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, + ACTIONS(535), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 49, + ACTIONS(533), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -27574,40 +25566,39 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [7105] = 4, + [4997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_alter_column_action_token1, + ACTIONS(535), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 49, + ACTIONS(533), 48, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -27635,41 +25626,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - sym__constraint, - [7171] = 4, + [5060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_alter_column_action_token1, + ACTIONS(294), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 49, + ACTIONS(292), 48, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - aux_sym_if_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -27697,70 +25686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - sym__constraint, - [7237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(325), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [7303] = 3, + [5123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 6, @@ -27820,43 +25746,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [7366] = 12, + [5186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, + ACTIONS(539), 7, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 40, + ACTIONS(537), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -27865,6 +25779,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27888,63 +25804,707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - [7447] = 26, + [5249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(336), 1, - aux_sym_update_statement_token1, - ACTIONS(339), 1, - aux_sym_create_type_statement_token1, - ACTIONS(342), 1, - aux_sym_insert_statement_token1, - ACTIONS(345), 1, - aux_sym_insert_conflict_token3, - ACTIONS(348), 1, - aux_sym_delete_statement_token1, - ACTIONS(351), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(354), 1, - aux_sym_grant_statement_token1, - ACTIONS(357), 1, - anon_sym_BSLASH, - ACTIONS(360), 1, - aux_sym_sequence_start_token2, - ACTIONS(363), 1, - aux_sym_trigger_scope_token1, - ACTIONS(366), 1, - aux_sym_trigger_exec_token1, - ACTIONS(369), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(372), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(377), 1, - aux_sym_raise_statement_token1, - ACTIONS(380), 1, - aux_sym_if_statement_token1, - ACTIONS(383), 1, - aux_sym_return_statement_token1, - ACTIONS(386), 1, - aux_sym_perform_statement_token1, - ACTIONS(389), 1, - aux_sym_select_statement_token1, - ACTIONS(392), 1, + ACTIONS(543), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(541), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [5375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(549), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [5438] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, + aux_sym_grant_targets_token4, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(232), 1, + aux_sym_trigger_event_token2, + ACTIONS(562), 1, + sym_cast, + STATE(299), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(556), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(195), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(553), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(559), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(665), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(175), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [5527] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(362), 1, sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, + ACTIONS(565), 1, + aux_sym_update_statement_token2, + ACTIONS(575), 1, + sym_cast, + STATE(355), 1, + sym_comparison_null, + STATE(882), 1, sym_identifier, - STATE(97), 2, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(571), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(573), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(346), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(567), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(569), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(153), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(668), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(350), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [5624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5687] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(78), 1, + aux_sym_grant_targets_token4, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(257), 1, + aux_sym_trigger_event_token2, + ACTIONS(586), 1, + sym_cast, + STATE(299), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(580), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(577), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(583), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(665), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [5776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(589), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [5839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(593), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [5902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(549), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [5965] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(597), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(600), 1, + aux_sym_update_statement_token1, + ACTIONS(603), 1, + aux_sym_create_type_statement_token1, + ACTIONS(606), 1, + aux_sym_insert_statement_token1, + ACTIONS(609), 1, + aux_sym_insert_conflict_token3, + ACTIONS(612), 1, + aux_sym_delete_statement_token1, + ACTIONS(615), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(618), 1, + aux_sym_grant_statement_token1, + ACTIONS(621), 1, + anon_sym_BSLASH, + ACTIONS(624), 1, + aux_sym_sequence_start_token2, + ACTIONS(627), 1, + aux_sym_trigger_scope_token1, + ACTIONS(630), 1, + aux_sym_trigger_exec_token1, + ACTIONS(633), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(636), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(641), 1, + aux_sym_raise_statement_token1, + ACTIONS(644), 1, + aux_sym_if_statement_token1, + ACTIONS(647), 1, + aux_sym_return_statement_token1, + ACTIONS(650), 1, + aux_sym_perform_statement_token1, + ACTIONS(653), 1, + aux_sym_select_statement_token1, + ACTIONS(656), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(85), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - ACTIONS(375), 4, + ACTIONS(639), 4, aux_sym_for_statement_token3, aux_sym_if_statement_token3, aux_sym_if_statement_token4, aux_sym_if_statement_token5, - STATE(2043), 27, + STATE(1889), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -27972,627 +26532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [7556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [7619] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(405), 1, - sym_and, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(403), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [7722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [7785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(407), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [7848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [7911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [7974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(427), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8226] = 3, + [6074] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -28652,38 +26592,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [8289] = 3, + [6137] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 6, - aux_sym_alter_column_action_token1, + ACTIONS(659), 1, + aux_sym__interval_fields_token1, + ACTIONS(663), 1, + aux_sym__interval_fields_token3, + ACTIONS(665), 1, + aux_sym__interval_fields_token4, + ACTIONS(667), 1, + aux_sym__interval_fields_token5, + STATE(334), 1, + sym__interval_fields, + ACTIONS(661), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - ACTIONS(435), 49, + sym_and, + sym__identifier, + ACTIONS(49), 25, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_insert_items_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -28691,13 +26644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -28710,12 +26658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - sym__constraint, - [8352] = 3, + [6212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 6, + ACTIONS(255), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, @@ -28772,661 +26718,45 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [8415] = 3, + [6275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(439), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(443), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(447), 1, + ACTIONS(669), 1, anon_sym_LPAREN, - STATE(213), 1, - sym_type_length, - ACTIONS(59), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(55), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(453), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 6, - aux_sym_alter_column_action_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - aux_sym_grant_targets_token4, - aux_sym_sequence_increment_token2, - aux_sym_trigger_event_token2, - anon_sym_DOT_DOT, - aux_sym_for_statement_token2, - aux_sym_if_statement_token2, - aux_sym_where_filter_token1, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - sym__constraint, - [8923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [8986] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - ACTIONS(405), 1, - sym_and, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(403), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(119), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [9089] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(457), 1, - anon_sym_LPAREN, - STATE(213), 1, + STATE(135), 1, sym_precision, - ACTIONS(59), 8, - aux_sym_update_set_token1, + ACTIONS(45), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - ACTIONS(55), 45, + sym_and, + sym__identifier, + ACTIONS(41), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, @@ -29436,13 +26766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -29455,187 +26780,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [9156] = 3, + [6342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(671), 1, + anon_sym_LPAREN, + STATE(135), 1, + sym_type_length, + ACTIONS(45), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9219] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(77), 6, - aux_sym_grant_targets_token4, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, + aux_sym_comparison_kw_token1, sym_and, - [9296] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(459), 1, - aux_sym__interval_fields_token1, - ACTIONS(463), 1, - aux_sym__interval_fields_token3, - ACTIONS(465), 1, - aux_sym__interval_fields_token4, - ACTIONS(467), 1, - aux_sym__interval_fields_token5, - STATE(434), 1, - sym__interval_fields, - ACTIONS(461), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 42, + sym__identifier, + ACTIONS(41), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -29648,156 +26842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [9371] = 3, + [6409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [9434] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(403), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 16, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [9533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 6, + ACTIONS(675), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(469), 49, + ACTIONS(673), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -29847,49 +26902,103 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [9596] = 10, + [6472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(103), 6, + ACTIONS(679), 7, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 42, + ACTIONS(677), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [6535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(681), 1, + anon_sym_LPAREN, + STATE(152), 1, + sym_precision, + ACTIONS(45), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -29913,11 +27022,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - [9673] = 3, + [6602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 7, + ACTIONS(683), 1, + anon_sym_LPAREN, + STATE(152), 1, + sym_type_length, + ACTIONS(45), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [6669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -29925,7 +27097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(469), 48, + ACTIONS(175), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -29974,81 +27146,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9736] = 27, + [6732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(473), 1, - aux_sym_update_statement_token2, - ACTIONS(477), 1, + ACTIONS(687), 6, + aux_sym_alter_column_action_token1, anon_sym_SLASH, - ACTIONS(479), 1, anon_sym_DASH, - ACTIONS(481), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, - ACTIONS(487), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(489), 1, sym_and, - STATE(407), 1, + sym__constraint, + [6795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [6858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [6921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(693), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [6984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 48, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [7047] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(705), 1, + sym_cast, + STATE(299), 1, sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(701), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(699), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(703), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(665), 5, sym_comparison_op, - STATE(863), 1, sym_contains_op, - STATE(1027), 1, - sym_identifier, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(483), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(485), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(205), 3, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(149), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(209), 8, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [7136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(677), 49, + anon_sym_SEMI, + anon_sym_COMMA, aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_where_filter_token1, - ACTIONS(97), 9, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -30058,51 +27576,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [9847] = 9, + sym_cast, + sym_and, + sym__constraint, + [7199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, - aux_sym__interval_fields_token1, - ACTIONS(495), 1, - aux_sym__interval_fields_token3, - ACTIONS(497), 1, - aux_sym__interval_fields_token4, - ACTIONS(499), 1, - aux_sym__interval_fields_token5, - STATE(405), 1, - sym__interval_fields, - ACTIONS(493), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 23, - aux_sym_update_statement_token2, + ACTIONS(709), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(707), 49, + anon_sym_SEMI, + anon_sym_COMMA, aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_items_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -30110,8 +27618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -30124,10 +27637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [9922] = 3, + sym_and, + sym__constraint, + [7262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(417), 7, + ACTIONS(695), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30135,7 +27650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(415), 48, + ACTIONS(693), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30184,10 +27699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [9985] = 3, + [7325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 7, + ACTIONS(591), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30195,7 +27710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(411), 48, + ACTIONS(589), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30244,10 +27759,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10048] = 3, + [7388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 7, + ACTIONS(713), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(711), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [7451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30255,7 +27830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(439), 48, + ACTIONS(593), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30304,10 +27879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10111] = 3, + [7514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 7, + ACTIONS(255), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30364,10 +27939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10174] = 3, + [7577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 7, + ACTIONS(713), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30375,7 +27950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(453), 48, + ACTIONS(711), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30424,31 +27999,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10237] = 3, + [7640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 7, + ACTIONS(715), 1, + aux_sym__interval_fields_token1, + ACTIONS(719), 1, + aux_sym__interval_fields_token3, + ACTIONS(721), 1, + aux_sym__interval_fields_token4, + ACTIONS(723), 1, + aux_sym__interval_fields_token5, + STATE(351), 1, + sym__interval_fields, + ACTIONS(717), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(435), 48, + ACTIONS(49), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -30484,137 +28065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10300] = 3, + [7715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(429), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(427), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [10363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(407), 48, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [10426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 6, + ACTIONS(543), 6, aux_sym_alter_column_action_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(443), 49, + ACTIONS(541), 49, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token4, @@ -30664,10 +28125,70 @@ static const uint16_t ts_small_parse_table[] = { sym_cast, sym_and, sym__constraint, - [10489] = 3, + [7778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(103), 7, + ACTIONS(539), 6, + aux_sym_alter_column_action_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(537), 49, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + aux_sym_grant_targets_token4, + aux_sym_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_where_filter_token1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + sym__constraint, + [7841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -30675,7 +28196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 48, + ACTIONS(707), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -30724,346 +28245,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [10552] = 21, + [7904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, + ACTIONS(675), 7, aux_sym_grant_targets_token4, - ACTIONS(329), 1, + aux_sym_trigger_event_token2, anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(403), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 16, + aux_sym_comparison_kw_token1, + ACTIONS(673), 48, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [10651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(501), 1, - anon_sym_LPAREN, - STATE(200), 1, - sym_type_length, - ACTIONS(59), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, + anon_sym_EQ, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [10718] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(97), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - ACTIONS(503), 4, - aux_sym_for_statement_token3, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - STATE(2043), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [10827] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_LPAREN, - STATE(200), 1, - sym_precision, - ACTIONS(59), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [10894] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -31072,65 +28278,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [10985] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(327), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(103), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, @@ -31153,601 +28303,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_and, - [11070] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 30, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, sym_and, - [11157] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - ACTIONS(399), 1, - anon_sym_DASH, - ACTIONS(401), 1, - anon_sym_PLUS, - STATE(386), 1, - sym_comparison_null, - STATE(778), 1, - sym_comparison_kw, - STATE(828), 1, - sym_or, - STATE(829), 1, - sym_comparison_op, - STATE(830), 1, - sym_contains_op, - STATE(840), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(327), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [11252] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(103), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [11328] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - ACTIONS(519), 1, - sym_and, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(119), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [11430] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 4, - aux_sym_grant_targets_token4, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 29, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [11516] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym_and, - [11614] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(101), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 15, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [11706] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(483), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(485), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(101), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 12, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [11806] = 3, + [7967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 6, @@ -31806,66 +28364,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [11868] = 24, + [8029] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(180), 1, + aux_sym_grant_targets_token4, + ACTIONS(201), 1, aux_sym_comparison_kw_token1, - ACTIONS(121), 1, + ACTIONS(232), 1, aux_sym_trigger_event_token2, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, + ACTIONS(734), 1, sym_cast, - ACTIONS(489), 1, - sym_and, - STATE(407), 1, + STATE(343), 1, sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(89), 2, + ACTIONS(192), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(204), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(475), 2, + ACTIONS(728), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(195), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(725), 4, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(483), 2, + anon_sym_PLUS, + sym_and, + ACTIONS(731), 4, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(485), 2, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(133), 3, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(678), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(175), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(115), 4, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [8117] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(749), 1, + sym_cast, + STATE(355), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(743), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(746), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(175), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(737), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(740), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(180), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(668), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(230), 10, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [8207] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(78), 1, + aux_sym_grant_targets_token4, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(257), 1, + aux_sym_trigger_event_token2, + ACTIONS(761), 1, + sym_cast, + STATE(343), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(755), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(752), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(758), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, ACTIONS(75), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(678), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -31875,86 +28567,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(135), 10, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym__identifier, - [11972] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 22, + ACTIONS(73), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [12052] = 3, + [8295] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -32013,356 +28640,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [12114] = 19, + [8357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(103), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [12208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, - anon_sym_LBRACK, - STATE(247), 1, - aux_sym__type_repeat1, - ACTIONS(523), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(125), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [12276] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(205), 1, - anon_sym_COMMA, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(525), 1, - aux_sym_update_statement_token2, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - ACTIONS(541), 1, - sym_and, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - STATE(1027), 1, - sym_identifier, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(535), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(537), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(209), 9, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [12386] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(543), 1, + ACTIONS(764), 1, anon_sym_LPAREN, - STATE(249), 1, - sym_precision, - ACTIONS(59), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [12452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, - anon_sym_LPAREN, - STATE(249), 1, + STATE(168), 1, sym_type_length, - ACTIONS(59), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [12518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(547), 1, - anon_sym_LPAREN, - STATE(239), 1, - sym_precision, - ACTIONS(59), 7, + ACTIONS(45), 7, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_PERCENT, @@ -32370,7 +28655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 45, + ACTIONS(41), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -32416,72 +28701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [12584] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - aux_sym__interval_fields_token1, - ACTIONS(553), 1, - aux_sym__interval_fields_token3, - ACTIONS(555), 1, - aux_sym__interval_fields_token4, - ACTIONS(557), 1, - aux_sym__interval_fields_token5, - STATE(495), 1, - sym__interval_fields, - ACTIONS(551), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(41), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [12658] = 3, + [8423] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(37), 25, @@ -32540,7 +28760,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [12720] = 3, + [8485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(766), 1, + anon_sym_LPAREN, + STATE(168), 1, + sym_precision, + ACTIONS(45), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [8551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 1, + anon_sym_LBRACK, + STATE(191), 1, + aux_sym__type_repeat1, + ACTIONS(770), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(247), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(249), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [8619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 6, @@ -32599,53 +28942,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [12782] = 14, + [8681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 4, + ACTIONS(772), 1, + anon_sym_LBRACK, + STATE(187), 1, + aux_sym__type_repeat1, + ACTIONS(774), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 8, + aux_sym_update_set_token1, aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 38, + ACTIONS(247), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, @@ -32668,37 +29002,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - [12866] = 9, + [8749] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, - aux_sym__interval_fields_token1, - ACTIONS(563), 1, - aux_sym__interval_fields_token3, - ACTIONS(565), 1, - aux_sym__interval_fields_token4, - ACTIONS(567), 1, - aux_sym__interval_fields_token5, - STATE(478), 1, - sym__interval_fields, - ACTIONS(561), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(41), 23, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(788), 1, + sym_cast, + STATE(355), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(782), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(785), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(111), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_RPAREN, + ACTIONS(776), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, + ACTIONS(779), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(116), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(113), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + STATE(668), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -32708,156 +29066,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(43), 24, + ACTIONS(213), 10, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [8839] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 1, aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(346), 1, + anon_sym_COMMA, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(791), 1, + aux_sym_update_statement_token2, + ACTIONS(801), 1, + sym_cast, + STATE(388), 1, + sym_comparison_null, + STATE(882), 1, + sym_identifier, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(797), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(799), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(793), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(795), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(153), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(705), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(350), 9, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [12940] = 16, + [8935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 17, + ACTIONS(803), 1, + anon_sym_LPAREN, + STATE(193), 1, + sym_precision, + ACTIONS(45), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [13028] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(41), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -32867,13 +29213,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 15, + sym_cast, + [9001] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(811), 1, + sym_cast, + STATE(343), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(807), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(805), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(809), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(678), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(149), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, - aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -32882,34 +29286,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym_and, - [13126] = 15, + [9089] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, + ACTIONS(116), 1, + aux_sym_grant_targets_token4, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(215), 1, + aux_sym_trigger_event_token2, + ACTIONS(822), 1, sym_cast, - STATE(407), 1, + STATE(343), 1, sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(475), 2, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(816), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(131), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(813), 4, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(97), 9, + anon_sym_PLUS, + sym_and, + ACTIONS(819), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(678), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -32919,73 +29344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [13212] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(77), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 41, + ACTIONS(111), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - anon_sym_EQ, aux_sym_returning_token1, - aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -32994,193 +29358,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [13288] = 17, + [9177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 3, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [13378] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 21, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [13462] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(487), 1, - sym_cast, - STATE(407), 1, - sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(77), 23, + ACTIONS(825), 1, + anon_sym_LPAREN, + STATE(193), 1, + sym_type_length, + ACTIONS(45), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -33193,6 +29378,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -33204,13 +29390,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(73), 24, + ACTIONS(41), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -33229,51 +29418,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [13538] = 22, + sym_cast, + [9243] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(99), 1, aux_sym_comparison_kw_token1, - ACTIONS(477), 1, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, + ACTIONS(839), 1, sym_cast, - STATE(407), 1, + STATE(355), 1, sym_comparison_null, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(813), 1, - sym_or, - STATE(853), 1, - sym_comparison_op, - STATE(863), 1, - sym_contains_op, - ACTIONS(89), 2, + ACTIONS(90), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(102), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(475), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(483), 2, + ACTIONS(833), 2, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(485), 2, + ACTIONS(836), 2, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, ACTIONS(73), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(115), 4, + ACTIONS(827), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(830), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(78), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -33284,7 +29465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(668), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -33294,784 +29481,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 12, + ACTIONS(255), 10, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [13638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(103), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [13714] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(511), 1, - anon_sym_DASH, - ACTIONS(513), 1, - anon_sym_PLUS, - ACTIONS(517), 1, - sym_cast, - ACTIONS(519), 1, - sym_and, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(515), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [13816] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(509), 1, - anon_sym_SLASH, - ACTIONS(517), 1, - sym_cast, - STATE(396), 1, - sym_comparison_null, - STATE(747), 1, - sym_or, - STATE(751), 1, - sym_comparison_op, - STATE(754), 1, - sym_contains_op, - STATE(757), 1, - sym_comparison_kw, - STATE(760), 1, - sym_other_op, - ACTIONS(507), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_grant_targets_token4, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [13896] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(569), 1, - anon_sym_LBRACK, - STATE(243), 1, - aux_sym__type_repeat1, - ACTIONS(571), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(125), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(127), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [13964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(573), 1, - anon_sym_LPAREN, - STATE(239), 1, - sym_type_length, - ACTIONS(59), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(55), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14030] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(133), 1, - anon_sym_COMMA, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - ACTIONS(541), 1, - sym_and, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(535), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(537), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(135), 11, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, sym__identifier, - [14133] = 3, + [9333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 46, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + ACTIONS(842), 1, aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, + ACTIONS(846), 1, aux_sym__interval_fields_token3, + ACTIONS(848), 1, aux_sym__interval_fields_token4, + ACTIONS(850), 1, aux_sym__interval_fields_token5, + STATE(408), 1, + sym__interval_fields, + ACTIONS(844), 2, + aux_sym__interval_fields_token2, aux_sym__interval_fields_token6, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(145), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14316] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - ACTIONS(587), 1, - sym_and, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(133), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [14417] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - ACTIONS(587), 1, - sym_and, - ACTIONS(591), 1, - anon_sym_COMMA, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - STATE(1116), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(589), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [14522] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(103), 7, + ACTIONS(51), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -34079,7 +29516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 39, + ACTIONS(49), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -34118,52 +29555,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - [14597] = 3, + [9407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 8, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 45, - anon_sym_SEMI, + ACTIONS(852), 1, + aux_sym__interval_fields_token1, + ACTIONS(856), 1, + aux_sym__interval_fields_token3, + ACTIONS(858), 1, + aux_sym__interval_fields_token4, + ACTIONS(860), 1, + aux_sym__interval_fields_token5, + STATE(387), 1, + sym__interval_fields, + ACTIONS(854), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(49), 23, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -34176,1169 +29597,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, + ACTIONS(51), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, sym_and, - [14658] = 22, + sym__identifier, + [9481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(276), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [9542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_LBRACK, + STATE(213), 1, + aux_sym__type_repeat1, + ACTIONS(864), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(247), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [9609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [9670] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(73), 1, anon_sym_COMMA, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(535), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(537), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(81), 1, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [14757] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(878), 1, sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(595), 1, - aux_sym_alter_column_action_token1, - STATE(110), 1, + STATE(388), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(90), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(102), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(872), 2, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + ACTIONS(875), 2, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(593), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [14858] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(73), 22, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(866), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(77), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + ACTIONS(869), 3, anon_sym_SLASH, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, sym_and, - sym__identifier, - [14933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 8, - aux_sym_update_set_token1, + ACTIONS(78), 4, aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [14994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(599), 1, - anon_sym_DOT, - ACTIONS(601), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(176), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [15122] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 6, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 37, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [15201] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_LBRACK, - STATE(279), 1, - aux_sym__type_repeat1, - ACTIONS(605), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(125), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(141), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [15329] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - aux_sym_trigger_event_token2, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(73), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - sym_and, - [15428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [15489] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(77), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_and, - [15564] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(103), 1, - aux_sym_trigger_event_token2, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - sym_and, - [15663] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(103), 4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [15752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(607), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_precision, - ACTIONS(59), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(55), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [15817] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(101), 22, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [15892] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [15977] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(103), 2, - aux_sym_trigger_event_token2, - aux_sym_comparison_kw_token1, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, @@ -35348,95 +29843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - sym_and, - [16070] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, + STATE(705), 5, sym_comparison_op, - STATE(815), 1, sym_contains_op, - STATE(816), 1, sym_comparison_kw, - STATE(825), 1, sym_other_op, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 5, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -35446,8 +29859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_and, - [16153] = 3, + ACTIONS(255), 11, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [9759] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 7, @@ -35505,67 +29929,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [16214] = 25, + [9820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, + ACTIONS(288), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, - ACTIONS(137), 1, aux_sym_trigger_event_token2, - ACTIONS(247), 1, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, + anon_sym_PERCENT, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - STATE(1199), 1, - sym_order_by_direction, - ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(611), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(79), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(286), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -35575,20 +29986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(609), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [16319] = 3, + sym_cast, + [9881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 8, + ACTIONS(31), 8, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -35597,7 +29999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(141), 45, + ACTIONS(29), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -35643,37 +30045,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [16380] = 5, + [9942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 1, - anon_sym_LPAREN, - STATE(289), 1, - sym_type_length, - ACTIONS(59), 7, + ACTIONS(284), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - ACTIONS(55), 44, + sym_and, + sym__identifier, + ACTIONS(282), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, @@ -35683,13 +30089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -35702,41 +30103,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [16445] = 12, + [10003] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(539), 1, + ACTIONS(175), 1, + anon_sym_COMMA, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(893), 1, sym_cast, - STATE(476), 1, + STATE(388), 1, sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(527), 2, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(887), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(890), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(881), 3, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(101), 20, - anon_sym_COMMA, - anon_sym_EQ, anon_sym_PLUS, + ACTIONS(884), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(180), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(177), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + STATE(705), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -35746,19 +30163,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 23, + ACTIONS(230), 11, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + sym__identifier, + [10092] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(898), 1, + aux_sym_alter_column_action_token1, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(896), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [10179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -35770,115 +30276,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [16524] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(101), 1, + ACTIONS(272), 27, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(527), 2, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(535), 2, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(537), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(115), 4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [10240] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 1, aux_sym_grant_targets_token4, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(917), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(911), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(195), 3, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 13, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_and, - sym__identifier, - [16623] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(527), 2, + ACTIONS(908), 4, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(97), 9, + anon_sym_PLUS, + sym_and, + ACTIONS(914), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -35888,82 +30362,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 10, + ACTIONS(175), 12, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 18, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, + anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + [10327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [16710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 23, + ACTIONS(37), 46, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(39), 30, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, + anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, aux_sym__interval_fields_token1, aux_sym__interval_fields_token2, aux_sym__interval_fields_token3, aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [10388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 26, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [10449] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COMMA, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(932), 1, + sym_cast, + STATE(388), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(926), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(929), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(920), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(923), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(116), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(705), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(213), 11, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + sym__identifier, + [10538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(937), 1, + anon_sym_DOT, + ACTIONS(939), 1, + aux_sym_time_expression_token1, + ACTIONS(307), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(311), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -35976,7 +30624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [16771] = 3, + [10605] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 23, @@ -36034,621 +30682,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [16832] = 15, + [10666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 10, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(278), 8, + aux_sym_update_set_token1, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [16917] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_DOT, - ACTIONS(619), 1, - aux_sym_time_expression_token1, - ACTIONS(176), 25, + ACTIONS(276), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(180), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [16984] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(101), 5, - anon_sym_COMMA, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 16, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [17075] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(531), 1, - anon_sym_DASH, - ACTIONS(533), 1, - anon_sym_PLUS, - ACTIONS(539), 1, - sym_cast, - STATE(476), 1, - sym_comparison_null, - STATE(745), 1, - sym_other_op, - STATE(746), 1, - sym_comparison_kw, - STATE(748), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(527), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(101), 19, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 22, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [17158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(157), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [17219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(621), 1, - anon_sym_LBRACK, - STATE(298), 1, - aux_sym__type_repeat1, - ACTIONS(623), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(125), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [17286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(145), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [17347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 26, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [17408] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(625), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(262), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [17514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_where_filter_token1, anon_sym_LBRACK, aux_sym__type_token1, @@ -36679,20 +30740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [17574] = 5, + [10727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - anon_sym_LPAREN, - STATE(339), 1, - sym_type_length, - ACTIONS(55), 25, + ACTIONS(37), 23, anon_sym_COMMA, anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -36712,7 +30767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(59), 25, + ACTIONS(39), 30, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -36725,8 +30780,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, + aux_sym__interval_fields_token1, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -36738,40 +30798,179 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [17638] = 3, + [10788] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(147), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(153), 1, aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + STATE(1031), 1, + sym_order_by_direction, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(943), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(941), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [10879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(116), 1, + aux_sym_grant_targets_token4, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(962), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(956), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(131), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(953), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(959), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(111), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + [10966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(145), 28, + ACTIONS(272), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, - anon_sym_COLON_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, @@ -36781,8 +30980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -36795,14 +30999,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [17698] = 5, + sym_and, + [11027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 1, + ACTIONS(284), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, anon_sym_LBRACK, - STATE(232), 1, - aux_sym__type_repeat1, - ACTIONS(163), 7, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 8, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(286), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 1, + anon_sym_LPAREN, + ACTIONS(967), 1, + anon_sym_DOT, + ACTIONS(969), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -36810,7 +31133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 43, + ACTIONS(307), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -36854,372 +31177,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [17762] = 3, + [11216] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(153), 1, aux_sym_grant_targets_token4, + ACTIONS(155), 1, aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(973), 1, + anon_sym_COMMA, + ACTIONS(981), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + STATE(932), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(977), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(975), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(979), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(971), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [17822] = 3, + [11307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [17882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [17942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(145), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [18002] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(632), 1, + ACTIONS(983), 1, anon_sym_LPAREN, - ACTIONS(634), 1, - anon_sym_DOT, - ACTIONS(636), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(176), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [18068] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_LPAREN, - STATE(346), 1, + STATE(206), 1, sym_precision, - ACTIONS(59), 8, + ACTIONS(45), 7, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 42, + ACTIONS(41), 44, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [18132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(141), 45, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -37258,36 +31310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [18192] = 5, + [11372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, + ACTIONS(985), 1, anon_sym_LPAREN, - STATE(346), 1, + STATE(206), 1, sym_type_length, - ACTIONS(59), 8, + ACTIONS(45), 7, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(55), 42, + ACTIONS(41), 44, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, @@ -37317,59 +31370,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [18256] = 26, + [11437] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(78), 1, + aux_sym_grant_targets_token4, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(996), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(990), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(93), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(987), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(993), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(75), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(73), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [11524] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 1, + anon_sym_LBRACK, + STATE(216), 1, + aux_sym__type_repeat1, + ACTIONS(1001), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(247), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11591] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, anon_sym_BSLASH, - ACTIONS(251), 1, + ACTIONS(418), 1, aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, + ACTIONS(420), 1, aux_sym_update_statement_token1, - ACTIONS(255), 1, + ACTIONS(422), 1, aux_sym_create_type_statement_token1, - ACTIONS(257), 1, + ACTIONS(424), 1, aux_sym_insert_statement_token1, - ACTIONS(259), 1, + ACTIONS(426), 1, aux_sym_insert_conflict_token3, - ACTIONS(261), 1, + ACTIONS(428), 1, aux_sym_delete_statement_token1, - ACTIONS(263), 1, + ACTIONS(430), 1, aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, + ACTIONS(432), 1, aux_sym_grant_statement_token1, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(269), 1, + ACTIONS(436), 1, aux_sym_trigger_scope_token1, - ACTIONS(271), 1, + ACTIONS(438), 1, aux_sym_trigger_exec_token1, - ACTIONS(273), 1, + ACTIONS(440), 1, aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, + ACTIONS(442), 1, aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, + ACTIONS(446), 1, aux_sym_raise_statement_token1, - ACTIONS(281), 1, + ACTIONS(448), 1, aux_sym_if_statement_token1, - ACTIONS(287), 1, + ACTIONS(454), 1, aux_sym_return_statement_token1, - ACTIONS(289), 1, + ACTIONS(456), 1, aux_sym_perform_statement_token1, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(293), 1, + ACTIONS(460), 1, sym__identifier, - ACTIONS(642), 1, + ACTIONS(1003), 1, aux_sym_for_statement_token3, - STATE(1453), 1, + STATE(1405), 1, sym_with_query, - STATE(1975), 1, + STATE(1836), 1, sym_identifier, - STATE(245), 2, + STATE(171), 2, sym__plpgsql_statement, aux_sym_for_statement_repeat1, - STATE(2000), 27, + STATE(1954), 27, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -37397,14 +31582,407 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [18362] = 5, + [11697] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1005), 1, + anon_sym_LBRACK, + STATE(166), 1, + aux_sym__type_repeat1, + ACTIONS(298), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(272), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(276), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 1, + anon_sym_LBRACK, + STATE(257), 1, + aux_sym__type_repeat1, + ACTIONS(1010), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(247), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [11947] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1012), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(178), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12053] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(597), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(600), 1, + aux_sym_update_statement_token1, + ACTIONS(603), 1, + aux_sym_create_type_statement_token1, + ACTIONS(606), 1, + aux_sym_insert_statement_token1, + ACTIONS(609), 1, + aux_sym_insert_conflict_token3, + ACTIONS(612), 1, + aux_sym_delete_statement_token1, + ACTIONS(615), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(618), 1, + aux_sym_grant_statement_token1, + ACTIONS(621), 1, + anon_sym_BSLASH, + ACTIONS(624), 1, + aux_sym_sequence_start_token2, + ACTIONS(627), 1, + aux_sym_trigger_scope_token1, + ACTIONS(630), 1, + aux_sym_trigger_exec_token1, + ACTIONS(633), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(636), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(639), 1, + aux_sym_for_statement_token3, + ACTIONS(641), 1, + aux_sym_raise_statement_token1, ACTIONS(644), 1, + aux_sym_if_statement_token1, + ACTIONS(647), 1, + aux_sym_return_statement_token1, + ACTIONS(650), 1, + aux_sym_perform_statement_token1, + ACTIONS(653), 1, + aux_sym_select_statement_token1, + ACTIONS(656), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 1, anon_sym_LPAREN, - STATE(339), 1, - sym_precision, - ACTIONS(55), 25, + STATE(274), 1, + sym_type_length, + ACTIONS(41), 25, anon_sym_COMMA, anon_sym_EQ, anon_sym_LBRACK, @@ -37430,7 +32008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(59), 25, + ACTIONS(45), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -37456,18 +32034,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [18426] = 5, + [12223] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, - anon_sym_LBRACK, - STATE(268), 1, - aux_sym__type_repeat1, - ACTIONS(172), 25, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1012), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1016), 1, + anon_sym_LPAREN, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1020), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(307), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -37475,6 +32154,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [12395] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_LPAREN, + STATE(274), 1, + sym_precision, + ACTIONS(41), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, @@ -37489,21 +32207,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(174), 25, + ACTIONS(45), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -37515,7 +32233,1008 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [18490] = 3, + [12459] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1024), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12565] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(981), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(977), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(975), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(979), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(1026), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [12651] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1028), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12757] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1030), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(176), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12863] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1028), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(183), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [12969] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1032), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(165), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [13075] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1024), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(196), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [13181] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1034), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [13287] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1036), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [13393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(286), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [13453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [13513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(772), 1, + anon_sym_LBRACK, + STATE(166), 1, + aux_sym__type_repeat1, + ACTIONS(294), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(292), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [13577] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + anon_sym_LPAREN, + STATE(262), 1, + sym_precision, + ACTIONS(45), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [13641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1040), 1, + anon_sym_LPAREN, + STATE(262), 1, + sym_type_length, + ACTIONS(45), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(41), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [13705] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 6, @@ -37572,1761 +33291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [18550] = 26, + [13765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(646), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18656] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(646), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(252), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(521), 1, + ACTIONS(768), 1, anon_sym_LBRACK, - STATE(232), 1, + STATE(200), 1, aux_sym__type_repeat1, - ACTIONS(174), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [18826] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(648), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [18932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(141), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [18992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(157), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [19052] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(650), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(257), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19158] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(650), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19264] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(652), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19370] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - ACTIONS(587), 1, - sym_and, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(654), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [19470] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(656), 1, - anon_sym_LBRACK, - STATE(345), 1, - aux_sym__type_repeat1, - ACTIONS(658), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(125), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [19536] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(660), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(259), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19642] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(660), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19748] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(333), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(336), 1, - aux_sym_update_statement_token1, - ACTIONS(339), 1, - aux_sym_create_type_statement_token1, - ACTIONS(342), 1, - aux_sym_insert_statement_token1, - ACTIONS(345), 1, - aux_sym_insert_conflict_token3, - ACTIONS(348), 1, - aux_sym_delete_statement_token1, - ACTIONS(351), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(354), 1, - aux_sym_grant_statement_token1, - ACTIONS(357), 1, - anon_sym_BSLASH, - ACTIONS(360), 1, - aux_sym_sequence_start_token2, - ACTIONS(363), 1, - aux_sym_trigger_scope_token1, - ACTIONS(366), 1, - aux_sym_trigger_exec_token1, - ACTIONS(369), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(372), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(375), 1, - aux_sym_for_statement_token3, - ACTIONS(377), 1, - aux_sym_raise_statement_token1, - ACTIONS(380), 1, - aux_sym_if_statement_token1, - ACTIONS(383), 1, - aux_sym_return_statement_token1, - ACTIONS(386), 1, - aux_sym_perform_statement_token1, - ACTIONS(389), 1, - aux_sym_select_statement_token1, - ACTIONS(392), 1, - sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19854] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(625), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [19960] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - ACTIONS(587), 1, - sym_and, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(662), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [20060] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(664), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(263), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20166] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(664), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20272] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(666), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20378] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(666), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(266), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20484] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(668), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20590] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(670), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20696] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(672), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(265), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [20802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(674), 1, - anon_sym_LBRACK, - STATE(268), 1, - aux_sym__type_repeat1, - ACTIONS(161), 25, + ACTIONS(292), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -39352,7 +33324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(163), 25, + ACTIONS(294), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -39378,7 +33350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [20866] = 3, + [13829] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 7, @@ -39389,13 +33361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(29), 44, + ACTIONS(29), 45, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -39434,515 +33407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [20925] = 25, + [13889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(144), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2043), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [21028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(679), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(681), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21211] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(66), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2043), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [21314] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - anon_sym_DOT, - ACTIONS(687), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(176), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(689), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21440] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - anon_sym_LBRACK, - STATE(277), 1, - aux_sym__type_repeat1, - ACTIONS(163), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21503] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(694), 1, - anon_sym_LBRACK, - STATE(278), 1, - aux_sym__type_repeat1, - ACTIONS(163), 23, + ACTIONS(278), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -39955,6 +33423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -39966,78 +33435,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(161), 26, + ACTIONS(276), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_COLON_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [21566] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, anon_sym_LBRACK, - STATE(277), 1, - aux_sym__type_repeat1, - ACTIONS(174), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -40050,11 +33464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [21629] = 3, + [13949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 24, + ACTIONS(288), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40066,7 +33479,439 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(286), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [14009] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1042), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(203), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14115] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1042), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14221] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(981), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(977), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(975), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(979), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(1044), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [14307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(282), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [14367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(272), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [14427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + anon_sym_LBRACK, + STATE(200), 1, + aux_sym__type_repeat1, + ACTIONS(296), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(298), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -40079,22 +33924,449 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(29), 27, + [14491] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1049), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14597] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1051), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(204), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14703] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1051), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14809] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1053), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(171), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [14915] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1053), 1, + aux_sym_for_statement_token3, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(173), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [15021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(276), 44, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, + aux_sym_insert_statement_token2, anon_sym_EQ, - anon_sym_DOT, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -40107,10 +34379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [21688] = 3, + sym_and, + [15080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 7, + ACTIONS(1055), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -40118,7 +34393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 44, + ACTIONS(391), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40135,7 +34410,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_offset_token2, aux_sym_where_filter_token1, - anon_sym_LBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -40163,16 +34437,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [21747] = 6, + [15141] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(697), 1, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(69), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1889), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [15244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(1059), 1, anon_sym_DOT, - ACTIONS(701), 1, + ACTIONS(1061), 1, aux_sym_time_expression_token1, - ACTIONS(180), 23, + ACTIONS(311), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -40196,7 +34548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(176), 25, + ACTIONS(307), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -40222,689 +34574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [21812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(145), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [21989] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LBRACK, - STATE(369), 1, - aux_sym__type_repeat1, - ACTIONS(705), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(125), 39, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(163), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(161), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [22172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 7, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(141), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [22231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(243), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(709), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(243), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(243), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(713), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(243), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22475] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LBRACK, - STATE(377), 1, - aux_sym__type_repeat1, - ACTIONS(717), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(125), 22, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(127), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [22540] = 3, + [15309] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 6, @@ -40960,170 +34630,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [22599] = 25, + [15368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, + ACTIONS(298), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(253), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [22702] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_BSLASH, - ACTIONS(251), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(253), 1, - aux_sym_update_statement_token1, - ACTIONS(255), 1, - aux_sym_create_type_statement_token1, - ACTIONS(257), 1, - aux_sym_insert_statement_token1, - ACTIONS(259), 1, - aux_sym_insert_conflict_token3, - ACTIONS(261), 1, - aux_sym_delete_statement_token1, - ACTIONS(263), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(265), 1, - aux_sym_grant_statement_token1, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(269), 1, - aux_sym_trigger_scope_token1, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(273), 1, - aux_sym_open_cursor_statement_token1, - ACTIONS(275), 1, - aux_sym_get_diagnostics_statement_token1, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(287), 1, - aux_sym_return_statement_token1, - ACTIONS(289), 1, - aux_sym_perform_statement_token1, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(248), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2000), 27, - sym__statement, - sym_drop_type_statement, - sym_update_statement, - sym_drop_function_statement, - sym_create_type_statement, - sym_insert_statement, - sym_create_table_statement, - sym_create_schema_statement, - sym_create_index_statement, - sym_delete_statement, - sym_alter_table_statement, - sym_grant_statement, - sym_psql_statement, - sym_create_sequence_statement, - sym_create_trigger_statement, - sym_open_cursor_statement, - sym_get_diagnostics_statement, - sym_for_statement, - sym_raise_statement, - sym_if_statement, - sym_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [22805] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(621), 1, + ACTIONS(296), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_LBRACK, - STATE(278), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [15427] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(201), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [15530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_LBRACK, + STATE(233), 1, aux_sym__type_repeat1, - ACTIONS(174), 23, + ACTIONS(294), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41147,7 +34795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(172), 26, + ACTIONS(292), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41174,16 +34822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [22868] = 3, + [15593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 25, + ACTIONS(1063), 1, + anon_sym_LBRACK, + STATE(298), 1, + aux_sym__type_repeat1, + ACTIONS(1065), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(247), 22, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_DOT, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -41203,7 +34855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(31), 25, + ACTIONS(249), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41216,8 +34868,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - aux_sym_time_expression_token1, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -41229,14 +34881,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [22926] = 3, + [15658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(427), 25, + ACTIONS(1067), 1, + anon_sym_LBRACK, + STATE(215), 1, + aux_sym__type_repeat1, + ACTIONS(298), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -41244,8 +34919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -41258,36 +34938,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(429), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + sym_and, + [15721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 1, + anon_sym_LBRACK, + STATE(215), 1, + aux_sym__type_repeat1, + ACTIONS(294), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(292), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, sym_and, - sym__identifier, - [22984] = 3, + [15784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 7, + ACTIONS(1070), 1, + anon_sym_LPAREN, + ACTIONS(1072), 1, + anon_sym_DOT, + ACTIONS(1074), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(307), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [15849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(286), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [15908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [15967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(272), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1076), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -41295,7 +35237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(407), 43, + ACTIONS(391), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41339,36 +35281,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [23042] = 3, + [16087] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 1, + anon_sym_LBRACK, + STATE(324), 1, + aux_sym__type_repeat1, + ACTIONS(1080), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(247), 39, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, ACTIONS(395), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(397), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41394,10 +35509,146 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23100] = 3, + [16331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 25, + ACTIONS(298), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16390] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(55), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1889), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [16493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1084), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41423,7 +35674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(471), 25, + ACTIONS(395), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41449,10 +35700,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23158] = 3, + [16554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 25, + ACTIONS(1086), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41478,7 +35731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(455), 25, + ACTIONS(395), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41504,10 +35757,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23216] = 3, + [16615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 25, + ACTIONS(1088), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41533,7 +35788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(445), 25, + ACTIONS(395), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41559,10 +35814,316 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23274] = 3, + [16676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 25, + ACTIONS(1090), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 1, + anon_sym_LBRACK, + STATE(233), 1, + aux_sym__type_repeat1, + ACTIONS(298), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [16859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [16920] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_BSLASH, + ACTIONS(418), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(420), 1, + aux_sym_update_statement_token1, + ACTIONS(422), 1, + aux_sym_create_type_statement_token1, + ACTIONS(424), 1, + aux_sym_insert_statement_token1, + ACTIONS(426), 1, + aux_sym_insert_conflict_token3, + ACTIONS(428), 1, + aux_sym_delete_statement_token1, + ACTIONS(430), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(432), 1, + aux_sym_grant_statement_token1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(436), 1, + aux_sym_trigger_scope_token1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(440), 1, + aux_sym_open_cursor_statement_token1, + ACTIONS(442), 1, + aux_sym_get_diagnostics_statement_token1, + ACTIONS(446), 1, + aux_sym_raise_statement_token1, + ACTIONS(448), 1, + aux_sym_if_statement_token1, + ACTIONS(454), 1, + aux_sym_return_statement_token1, + ACTIONS(456), 1, + aux_sym_perform_statement_token1, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + STATE(1405), 1, + sym_with_query, + STATE(1836), 1, + sym_identifier, + STATE(184), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1954), 27, + sym__statement, + sym_drop_type_statement, + sym_update_statement, + sym_drop_function_statement, + sym_create_type_statement, + sym_insert_statement, + sym_create_table_statement, + sym_create_schema_statement, + sym_create_index_statement, + sym_delete_statement, + sym_alter_table_statement, + sym_grant_statement, + sym_psql_statement, + sym_create_sequence_statement, + sym_create_trigger_statement, + sym_open_cursor_statement, + sym_get_diagnostics_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, + sym_execute_statement, + sym_assign_statement, + sym_return_statement, + sym_perform_statement, + sym_do_block, + sym_select_statement, + sym_create_function_statement, + [17023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(593), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41588,7 +36149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(39), 25, + ACTIONS(595), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -41614,10 +36175,1461 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23332] = 3, + [17081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 8, + ACTIONS(711), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(713), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(537), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(541), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(73), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(255), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(677), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(175), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(693), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1097), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1099), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1101), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17783] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1103), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [17843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(175), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(230), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(691), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [17959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(589), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(591), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(543), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(673), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(675), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18133] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1107), 1, + aux_sym_update_statement_token4, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + aux_sym_insert_statement_token2, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1118), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1134), 1, + anon_sym_SQUOTE, + ACTIONS(1136), 1, + aux_sym_array_constructor_token1, + ACTIONS(1138), 1, + aux_sym_time_expression_token4, + ACTIONS(1140), 1, + anon_sym_STAR, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1148), 1, + sym__identifier, + STATE(150), 1, + sym_identifier, + STATE(720), 1, + sym_select_item, + STATE(736), 1, + sym_into, + STATE(767), 1, + sym_select_from, + STATE(821), 1, + sym_select_where, + STATE(842), 1, + sym_select_group_by, + STATE(919), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(998), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1154), 1, + sym__select_limit_offset, + ACTIONS(1105), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1114), 2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + ACTIONS(1146), 3, + sym_true, + sym_false, + sym_number, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(45), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [18259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(711), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1008), 1, + anon_sym_LBRACK, + STATE(258), 1, + aux_sym__type_repeat1, + ACTIONS(294), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(292), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18379] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 1, + anon_sym_LBRACK, + STATE(258), 1, + aux_sym__type_repeat1, + ACTIONS(298), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(292), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18499] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1107), 1, + aux_sym_update_statement_token4, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1118), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1134), 1, + anon_sym_SQUOTE, + ACTIONS(1136), 1, + aux_sym_array_constructor_token1, + ACTIONS(1138), 1, + aux_sym_time_expression_token4, + ACTIONS(1140), 1, + anon_sym_STAR, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1148), 1, + sym__identifier, + ACTIONS(1155), 1, + aux_sym_insert_statement_token2, + STATE(150), 1, + sym_identifier, + STATE(722), 1, + sym_select_item, + STATE(728), 1, + sym_into, + STATE(762), 1, + sym_select_from, + STATE(813), 1, + sym_select_where, + STATE(860), 1, + sym_select_group_by, + STATE(915), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(996), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1158), 2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + ACTIONS(1146), 3, + sym_true, + sym_false, + sym_number, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(45), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [18625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(685), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(687), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [18683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -41626,7 +37638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(29), 42, + ACTIONS(276), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41669,65 +37681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [23390] = 3, + [18741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(161), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [23448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 7, + ACTIONS(675), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -41735,7 +37692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(427), 43, + ACTIONS(673), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -41779,7 +37736,1306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [23506] = 3, + [18799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(255), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(73), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(593), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(589), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [18973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [19031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(286), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(288), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(282), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(284), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(551), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 44, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [19263] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1160), 1, + anon_sym_LPAREN, + ACTIONS(1162), 1, + anon_sym_DOT, + ACTIONS(1164), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(307), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [19327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(274), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 25, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(278), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19443] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1166), 1, + anon_sym_LPAREN, + ACTIONS(1168), 1, + anon_sym_DOT, + ACTIONS(1170), 1, + aux_sym_time_expression_token1, + ACTIONS(307), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(311), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(286), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [19565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(294), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19623] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + ACTIONS(1174), 1, + aux_sym_update_set_token1, + ACTIONS(1176), 1, + aux_sym_select_offset_token2, + STATE(242), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(1172), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [19711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(677), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(679), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(549), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [19827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(709), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [19885] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(981), 1, + sym_cast, + STATE(390), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(977), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(975), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(979), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(664), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + ACTIONS(1178), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [19969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 7, + aux_sym_update_set_token1, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [20027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(282), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [20085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 8, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(272), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [20143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(693), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(695), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [20201] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(33), 25, @@ -41834,104 +39090,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23564] = 3, + [20259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 43, - anon_sym_SEMI, + ACTIONS(29), 25, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(31), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, aux_sym_time_expression_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(449), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(451), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -41944,505 +39145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [23680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23738] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(423), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(425), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(421), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [23854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(453), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(435), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [23970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(721), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(723), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24208] = 3, + [20317] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 25, @@ -42497,35 +39200,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [24266] = 4, + [20375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 43, + ACTIONS(37), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -42533,13 +39215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -42552,11 +39229,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, + ACTIONS(39), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, sym_and, - [24326] = 3, + sym__identifier, + [20433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 7, + ACTIONS(533), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(535), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [20491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -42564,7 +39321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(439), 43, + ACTIONS(533), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -42608,554 +39365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [24384] = 3, + [20549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 25, + ACTIONS(31), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(29), 43, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(417), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(413), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(443), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(101), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(103), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24616] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - ACTIONS(729), 1, - aux_sym_update_set_token1, - ACTIONS(731), 1, - aux_sym_select_offset_token2, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(727), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [24718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [24834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(407), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(409), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24892] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, anon_sym_LPAREN, - ACTIONS(735), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_DOT, - ACTIONS(737), 1, aux_sym_time_expression_token1, - ACTIONS(176), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(180), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [24956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(163), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 44, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_LBRACK, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -43183,305 +39420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25014] = 3, + [20607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(157), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(145), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 8, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(153), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25188] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(577), 1, - anon_sym_SLASH, - ACTIONS(579), 1, - anon_sym_DASH, - ACTIONS(581), 1, - anon_sym_PLUS, - ACTIONS(585), 1, - sym_cast, - ACTIONS(587), 1, - sym_and, - STATE(456), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(809), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(575), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(583), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(739), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - [25286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 25, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(143), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 7, + ACTIONS(709), 7, aux_sym_update_set_token1, aux_sym_grant_targets_token4, anon_sym_SLASH, @@ -43489,7 +39431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(172), 43, + ACTIONS(707), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43533,24 +39475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25402] = 6, + [20665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_DOT, - ACTIONS(745), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 7, + ACTIONS(31), 8, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(176), 40, + ACTIONS(29), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -43564,149 +39501,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(153), 25, - anon_sym_COMMA, - anon_sym_EQ, anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, @@ -43716,6 +39510,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [20723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, @@ -43730,21 +39559,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(155), 25, + ACTIONS(539), 25, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, @@ -43756,27 +39585,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [25640] = 5, + [20781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(656), 1, + ACTIONS(545), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(547), 25, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [20839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 1, anon_sym_LBRACK, - STATE(354), 1, + STATE(325), 1, aux_sym__type_repeat1, - ACTIONS(174), 6, + ACTIONS(292), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(294), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [20900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(172), 42, + ACTIONS(175), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_trigger_event_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -43813,199 +39750,627 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25702] = 3, + [20957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 8, + ACTIONS(535), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(141), 42, + ACTIONS(533), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(593), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(693), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(711), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(707), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(589), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(677), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(292), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [21413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(549), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 25, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(159), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(172), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(174), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -44033,2049 +40398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [25934] = 3, + [21641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(435), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(437), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [25992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(77), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [26050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(439), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(441), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [26108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(747), 1, - anon_sym_LBRACK, - STATE(354), 1, - aux_sym__type_repeat1, - ACTIONS(163), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(433), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [26286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26344] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(752), 1, - aux_sym_update_statement_token4, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(877), 1, - sym_select_item, - STATE(886), 1, - sym_into, - STATE(915), 1, - sym_select_from, - STATE(977), 1, - sym_select_where, - STATE(1019), 1, - sym_select_group_by, - STATE(1070), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1149), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1365), 1, - sym__select_limit_offset, - ACTIONS(750), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(756), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - ACTIONS(788), 3, - sym_true, - sym_false, - sym_number, - STATE(58), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [26470] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(752), 1, - aux_sym_update_statement_token4, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(874), 1, - sym_select_item, - STATE(896), 1, - sym_into, - STATE(924), 1, - sym_select_from, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1072), 1, - sym_select_having, - STATE(1127), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(788), 3, - sym_true, - sym_false, - sym_number, - ACTIONS(794), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - STATE(58), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [26596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 25, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(147), 25, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [26654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 7, - aux_sym_update_set_token1, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_offset_token2, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(796), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [26771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(453), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(443), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [26999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - anon_sym_LBRACK, - STATE(370), 1, - aux_sym__type_repeat1, - ACTIONS(174), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27231] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(798), 1, - anon_sym_LBRACK, - STATE(370), 1, - aux_sym__type_repeat1, - ACTIONS(163), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(161), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(801), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [27408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(803), 1, - anon_sym_LBRACK, - STATE(373), 1, - aux_sym__type_repeat1, - ACTIONS(161), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(163), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [27469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_LBRACK, - STATE(373), 1, - aux_sym__type_repeat1, - ACTIONS(172), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(174), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [27701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [27760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(808), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [27819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(810), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(812), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [27994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(407), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(427), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(435), 43, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 6, + ACTIONS(255), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, @@ -46126,17 +40452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28222] = 3, + [21698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 6, + ACTIONS(294), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(439), 43, + ACTIONS(292), 43, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46180,10 +40506,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28279] = 3, + [21755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(174), 23, + ACTIONS(687), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(673), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21869] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1180), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -46207,12 +40643,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(172), 26, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - anon_sym_COLON_EQ, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -46234,19 +40669,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28336] = 4, + [21928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(814), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, + ACTIONS(543), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 42, + ACTIONS(541), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [21985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(537), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46289,19 +40832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28395] = 4, + [22101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(816), 1, + ACTIONS(1184), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 6, + ACTIONS(395), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 42, + ACTIONS(391), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46344,17 +40887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28454] = 3, + [22160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 6, + ACTIONS(1186), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 43, + ACTIONS(391), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46370,119 +40915,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1188), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [28511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + STATE(323), 1, + aux_sym__type_repeat1, + ACTIONS(298), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(443), 25, + ACTIONS(296), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [28567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1078), 1, + anon_sym_LBRACK, + STATE(323), 1, + aux_sym__type_repeat1, + ACTIONS(294), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(453), 25, + ACTIONS(292), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -46490,8 +41089,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -46504,12 +41108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28623] = 4, + sym_and, + [22400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(818), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 23, + ACTIONS(1193), 1, + anon_sym_LBRACK, + STATE(325), 1, + aux_sym__type_repeat1, + ACTIONS(296), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -46533,7 +41140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(243), 24, + ACTIONS(298), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -46558,10 +41165,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [28681] = 3, + [22461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 23, + ACTIONS(1196), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -46585,7 +41194,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(435), 25, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46611,10 +41220,1396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28737] = 3, + [22520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 6, + ACTIONS(1198), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1200), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(593), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(541), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1202), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(685), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1204), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [22922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(673), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [22978] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(537), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(689), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(707), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(541), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(711), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(677), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(677), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(175), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1208), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(391), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(255), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(73), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(693), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(693), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(533), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(673), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [23934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(593), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [23990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(255), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, @@ -46664,33 +42659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28793] = 4, + [24046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(820), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, + ACTIONS(591), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(239), 40, + ACTIONS(589), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -46718,10 +42712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [28851] = 3, + [24102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 23, + ACTIONS(230), 23, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -46745,7 +42739,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(439), 25, + ACTIONS(175), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -46771,84 +42765,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [28907] = 37, + [24158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(822), 1, + ACTIONS(591), 23, + aux_sym_update_statement_token2, aux_sym_update_statement_token4, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(826), 1, aux_sym_insert_statement_token2, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, sym__identifier, - STATE(282), 1, + ACTIONS(589), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24214] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1210), 1, + aux_sym__interval_fields_token1, + ACTIONS(1214), 1, + aux_sym__interval_fields_token3, + ACTIONS(1216), 1, + aux_sym__interval_fields_token4, + ACTIONS(1218), 1, + aux_sym__interval_fields_token5, + STATE(557), 1, + sym__interval_fields, + ACTIONS(1212), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(49), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(537), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24338] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1220), 1, + aux_sym_update_statement_token4, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1224), 1, + aux_sym_insert_statement_token2, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, + sym__identifier, + STATE(209), 1, sym_identifier, - STATE(765), 1, - sym_not, - STATE(891), 1, + STATE(735), 1, sym_select_item, - STATE(927), 1, + STATE(764), 1, sym_into, - STATE(964), 1, + STATE(807), 1, sym_select_from, - STATE(999), 1, + STATE(846), 1, sym_select_where, - STATE(1080), 1, + STATE(910), 1, sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1190), 1, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1495), 1, + STATE(1305), 1, sym__select_limit_offset, - ACTIONS(792), 2, + ACTIONS(1153), 2, anon_sym_SEMI, anon_sym_RPAREN, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(840), 3, + ACTIONS(1238), 3, sym_true, sym_false, sym_number, - STATE(130), 9, + STATE(687), 3, + sym_minus, + sym_plus, + sym_not, + STATE(79), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -46858,7 +43016,587 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [29031] = 3, + [24460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(707), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(549), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(296), 41, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 6, + aux_sym_grant_targets_token4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [24684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(711), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 24, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(298), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [24796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(545), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 23, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(549), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [24908] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1220), 1, + aux_sym_update_statement_token4, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1224), 1, + aux_sym_insert_statement_token2, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, + sym__identifier, + STATE(209), 1, + sym_identifier, + STATE(741), 1, + sym_select_item, + STATE(774), 1, + sym_into, + STATE(810), 1, + sym_select_from, + STATE(840), 1, + sym_select_where, + STATE(922), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(988), 1, + sym_select_having, + STATE(1034), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1372), 1, + sym__select_limit_offset, + ACTIONS(1105), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(1238), 3, + sym_true, + sym_false, + sym_number, + STATE(687), 3, + sym_minus, + sym_plus, + sym_not, + STATE(79), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [25030] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(350), 1, + aux_sym_insert_statement_token2, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(1242), 1, + aux_sym_update_statement_token2, + ACTIONS(1252), 1, + sym_cast, + STATE(556), 1, + sym_comparison_null, + STATE(882), 1, + sym_identifier, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1248), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1250), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(346), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1244), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1246), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(153), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(707), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [25120] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 23, @@ -46911,12 +43649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [29087] = 4, + [25176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1254), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 23, + ACTIONS(391), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -46940,7 +43678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(243), 24, + ACTIONS(395), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -46965,38 +43703,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [29145] = 3, + [25234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(397), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(535), 6, aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(395), 25, + ACTIONS(533), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_trigger_event_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -47004,8 +43736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -47018,86 +43755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [29201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, sym_and, - sym__identifier, - ACTIONS(427), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29257] = 4, + [25290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(846), 1, + ACTIONS(1256), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 40, - anon_sym_SEMI, + ACTIONS(391), 23, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, @@ -47105,13 +43771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -47124,17 +43785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - sym_and, - [29315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 23, + ACTIONS(395), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, @@ -47152,816 +43810,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(407), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29371] = 4, + [25348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(848), 1, + ACTIONS(1258), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(73), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [29541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(439), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(850), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(239), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29655] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(822), 1, - aux_sym_update_statement_token4, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(826), 1, - aux_sym_insert_statement_token2, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(889), 1, - sym_select_item, - STATE(929), 1, - sym_into, - STATE(955), 1, - sym_select_from, - STATE(1007), 1, - sym_select_where, - STATE(1054), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1144), 1, - sym_select_having, - STATE(1186), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1461), 1, - sym__select_limit_offset, - ACTIONS(750), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(840), 3, - sym_true, - sym_false, - sym_number, - STATE(130), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [29779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(411), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(415), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [29947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(435), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(469), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(431), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(423), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 23, + ACTIONS(391), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -47985,7 +43839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(243), 24, + ACTIONS(395), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -48010,1012 +43864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [30285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(415), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(427), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30397] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(854), 1, - aux_sym__interval_fields_token1, - ACTIONS(858), 1, - aux_sym__interval_fields_token3, - ACTIONS(860), 1, - aux_sym__interval_fields_token4, - ACTIONS(862), 1, - aux_sym__interval_fields_token5, - STATE(612), 1, - sym__interval_fields, - ACTIONS(856), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(41), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [30465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(161), 24, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(163), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(239), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(243), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [30635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30803] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(866), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_offset_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [30899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(443), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [30955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [31011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 23, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(449), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [31067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(407), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31123] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(209), 1, - aux_sym_insert_statement_token2, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(868), 1, - aux_sym_update_statement_token2, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - ACTIONS(884), 1, - sym_and, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - STATE(1027), 1, - sym_identifier, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(878), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(880), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(205), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [31227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(453), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(103), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(101), 42, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_trigger_event_token2, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31395] = 3, + [25406] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 23, @@ -49068,17 +43917,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [31451] = 3, + [25462] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 6, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(1260), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [25544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(391), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(395), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 6, aux_sym_grant_targets_token4, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(469), 42, + ACTIONS(292), 42, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49121,10 +44090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [31507] = 3, + [25658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 7, + ACTIONS(551), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -49132,60 +44101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(161), 41, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(427), 40, + ACTIONS(549), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -49226,36 +44142,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [31618] = 18, + [25713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, + ACTIONS(685), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, - ACTIONS(882), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, sym_cast, - STATE(626), 1, + ACTIONS(687), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(589), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(591), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [25823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(711), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(541), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(677), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [25988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(537), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(539), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26043] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(1276), 1, + sym_cast, + STATE(556), 1, sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(89), 2, + ACTIONS(90), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(870), 2, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1270), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1273), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(255), 3, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + sym__identifier, + ACTIONS(1264), 3, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(115), 4, + anon_sym_PLUS, + ACTIONS(1267), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(78), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -49266,24 +44504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(101), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 8, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(97), 9, + STATE(707), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -49293,96 +44520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [31703] = 37, + [26126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(794), 1, - aux_sym_for_statement_token2, - ACTIONS(826), 1, - aux_sym_insert_statement_token2, - ACTIONS(886), 1, - aux_sym_update_statement_token4, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(907), 1, - sym_select_item, - STATE(935), 1, - sym_into, - STATE(970), 1, - sym_select_from, - STATE(1044), 1, - sym_select_where, - STATE(1101), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1174), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1609), 1, - sym__select_limit_offset, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(902), 3, - sym_true, - sym_false, - sym_number, - STATE(162), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [31826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(423), 23, + ACTIONS(673), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -49406,7 +44547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(425), 24, + ACTIONS(675), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -49431,20 +44572,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [31881] = 3, + [26181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 22, + ACTIONS(175), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(230), 24, aux_sym_update_statement_token2, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym__interval_fields_token1, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -49457,85 +44624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [31936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(439), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [31991] = 3, + [26236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 22, @@ -49587,691 +44676,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [32046] = 27, + [26291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, + ACTIONS(230), 7, aux_sym_grant_targets_token4, - ACTIONS(137), 1, aux_sym_trigger_event_token2, - ACTIONS(247), 1, anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - ACTIONS(908), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(175), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - ACTIONS(910), 1, - aux_sym_index_using_token1, - STATE(318), 1, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [26346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(533), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(535), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [26401] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + STATE(242), 1, sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, sym_comparison_op, - STATE(850), 1, - sym_or, - STATE(1543), 1, - sym_into, - STATE(1808), 1, - sym_execute_using, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(906), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32149] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(912), 6, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32242] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(449), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(449), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(451), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(453), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32407] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(914), 1, - aux_sym_update_statement_token2, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - ACTIONS(930), 1, - sym_and, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, sym_comparison_kw, - STATE(1027), 1, - sym_identifier, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(924), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(926), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(205), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32508] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, sym_other_op, - STATE(733), 1, sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 15, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(73), 40, + ACTIONS(1279), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(469), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32691] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - ACTIONS(884), 1, - sym_and, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(878), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(880), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(135), 3, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - sym__identifier, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [32788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(415), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(417), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(411), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -50281,643 +44845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(413), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [32898] = 3, + [26482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(174), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(172), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [32953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(443), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(395), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(431), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(435), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(427), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(429), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(423), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(419), 40, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [33338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(419), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(421), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33393] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(878), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(880), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(101), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(103), 5, + ACTIONS(39), 22, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(101), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(103), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33541] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(932), 1, aux_sym__interval_fields_token1, - ACTIONS(936), 1, - aux_sym__interval_fields_token3, - ACTIONS(938), 1, - aux_sym__interval_fields_token4, - ACTIONS(940), 1, - aux_sym__interval_fields_token5, - STATE(637), 1, - sym__interval_fields, - ACTIONS(934), 2, aux_sym__interval_fields_token2, + aux_sym__interval_fields_token3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - ACTIONS(43), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -50930,7 +44871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(41), 25, + ACTIONS(37), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -50956,336 +44897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [33608] = 10, + [26537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(103), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(435), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(437), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(35), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(73), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(77), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33842] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(77), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(73), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [33911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(407), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(409), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [33966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 7, + ACTIONS(535), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -51293,7 +44908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(415), 40, + ACTIONS(533), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -51334,10 +44949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [34021] = 3, + [26592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 7, + ACTIONS(695), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -51345,7 +44960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(411), 40, + ACTIONS(693), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -51386,10 +45001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [34076] = 3, + [26647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(431), 23, + ACTIONS(545), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -51413,7 +45028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(433), 24, + ACTIONS(547), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -51438,110 +45053,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [34131] = 3, + [26702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(397), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(539), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34186] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 21, + ACTIONS(537), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -51553,10 +45103,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [34263] = 3, + sym_cast, + sym_and, + [26757] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(439), 23, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(1285), 1, + aux_sym_index_using_token1, + STATE(242), 1, + sym_comparison_null, + STATE(1360), 1, + sym_into, + STATE(1721), 1, + sym_execute_using, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1281), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [26846] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + aux_sym_for_statement_token2, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1224), 1, + aux_sym_insert_statement_token2, + ACTIONS(1287), 1, + aux_sym_update_statement_token4, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + STATE(746), 1, + sym_select_item, + STATE(797), 1, + sym_into, + STATE(814), 1, + sym_select_from, + STATE(877), 1, + sym_select_where, + STATE(958), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1019), 1, + sym_select_having, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1117), 1, + sym_select_order_by, + STATE(1439), 1, + sym__select_limit_offset, + ACTIONS(1303), 3, + sym_true, + sym_false, + sym_number, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(127), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [26967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -51580,7 +45286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(441), 24, + ACTIONS(294), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -51605,7 +45311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [34318] = 3, + [27022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(37), 23, @@ -51657,10 +45363,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [34373] = 3, + [27077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(103), 7, + ACTIONS(593), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(595), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [27132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -51668,7 +45426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(101), 40, + ACTIONS(292), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -51709,10 +45467,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [34428] = 3, + [27187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(172), 23, + ACTIONS(547), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(545), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [27242] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1307), 1, + aux_sym__interval_fields_token1, + ACTIONS(1311), 1, + aux_sym__interval_fields_token3, + ACTIONS(1313), 1, + aux_sym__interval_fields_token4, + ACTIONS(1315), 1, + aux_sym__interval_fields_token5, + STATE(565), 1, + sym__interval_fields, + ACTIONS(1309), 2, + aux_sym__interval_fields_token2, + aux_sym__interval_fields_token6, + ACTIONS(51), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(49), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [27309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 23, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -51736,7 +45604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - ACTIONS(174), 24, + ACTIONS(691), 24, aux_sym_update_statement_token2, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, @@ -51761,83 +45629,198 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - [34483] = 37, + [27364] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, - aux_sym_for_statement_token2, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(762), 1, - aux_sym_grant_roles_token2, - ACTIONS(764), 1, - aux_sym_select_having_token1, - ACTIONS(766), 1, - aux_sym_select_limit_token1, - ACTIONS(768), 1, - aux_sym_select_offset_token1, - ACTIONS(770), 1, - aux_sym_select_order_by_token1, - ACTIONS(774), 1, - aux_sym_where_filter_token1, - ACTIONS(784), 1, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(826), 1, - aux_sym_insert_statement_token2, - ACTIONS(886), 1, - aux_sym_update_statement_token4, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, anon_sym_STAR, - ACTIONS(904), 1, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(1279), 6, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [27443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(673), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [27498] = 36, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1120), 1, + aux_sym_grant_roles_token2, + ACTIONS(1122), 1, + aux_sym_select_having_token1, + ACTIONS(1124), 1, + aux_sym_select_limit_token1, + ACTIONS(1126), 1, + aux_sym_select_offset_token1, + ACTIONS(1128), 1, + aux_sym_select_order_by_token1, + ACTIONS(1132), 1, + aux_sym_where_filter_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1158), 1, + aux_sym_for_statement_token2, + ACTIONS(1224), 1, + aux_sym_insert_statement_token2, + ACTIONS(1287), 1, + aux_sym_update_statement_token4, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1305), 1, sym__identifier, - STATE(333), 1, + STATE(275), 1, sym_identifier, - STATE(759), 1, - sym_not, - STATE(909), 1, + STATE(758), 1, sym_select_item, - STATE(942), 1, + STATE(793), 1, sym_into, - STATE(965), 1, + STATE(816), 1, sym_select_from, - STATE(1036), 1, + STATE(890), 1, sym_select_where, - STATE(1085), 1, + STATE(931), 1, sym_select_group_by, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1165), 1, + STATE(1005), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1227), 1, + STATE(1067), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1613), 1, + STATE(1437), 1, sym__select_limit_offset, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(902), 3, + ACTIONS(1303), 3, sym_true, sym_false, sym_number, - STATE(162), 9, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(127), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -51847,367 +45830,10 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [34606] = 15, + [27619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 14, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34685] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(870), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 10, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - [34766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(445), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(455), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 23, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - ACTIONS(471), 24, - aux_sym_update_statement_token2, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [34931] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(912), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 7, + ACTIONS(255), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -52215,7 +45841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(407), 40, + ACTIONS(73), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -52256,68 +45882,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [35081] = 22, + [27674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(874), 1, - anon_sym_DASH, - ACTIONS(876), 1, - anon_sym_PLUS, - ACTIONS(882), 1, - sym_cast, - STATE(626), 1, - sym_comparison_null, - STATE(732), 1, - sym_other_op, - STATE(733), 1, - sym_or, - STATE(808), 1, - sym_comparison_kw, - STATE(823), 1, - sym_contains_op, - STATE(849), 1, - sym_comparison_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(870), 2, + ACTIONS(73), 23, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(878), 2, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(880), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(255), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - ACTIONS(73), 3, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [27729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(35), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [27784] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(155), 1, + aux_sym_trigger_event_token2, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(1317), 1, + aux_sym_update_statement_token2, + ACTIONS(1327), 1, + sym_cast, + STATE(569), 1, + sym_comparison_null, + STATE(882), 1, + sym_identifier, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1323), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1325), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(346), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(115), 4, + ACTIONS(1319), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1321), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(153), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(77), 5, + STATE(713), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [27871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(689), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [27926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(543), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [27981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(707), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [28036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(677), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(679), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(693), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(695), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(713), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(551), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 23, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + ACTIONS(709), 24, + aux_sym_update_statement_token2, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + [28311] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(183), 1, + aux_sym_trigger_event_token2, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(1341), 1, + sym_cast, + STATE(556), 1, + sym_comparison_null, + ACTIONS(192), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1335), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1338), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(175), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(230), 3, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - aux_sym_trigger_event_token2, - sym_and, sym__identifier, - ACTIONS(97), 9, + ACTIONS(1329), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1332), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(180), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(177), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(707), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -52327,390 +46536,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [35174] = 22, + [28394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(918), 1, + ACTIONS(595), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, anon_sym_SLASH, - ACTIONS(920), 1, anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(89), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(924), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(926), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(73), 3, + aux_sym_comparison_kw_token1, + ACTIONS(593), 40, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(77), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - sym_and, - sym__identifier, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(75), 5, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35266] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(662), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - anon_sym_RBRACK, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35358] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(916), 2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(103), 9, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - [35438] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(115), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(101), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 7, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35522] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - ACTIONS(101), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(103), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - [35600] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 13, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -52722,7 +46586,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [35676] = 3, + sym_cast, + sym_and, + [28449] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, + aux_sym_comparison_kw_token1, + ACTIONS(1356), 1, + sym_cast, + STATE(556), 1, + sym_comparison_null, + ACTIONS(128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(140), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(1350), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1353), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(111), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(213), 3, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + sym__identifier, + ACTIONS(1344), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1347), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(116), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(707), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [28532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(687), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(685), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [28587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 7, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_comparison_kw_token1, + ACTIONS(589), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + sym_and, + [28642] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 21, @@ -52773,119 +46809,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35730] = 24, + [28696] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(121), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, + ACTIONS(906), 1, sym_cast, - ACTIONS(930), 1, - sym_and, - STATE(640), 1, + STATE(68), 1, sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(135), 2, - aux_sym_update_statement_token2, - sym__identifier, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(924), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(926), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(133), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(115), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 7, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(942), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - ACTIONS(435), 29, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(900), 4, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(1044), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + anon_sym_RBRACK, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -52895,9 +46872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [35882] = 3, + [28774] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 21, @@ -52948,55 +46923,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [35936] = 10, + [28828] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(77), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, + ACTIONS(183), 1, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(201), 1, + aux_sym_comparison_kw_token1, + ACTIONS(1371), 1, + sym_cast, + STATE(569), 1, + sym_comparison_null, + ACTIONS(192), 2, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, + ACTIONS(204), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(230), 2, + aux_sym_update_statement_token2, + sym__identifier, + ACTIONS(1365), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1368), 2, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(73), 24, + ACTIONS(175), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(1359), 3, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PLUS, + ACTIONS(1362), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(180), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(177), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, + STATE(713), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(207), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53006,128 +46988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [36004] = 10, + [28910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(103), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36072] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(928), 1, - sym_cast, - STATE(640), 1, - sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(103), 14, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(101), 22, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 7, + ACTIONS(595), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -53135,7 +46999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_comparison_kw_token1, - ACTIONS(944), 10, + ACTIONS(1374), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -53146,7 +47010,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - ACTIONS(411), 29, + ACTIONS(593), 29, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR, @@ -53176,47 +47040,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PIPE_DASH, sym_cast, sym_and, - [36200] = 5, + [28966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(946), 1, - anon_sym_LPAREN, - STATE(538), 1, - sym_type_length, - ACTIONS(59), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, + ACTIONS(691), 7, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, + ACTIONS(1377), 10, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + ACTIONS(689), 29, + anon_sym_COMMA, anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, @@ -53229,56 +47091,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [36258] = 22, + sym_and, + [29022] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(119), 1, + aux_sym_trigger_event_token2, + ACTIONS(137), 1, aux_sym_comparison_kw_token1, - ACTIONS(918), 1, - anon_sym_SLASH, - ACTIONS(920), 1, - anon_sym_DASH, - ACTIONS(922), 1, - anon_sym_PLUS, - ACTIONS(928), 1, + ACTIONS(1392), 1, sym_cast, - STATE(640), 1, + STATE(569), 1, sym_comparison_null, - STATE(763), 1, - sym_or, - STATE(768), 1, - sym_comparison_op, - STATE(786), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(871), 1, - sym_comparison_kw, - ACTIONS(89), 2, + ACTIONS(128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(140), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(916), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(924), 2, + ACTIONS(213), 2, + aux_sym_update_statement_token2, + sym__identifier, + ACTIONS(1386), 2, aux_sym_comparison_null_token1, aux_sym_comparison_null_token3, - ACTIONS(926), 2, + ACTIONS(1389), 2, aux_sym_comparison_null_token2, aux_sym_comparison_null_token4, - ACTIONS(101), 3, + ACTIONS(111), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(103), 4, - aux_sym_update_statement_token2, - aux_sym_trigger_event_token2, + ACTIONS(1380), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1383), 3, + anon_sym_SLASH, + anon_sym_DASH, sym_and, + ACTIONS(116), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(113), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(713), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(143), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [29104] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + aux_sym_trigger_event_token2, + ACTIONS(99), 1, + aux_sym_comparison_kw_token1, + ACTIONS(1407), 1, + sym_cast, + STATE(569), 1, + sym_comparison_null, + ACTIONS(90), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(102), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(255), 2, + aux_sym_update_statement_token2, sym__identifier, - ACTIONS(115), 4, + ACTIONS(1401), 2, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + ACTIONS(1404), 2, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + ACTIONS(73), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1395), 3, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + ACTIONS(1398), 3, + anon_sym_SLASH, + anon_sym_DASH, + sym_and, + ACTIONS(78), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, @@ -53289,306 +47206,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(948), 1, - anon_sym_LPAREN, - STATE(538), 1, - sym_precision, - ACTIONS(59), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, - anon_sym_LBRACK, - STATE(577), 1, - aux_sym__type_repeat1, - ACTIONS(952), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(125), 24, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_LPAREN, - STATE(581), 1, - sym_type_length, - ACTIONS(59), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36524] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, + STATE(713), 5, sym_comparison_op, - STATE(1570), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(105), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [29186] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 1, + anon_sym_LPAREN, + STATE(476), 1, + sym_precision, + ACTIONS(45), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(89), 2, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(956), 2, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1412), 1, + anon_sym_LPAREN, + STATE(476), 1, + sym_type_length, + ACTIONS(45), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29302] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(153), 1, + aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(951), 1, + sym_cast, + STATE(242), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(947), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 3, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(945), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(949), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(1026), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(655), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [29381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_type_length, + ACTIONS(45), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1416), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_precision, + ACTIONS(45), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(41), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [29495] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + STATE(68), 1, + sym_comparison_null, + STATE(1309), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1418), 2, anon_sym_SEMI, aux_sym_for_statement_token2, - ACTIONS(79), 4, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36619] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(115), 1, - aux_sym_grant_targets_token4, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - ACTIONS(301), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_PLUS, - ACTIONS(317), 1, - sym_and, - STATE(318), 1, - sym_comparison_null, - STATE(835), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(850), 1, - sym_or, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(245), 2, + ACTIONS(900), 4, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(79), 3, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(305), 4, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(654), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -53598,2628 +47559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [36712] = 5, + [29576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LPAREN, - STATE(581), 1, - sym_precision, - ACTIONS(59), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(55), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, + ACTIONS(1422), 1, anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [36769] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(962), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1612), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36863] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(964), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1747), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [36957] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(966), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1673), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(153), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [37103] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(968), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1672), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37197] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(970), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1758), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37291] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(972), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1655), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37385] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(974), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1652), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37479] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(976), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1607), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37573] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(978), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1577), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37667] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(980), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1627), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37761] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(982), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1696), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37855] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(984), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1621), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [37949] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(986), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1647), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38043] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(988), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1698), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38137] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(990), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1639), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38231] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(992), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1629), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38325] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(994), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1608), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38419] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(996), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1674), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(141), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [38565] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(998), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1662), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38659] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1000), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1644), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38753] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1002), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1642), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38847] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1004), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1749), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [38941] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1006), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1690), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39035] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1008), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1614), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39129] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1010), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1617), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39223] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1012), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1637), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39317] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1675), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39411] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1016), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1623), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39505] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1018), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1714), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39599] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1679), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1022), 1, - anon_sym_LPAREN, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(1026), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(176), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [39751] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1028), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1687), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39845] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1030), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1660), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [39939] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1032), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1691), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(145), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [40085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - aux_sym_time_expression_token1, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(29), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [40137] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1034), 1, - anon_sym_LBRACK, - STATE(591), 1, + STATE(499), 1, aux_sym__type_repeat1, - ACTIONS(1036), 2, + ACTIONS(1424), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(127), 16, + ACTIONS(249), 17, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -56235,7 +47587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(125), 24, + ACTIONS(247), 24, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -56260,67 +47612,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [40195] = 24, + [29635] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1038), 1, - anon_sym_RPAREN, - STATE(110), 1, + ACTIONS(1426), 1, + anon_sym_RBRACK, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1670), 1, + STATE(1591), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56330,135 +47675,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40289] = 22, + [29715] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1428), 1, + anon_sym_RPAREN, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + STATE(1473), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(654), 3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [29795] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1430), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1503), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [29875] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1432), 1, anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_returning_token1, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [40379] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1040), 1, - anon_sym_RPAREN, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1656), 1, + STATE(1522), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56468,67 +47864,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40473] = 24, + [29955] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1042), 1, + ACTIONS(1434), 1, anon_sym_RPAREN, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, + STATE(1512), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30035] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1436), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, STATE(1618), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56538,10 +47990,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40567] = 3, + [30115] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 17, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1438), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1602), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30195] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1440), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1584), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30275] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1464), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30355] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1444), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1583), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30435] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1446), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1470), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30515] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 1, + anon_sym_LPAREN, + ACTIONS(1450), 1, + anon_sym_DOT, + ACTIONS(1452), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(307), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [30573] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1454), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1551), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30653] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1456), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1526), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 17, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -56559,7 +48504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(157), 27, + ACTIONS(286), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -56587,67 +48532,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [40619] = 24, + [30785] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1044), 1, - anon_sym_RPAREN, - STATE(110), 1, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1626), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1026), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_returning_token1, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56657,67 +48593,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40713] = 24, + [30861] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1046), 1, + ACTIONS(1458), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1569), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [30941] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1460), 1, anon_sym_RBRACK, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1635), 1, + STATE(1564), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56727,67 +48719,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40807] = 24, + [31021] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1048), 1, + ACTIONS(1462), 1, anon_sym_RPAREN, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1684), 1, + STATE(1543), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56797,67 +48782,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40901] = 24, + [31101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(31), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1050), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1633), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(29), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56867,67 +48830,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [40995] = 24, + sym_cast, + [31153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(284), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(1052), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1631), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(89), 2, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(282), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -56937,7 +48879,624 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [41089] = 3, + sym_cast, + [31205] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1464), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1523), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31285] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1466), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1570), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31365] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1468), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1597), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(272), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [31497] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1470), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1445), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31577] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1472), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1501), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31657] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1474), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1499), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31737] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1476), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1554), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31817] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1478), 1, + anon_sym_SEMI, + STATE(68), 1, + sym_comparison_null, + STATE(1577), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31897] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1480), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1450), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [31977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 17, @@ -56986,67 +49545,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41141] = 24, + [32029] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1054), 1, - anon_sym_RPAREN, - STATE(110), 1, + ACTIONS(1482), 1, + anon_sym_RBRACK, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1664), 1, + STATE(1532), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57056,67 +49608,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [41235] = 24, + [32109] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(958), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(1056), 1, + ACTIONS(1484), 1, anon_sym_RPAREN, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - STATE(1700), 1, + STATE(1488), 1, aux_sym_conflict_target_repeat1, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57126,64 +49671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [41329] = 5, + [32189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1058), 1, - anon_sym_LBRACK, - STATE(571), 1, - aux_sym__type_repeat1, - ACTIONS(163), 16, + ACTIONS(278), 17, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(161), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [41384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DASH, anon_sym_LT, @@ -57196,7 +49692,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(145), 27, + ACTIONS(276), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -57224,10 +49720,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41435] = 3, + [32241] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(155), 16, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1486), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1617), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32321] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1488), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1442), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32401] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1490), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1533), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32481] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1492), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1496), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32561] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1494), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1530), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32641] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1496), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1509), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32721] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1498), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1460), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32801] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1500), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1560), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [32881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1502), 1, + anon_sym_LBRACK, + STATE(522), 1, + aux_sym__type_repeat1, + ACTIONS(1504), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(249), 16, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -57244,7 +50251,556 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(153), 27, + ACTIONS(247), 24, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [32939] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1506), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1510), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33019] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1508), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1466), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33099] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1510), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1520), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33179] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1609), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33259] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1514), 1, + anon_sym_RBRACK, + STATE(68), 1, + sym_comparison_null, + STATE(1438), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33339] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1516), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1493), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33419] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1518), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1539), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33499] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1520), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + STATE(1576), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(276), 27, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -57272,7 +50828,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41486] = 3, + [33630] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1522), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1524), 1, + aux_sym_for_statement_token2, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(282), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [33758] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1526), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [33833] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 16, @@ -57320,149 +51045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41537] = 23, + [33884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1061), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1063), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41628] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(1065), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [41717] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, + ACTIONS(1422), 1, anon_sym_LBRACK, - STATE(571), 1, + STATE(500), 1, aux_sym__type_repeat1, - ACTIONS(174), 16, + ACTIONS(294), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -57479,7 +51069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(172), 25, + ACTIONS(292), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -57505,7 +51095,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41772] = 3, + [33939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1528), 1, + anon_sym_LBRACK, + STATE(500), 1, + aux_sym__type_repeat1, + ACTIONS(298), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [33994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 1, + anon_sym_LPAREN, + ACTIONS(1533), 1, + anon_sym_DOT, + ACTIONS(1535), 1, + aux_sym_time_expression_token1, + ACTIONS(311), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(307), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34051] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1537), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1539), 1, + aux_sym_for_statement_token2, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(274), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(272), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34179] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1541), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34254] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1543), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1545), 1, + aux_sym_for_statement_token2, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34331] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(1547), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 16, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(286), 27, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [34457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 16, @@ -57553,64 +51582,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [41823] = 22, + [34508] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1549), 1, + anon_sym_DOT_DOT, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(1067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57620,65 +51641,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [41912] = 23, + [34582] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1551), 1, + anon_sym_SEMI, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, sym_and, - ACTIONS(1069), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1071), 1, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34656] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1553), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34730] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1555), 1, aux_sym_for_statement_token2, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57688,113 +51818,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42003] = 3, + [34804] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1557), 1, + anon_sym_DOT_DOT, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, sym_and, - sym__identifier, - ACTIONS(141), 27, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [34878] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1559), 1, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [42054] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1073), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1075), 1, - aux_sym_for_statement_token2, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57804,163 +51936,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42145] = 3, + [34952] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 16, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DASH, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1561), 1, + anon_sym_DOT_DOT, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, sym_and, - sym__identifier, - ACTIONS(157), 27, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35026] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1563), 1, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [42196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1077), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_DOT, - ACTIONS(1081), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(176), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [42253] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(1083), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -57970,261 +52054,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42342] = 22, + [35100] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1085), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42430] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, + ACTIONS(906), 1, sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1087), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42518] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1089), 1, + ACTIONS(1565), 1, aux_sym_if_statement_token2, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [42606] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, + ACTIONS(902), 2, anon_sym_SLASH, - ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1091), 1, - anon_sym_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58234,63 +52113,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42694] = 22, + [35174] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1567), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, anon_sym_SLASH, - ACTIONS(85), 1, anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1093), 1, - anon_sym_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58300,15 +52172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42782] = 5, + [35248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1034), 1, - anon_sym_LBRACK, - STATE(606), 1, - aux_sym__type_repeat1, - ACTIONS(174), 15, + ACTIONS(1569), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 16, aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, anon_sym_SLASH, @@ -58323,7 +52194,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(172), 25, + ACTIONS(391), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -58349,63 +52220,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [42836] = 22, + [35300] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1095), 1, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1571), 1, anon_sym_RPAREN, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58415,63 +52279,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [42924] = 22, + [35374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(1573), 1, + anon_sym_LBRACK, + STATE(521), 1, + aux_sym__type_repeat1, + ACTIONS(298), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1097), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58481,63 +52327,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [43012] = 22, + sym_cast, + [35428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(1502), 1, + anon_sym_LBRACK, + STATE(521), 1, + aux_sym__type_repeat1, + ACTIONS(294), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(139), 1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, sym_and, - ACTIONS(1099), 1, + sym__identifier, + ACTIONS(292), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35482] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1576), 1, + anon_sym_SEMI, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1578), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35658] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1539), 1, + aux_sym_for_statement_token2, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [35732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1580), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [35784] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1582), 1, aux_sym_if_statement_token2, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58547,129 +52697,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [43100] = 22, + [35858] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, + ACTIONS(167), 1, aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(697), 1, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1101), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43188] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, + ACTIONS(906), 1, sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1075), 1, + ACTIONS(1584), 1, aux_sym_for_statement_token2, - STATE(110), 1, + STATE(68), 1, sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + ACTIONS(161), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, + ACTIONS(169), 2, aux_sym_comparison_kw_token2, aux_sym_comparison_kw_token3, - ACTIONS(79), 4, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + ACTIONS(151), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -58679,10 +52756,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [43276] = 3, + [35932] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(163), 16, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1586), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36006] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1588), 1, + anon_sym_RPAREN, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36080] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(167), 1, + aux_sym_comparison_kw_token1, + ACTIONS(697), 1, + aux_sym_trigger_event_token2, + ACTIONS(906), 1, + sym_cast, + ACTIONS(1590), 1, + anon_sym_SEMI, + STATE(68), 1, + sym_comparison_null, + ACTIONS(161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(169), 2, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + ACTIONS(902), 2, + anon_sym_SLASH, + anon_sym_DASH, + ACTIONS(163), 4, + aux_sym_grant_targets_token4, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + ACTIONS(900), 4, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + sym_and, + ACTIONS(904), 4, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token3, + aux_sym_comparison_null_token4, + ACTIONS(151), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + STATE(716), 5, + sym_comparison_op, + sym_contains_op, + sym_comparison_kw, + sym_other_op, + sym_or, + ACTIONS(171), 9, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + [36154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1592), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -58699,7 +52955,375 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(161), 26, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(593), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(711), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(693), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(535), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(533), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(707), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(537), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1594), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(296), 26, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -58726,276 +53350,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [43326] = 22, + [36600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1103), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43414] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1105), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43502] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1107), 1, - anon_sym_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43590] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1109), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1111), 1, + ACTIONS(1596), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 16, + ACTIONS(395), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -59012,7 +53417,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(239), 25, + ACTIONS(541), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59038,63 +53443,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [43730] = 22, + [36700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, + ACTIONS(1598), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(395), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1113), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, aux_sym_contains_op_token1, aux_sym_contains_op_token2, aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, aux_sym_comparison_null_token4, - ACTIONS(75), 5, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(97), 9, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, anon_sym_PIPE_PIPE, anon_sym_LT_AT, anon_sym_AT_GT, @@ -59104,12 +53489,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_LT, anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, - [43818] = 4, + sym_cast, + [36751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(1600), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 16, + ACTIONS(395), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(391), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [36802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(547), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -59126,7 +53557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(239), 25, + ACTIONS(545), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -59152,490 +53583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [43870] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1117), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [43958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 1, - anon_sym_LBRACK, - STATE(606), 1, - aux_sym__type_repeat1, - ACTIONS(163), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(161), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44012] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1122), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [44100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1124), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1126), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44204] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(83), 1, - anon_sym_SLASH, - ACTIONS(85), 1, - anon_sym_DASH, - ACTIONS(87), 1, - anon_sym_PLUS, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(99), 1, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1128), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(779), 1, - sym_other_op, - STATE(782), 1, - sym_comparison_kw, - STATE(807), 1, - sym_contains_op, - STATE(860), 1, - sym_or, - STATE(861), 1, - sym_comparison_op, - ACTIONS(81), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(95), 2, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - ACTIONS(79), 4, - aux_sym_grant_targets_token4, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - ACTIONS(91), 4, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - ACTIONS(75), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(97), 9, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [44292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(407), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1132), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44443] = 3, + [36851] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 16, @@ -59681,329 +53629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(469), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(395), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(415), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(163), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(161), 26, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(172), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(453), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44835] = 3, + [36900] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 16, @@ -60049,150 +53675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [44884] = 4, + [36949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1134), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1136), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(243), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(239), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [44986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(427), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 16, + ACTIONS(255), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60235,10 +53721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45084] = 3, + [36998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(103), 16, + ACTIONS(687), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60255,7 +53741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(101), 25, + ACTIONS(685), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60281,10 +53767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45133] = 3, + [37047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 16, + ACTIONS(551), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60301,7 +53787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(449), 25, + ACTIONS(549), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60327,10 +53813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45182] = 3, + [37096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(437), 16, + ACTIONS(679), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60347,7 +53833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(435), 25, + ACTIONS(677), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60373,10 +53859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45231] = 3, + [37145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(433), 16, + ACTIONS(294), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60393,7 +53879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(431), 25, + ACTIONS(292), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60419,10 +53905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45280] = 3, + [37194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 16, + ACTIONS(691), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60439,7 +53925,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(439), 25, + ACTIONS(689), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60465,10 +53951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45329] = 3, + [37243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 16, + ACTIONS(591), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60485,7 +53971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(443), 25, + ACTIONS(589), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60511,10 +53997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45378] = 3, + [37292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(421), 16, + ACTIONS(230), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60531,7 +54017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(419), 25, + ACTIONS(175), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60557,10 +54043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45427] = 3, + [37341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(425), 16, + ACTIONS(675), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_targets_token4, @@ -60577,7 +54063,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(423), 25, + ACTIONS(673), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60603,10 +54089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45476] = 3, + [37390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(103), 15, + ACTIONS(679), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -60622,7 +54108,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(101), 25, + ACTIONS(677), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60648,10 +54134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45524] = 3, + [37438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 15, + ACTIONS(687), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -60667,7 +54153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(469), 25, + ACTIONS(685), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -60693,592 +54179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [45572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(407), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(419), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(431), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(73), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(397), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(395), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(429), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(427), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(423), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(411), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [45956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(453), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [46004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(435), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [46052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(449), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [46100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(415), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [46148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 15, - aux_sym_update_statement_token2, - aux_sym_grant_targets_token4, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token1, - sym_and, - sym__identifier, - ACTIONS(37), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - [46196] = 3, + [37486] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(35), 15, @@ -61323,10 +54224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [46244] = 3, + [37534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(174), 15, + ACTIONS(535), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -61342,7 +54243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(172), 25, + ACTIONS(533), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -61368,10 +54269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [46292] = 3, + [37582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 15, + ACTIONS(255), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -61387,7 +54288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(443), 25, + ACTIONS(73), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -61413,10 +54314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [46340] = 3, + [37630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 15, + ACTIONS(547), 15, aux_sym_update_statement_token2, aux_sym_grant_targets_token4, aux_sym_trigger_event_token2, @@ -61432,7 +54333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comparison_kw_token1, sym_and, sym__identifier, - ACTIONS(439), 25, + ACTIONS(545), 25, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -61458,10 +54359,595 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_DASH_PIPE_DASH, sym_cast, - [46388] = 2, + [37678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 36, + ACTIONS(294), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(292), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(675), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(673), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(707), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(549), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(539), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(537), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(230), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(175), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [37966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(37), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(589), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(593), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(711), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(689), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(693), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(543), 15, + aux_sym_update_statement_token2, + aux_sym_grant_targets_token4, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_contains_op_token1, + aux_sym_contains_op_token2, + aux_sym_contains_op_token3, + aux_sym_comparison_null_token2, + aux_sym_comparison_null_token4, + aux_sym_comparison_kw_token1, + sym_and, + sym__identifier, + ACTIONS(541), 25, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_comparison_null_token1, + aux_sym_comparison_null_token3, + aux_sym_comparison_kw_token2, + aux_sym_comparison_kw_token3, + anon_sym_PIPE_PIPE, + anon_sym_LT_AT, + anon_sym_AT_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_AMP_LT, + anon_sym_AMP_GT, + anon_sym_DASH_PIPE_DASH, + sym_cast, + [38302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1602), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -61498,10 +54984,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__constraint, - [46430] = 2, + [38344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1140), 36, + ACTIONS(1604), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -61538,10 +55024,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__constraint, - [46472] = 2, + [38386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1142), 36, + ACTIONS(1606), 36, anon_sym_SEMI, anon_sym_COMMA, aux_sym_update_statement_token2, @@ -61578,171 +55064,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__constraint, - [46514] = 23, + [38428] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(271), 1, + ACTIONS(438), 1, aux_sym_trigger_exec_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1148), 1, - aux_sym_for_statement_token1, - ACTIONS(1150), 1, - aux_sym_select_statement_token1, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2251), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - STATE(2212), 2, - sym_execute_statement, - sym_select_statement, - ACTIONS(1162), 3, - sym_true, - sym_false, - sym_number, - STATE(589), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46596] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(271), 1, - aux_sym_trigger_exec_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1144), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1150), 1, - aux_sym_select_statement_token1, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1166), 1, + ACTIONS(1612), 1, aux_sym_for_statement_token1, - STATE(47), 1, + ACTIONS(1614), 1, + aux_sym_select_statement_token1, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2251), 1, + STATE(2110), 1, sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, STATE(2005), 2, sym_execute_statement, sym_select_statement, - ACTIONS(1168), 3, + ACTIONS(1626), 3, sym_true, sym_false, sym_number, - STATE(600), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46678] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1170), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2093), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, + STATE(680), 3, sym_minus, sym_plus, - ACTIONS(1172), 3, - sym_true, - sym_false, - sym_number, - STATE(553), 9, + sym_not, + STATE(513), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -61752,53 +55122,55 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46756] = 22, + [38508] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(438), 1, + aux_sym_trigger_exec_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1614), 1, + aux_sym_select_statement_token1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1174), 1, - anon_sym_RPAREN, - STATE(47), 1, + ACTIONS(1630), 1, + aux_sym_for_statement_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, + STATE(2110), 1, sym_with_query, - STATE(2231), 1, + STATE(2095), 2, + sym_execute_statement, sym_select_statement, - STATE(771), 2, + ACTIONS(1632), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, sym_minus, sym_plus, - ACTIONS(1176), 3, - sym_true, - sym_false, - sym_number, - STATE(561), 9, + sym_not, + STATE(515), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -61808,109 +55180,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46834] = 22, + [38588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1178), 1, + ACTIONS(1634), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, + STATE(2076), 1, sym_with_query, - STATE(2118), 1, + STATE(2099), 1, sym_select_statement, - STATE(771), 2, + ACTIONS(1636), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, sym_minus, sym_plus, - ACTIONS(1180), 3, - sym_true, - sym_false, - sym_number, - STATE(526), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [46912] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1182), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2253), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1184), 3, - sym_true, - sym_false, - sym_number, - STATE(519), 9, + STATE(468), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -61920,320 +55235,40 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [46990] = 22, + [38664] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1186), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2038), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1188), 3, - sym_true, - sym_false, - sym_number, - STATE(547), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47068] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1190), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2247), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1192), 3, - sym_true, - sym_false, - sym_number, - STATE(544), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47146] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1194), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2166), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1196), 3, - sym_true, - sym_false, - sym_number, - STATE(566), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47224] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1198), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2214), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1200), 3, - sym_true, - sym_false, - sym_number, - STATE(531), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47302] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1202), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2259), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1204), 3, - sym_true, - sym_false, - sym_number, - STATE(536), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [47380] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 1, + ACTIONS(1638), 1, ts_builtin_sym_end, - ACTIONS(1208), 1, + ACTIONS(1640), 1, aux_sym_drop_type_statement_token1, - ACTIONS(1211), 1, + ACTIONS(1643), 1, aux_sym_update_statement_token1, - ACTIONS(1214), 1, + ACTIONS(1646), 1, aux_sym_create_type_statement_token1, - ACTIONS(1217), 1, + ACTIONS(1649), 1, aux_sym_insert_statement_token1, - ACTIONS(1220), 1, + ACTIONS(1652), 1, aux_sym_insert_conflict_token3, - ACTIONS(1223), 1, + ACTIONS(1655), 1, aux_sym_delete_statement_token1, - ACTIONS(1226), 1, + ACTIONS(1658), 1, aux_sym_alter_table_statement_token1, - ACTIONS(1229), 1, + ACTIONS(1661), 1, aux_sym_grant_statement_token1, - ACTIONS(1232), 1, + ACTIONS(1664), 1, anon_sym_BSLASH, - ACTIONS(1235), 1, + ACTIONS(1667), 1, aux_sym_sequence_start_token2, - ACTIONS(1238), 1, + ACTIONS(1670), 1, aux_sym_select_statement_token1, - STATE(668), 1, + STATE(583), 1, aux_sym_source_file_repeat1, - STATE(1058), 1, + STATE(906), 1, sym_psql_statement, - STATE(1453), 1, + STATE(1405), 1, sym_with_query, - STATE(2379), 17, + STATE(2210), 17, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -62251,53 +55286,52 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [47448] = 22, + [38732] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1241), 1, + ACTIONS(1673), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2241), 1, + STATE(1881), 1, sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1243), 3, + STATE(2076), 1, + sym_with_query, + ACTIONS(1675), 3, sym_true, sym_false, sym_number, - STATE(545), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(446), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62307,53 +55341,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47526] = 22, + [38808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1245), 1, + ACTIONS(1677), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2263), 1, + STATE(2012), 1, sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1247), 3, + STATE(2076), 1, + sym_with_query, + ACTIONS(1679), 3, sym_true, sym_false, sym_number, - STATE(527), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(489), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62363,53 +55396,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47604] = 22, + [38884] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1249), 1, + ACTIONS(1681), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2019), 1, + STATE(1884), 1, sym_select_statement, - STATE(2117), 1, + STATE(2076), 1, sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1251), 3, + ACTIONS(1683), 3, sym_true, sym_false, sym_number, - STATE(552), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(443), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62419,53 +55451,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47682] = 22, + [38960] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1253), 1, + ACTIONS(1685), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2142), 1, + STATE(2060), 1, sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1255), 3, + STATE(2076), 1, + sym_with_query, + ACTIONS(1687), 3, sym_true, sym_false, sym_number, - STATE(541), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(460), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62475,53 +55506,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47760] = 22, + [39036] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1257), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2067), 1, - sym_select_statement, - STATE(2117), 1, + STATE(2076), 1, sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1259), 3, + STATE(2105), 1, + sym_select_statement, + ACTIONS(1691), 3, sym_true, sym_false, sym_number, - STATE(558), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(480), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62531,53 +55561,107 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47838] = 22, + [39112] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1261), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, + STATE(1988), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1695), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, sym_not, + STATE(448), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [39188] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + ACTIONS(1697), 1, + anon_sym_RPAREN, + STATE(34), 1, + sym_identifier, + STATE(2076), 1, + sym_with_query, STATE(2109), 1, sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1263), 3, + ACTIONS(1699), 3, sym_true, sym_false, sym_number, - STATE(542), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(491), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62587,53 +55671,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47916] = 22, + [39264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1265), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2190), 1, + STATE(1964), 1, sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1267), 3, + STATE(2076), 1, + sym_with_query, + ACTIONS(1703), 3, sym_true, sym_false, sym_number, - STATE(529), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(458), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62643,53 +55726,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [47994] = 22, + [39340] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1269), 1, + ACTIONS(1705), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(2041), 1, - sym_select_statement, - STATE(2117), 1, + STATE(2076), 1, sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1271), 3, + STATE(2093), 1, + sym_select_statement, + ACTIONS(1707), 3, sym_true, sym_false, sym_number, - STATE(530), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(482), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -62699,7 +55781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [48072] = 17, + [39416] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -62724,15 +55806,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(1273), 1, + ACTIONS(1709), 1, ts_builtin_sym_end, - STATE(668), 1, + STATE(583), 1, aux_sym_source_file_repeat1, - STATE(1058), 1, + STATE(906), 1, sym_psql_statement, - STATE(1453), 1, + STATE(1405), 1, sym_with_query, - STATE(2379), 17, + STATE(2210), 17, sym__statement, sym_drop_type_statement, sym_update_statement, @@ -62750,697 +55832,52 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [48140] = 21, + [39484] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, + ACTIONS(434), 1, aux_sym_sequence_start_token2, - ACTIONS(291), 1, + ACTIONS(458), 1, aux_sym_select_statement_token1, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2134), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1275), 3, - sym_true, - sym_false, - sym_number, - STATE(532), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48215] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1144), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2033), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1277), 3, - sym_true, - sym_false, - sym_number, - STATE(565), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48290] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2013), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1279), 3, - sym_true, - sym_false, - sym_number, - STATE(524), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48365] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2119), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(528), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48440] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2064), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1283), 3, - sym_true, - sym_false, - sym_number, - STATE(570), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48515] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2013), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1285), 3, - sym_true, - sym_false, - sym_number, - STATE(554), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48590] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2206), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1287), 3, - sym_true, - sym_false, - sym_number, - STATE(563), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48665] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2058), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1289), 3, - sym_true, - sym_false, - sym_number, - STATE(537), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48740] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2182), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1291), 3, - sym_true, - sym_false, - sym_number, - STATE(567), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48815] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2158), 1, - sym_select_statement, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1293), 3, - sym_true, - sym_false, - sym_number, - STATE(546), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48890] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2110), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1295), 3, - sym_true, - sym_false, - sym_number, - STATE(560), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [48965] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(2085), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1297), 3, - sym_true, - sym_false, - sym_number, - STATE(569), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49040] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1299), 1, + ACTIONS(1711), 1, anon_sym_RPAREN, - ACTIONS(1301), 1, - aux_sym_insert_items_token1, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(1757), 1, - sym_insert_item, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1303), 3, + STATE(2076), 1, + sym_with_query, + STATE(2077), 1, + sym_select_statement, + ACTIONS(1713), 3, sym_true, sym_false, sym_number, - STATE(579), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(479), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -63450,1451 +55887,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [49112] = 19, + [39560] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1307), 1, - aux_sym_insert_items_token1, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(1298), 1, - sym_update_value, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1321), 3, - sym_true, - sym_false, - sym_number, - STATE(494), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49181] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1307), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(1746), 1, - sym_update_value, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(450), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49250] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(1327), 1, - anon_sym_SEMI, - ACTIONS(1329), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1331), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1335), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1337), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1339), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1341), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1345), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(1745), 1, - sym_select_item, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1343), 3, - sym_true, - sym_false, - sym_number, - STATE(454), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49319] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1307), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(1298), 1, - sym_update_value, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(450), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49388] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1301), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(1891), 1, - sym_insert_item, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1303), 3, - sym_true, - sym_false, - sym_number, - STATE(579), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49457] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1307), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(1668), 1, - sym_update_value, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(450), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49526] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1307), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(1806), 1, - sym_update_value, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(450), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49595] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1329), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49661] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1365), 1, - aux_sym_return_statement_token2, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1367), 3, - sym_true, - sym_false, - sym_number, - STATE(595), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49727] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1369), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1371), 3, - sym_true, - sym_false, - sym_number, - STATE(520), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49793] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1373), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1375), 3, - sym_true, - sym_false, - sym_number, - STATE(525), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49859] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(1159), 1, - sym_order_by_item, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1377), 3, - sym_true, - sym_false, - sym_number, - STATE(212), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49925] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - ACTIONS(1379), 1, - aux_sym_grant_privileges_token1, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1381), 3, - sym_true, - sym_false, - sym_number, - STATE(430), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [49991] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1331), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50057] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1354), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50123] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(1045), 1, - sym_select_item, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1343), 3, - sym_true, - sym_false, - sym_number, - STATE(454), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50189] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(1200), 1, - sym_order_by_item, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1377), 3, - sym_true, - sym_false, - sym_number, - STATE(212), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50255] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1383), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1385), 3, - sym_true, - sym_false, - sym_number, - STATE(540), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50321] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1387), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1389), 3, - sym_true, - sym_false, - sym_number, - STATE(521), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50387] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(1045), 1, - sym_select_item, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(902), 3, - sym_true, - sym_false, - sym_number, - STATE(162), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50453] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1317), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50519] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1018), 1, - anon_sym_SEMI, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1391), 3, - sym_true, - sym_false, - sym_number, - STATE(523), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50585] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1393), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1395), 3, - sym_true, - sym_false, - sym_number, - STATE(539), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50651] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1397), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1399), 3, - sym_true, - sym_false, - sym_number, - STATE(548), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50717] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1401), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1403), 3, - sym_true, - sym_false, - sym_number, - STATE(550), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50783] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(1045), 1, - sym_select_item, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(788), 3, - sym_true, - sym_false, - sym_number, - STATE(58), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50849] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1045), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50915] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1405), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1407), 3, - sym_true, - sym_false, - sym_number, - STATE(535), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [50981] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1409), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1411), 3, - sym_true, - sym_false, - sym_number, - STATE(564), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51047] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - ACTIONS(1413), 1, + ACTIONS(1715), 1, anon_sym_RPAREN, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1415), 3, + STATE(1854), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1717), 3, sym_true, sym_false, sym_number, - STATE(534), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(467), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -64904,189 +55942,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51113] = 18, + [39636] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1382), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51179] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1449), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51245] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(1533), 1, - sym_select_item, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1343), 3, - sym_true, - sym_false, - sym_number, - STATE(454), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51311] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1417), 1, - anon_sym_RBRACK, - STATE(47), 1, + ACTIONS(1719), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1419), 3, + STATE(1913), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1721), 3, sym_true, sym_false, sym_number, - STATE(543), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(486), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65096,45 +55997,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51377] = 18, + [39712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1421), 1, - anon_sym_RBRACK, - STATE(47), 1, + ACTIONS(1723), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1423), 3, + STATE(1855), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1725), 3, sym_true, sym_false, sym_number, - STATE(533), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(478), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65144,93 +56052,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51443] = 18, + [39788] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(1045), 1, - sym_select_item, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(840), 3, - sym_true, - sym_false, - sym_number, - STATE(130), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51509] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - ACTIONS(1425), 1, - anon_sym_SEMI, - STATE(47), 1, + ACTIONS(1727), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1427), 3, + STATE(2036), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1729), 3, sym_true, sym_false, sym_number, - STATE(549), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(493), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65240,183 +56107,52 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51575] = 18, + [39864] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1378), 1, - sym_select_item, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1361), 3, - sym_true, - sym_false, - sym_number, - STATE(435), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51641] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1429), 3, - sym_true, - sym_false, - sym_number, - STATE(504), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51704] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1445), 3, - sym_true, - sym_false, - sym_number, - STATE(128), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [51767] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1449), 3, + STATE(1939), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1733), 3, sym_true, sym_false, sym_number, - STATE(593), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(492), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65426,42 +56162,104 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51830] = 17, + [39940] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1347), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1353), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1355), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1357), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1359), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(551), 1, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1451), 3, + STATE(2076), 1, + sym_with_query, + STATE(2087), 1, + sym_select_statement, + ACTIONS(1737), 3, sym_true, sym_false, sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(463), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [40016] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + STATE(1896), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1739), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, STATE(483), 9, sym_string, sym__value_expression, @@ -65472,42 +56270,155 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51893] = 17, + [40089] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1347), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1353), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1355), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1357), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1359), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(551), 1, + STATE(34), 1, sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1453), 3, + STATE(2004), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1741), 3, sym_true, sym_false, sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(447), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [40162] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + STATE(2076), 1, + sym_with_query, + STATE(2078), 1, + sym_select_statement, + ACTIONS(1743), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(487), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [40235] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + STATE(1956), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1745), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, STATE(470), 9, sym_string, sym__value_expression, @@ -65518,227 +56429,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [51956] = 17, + [40308] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1455), 3, - sym_true, - sym_false, - sym_number, - STATE(75), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52019] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1471), 3, - sym_true, - sym_false, - sym_number, - STATE(151), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52082] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1475), 3, - sym_true, - sym_false, - sym_number, - STATE(509), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52145] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1477), 3, - sym_true, - sym_false, - sym_number, - STATE(90), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52208] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1479), 3, + STATE(2052), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1747), 3, sym_true, sym_false, sym_number, - STATE(594), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(484), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65748,227 +56482,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [52271] = 17, + [40381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1481), 3, - sym_true, - sym_false, - sym_number, - STATE(158), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52334] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1483), 3, - sym_true, - sym_false, - sym_number, - STATE(184), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52397] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1485), 3, - sym_true, - sym_false, - sym_number, - STATE(179), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52460] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1487), 3, - sym_true, - sym_false, - sym_number, - STATE(181), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52523] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1489), 3, + STATE(1931), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1749), 3, sym_true, sym_false, sym_number, - STATE(588), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(488), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -65978,43 +56535,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [52586] = 17, + [40454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1491), 3, + STATE(1847), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1751), 3, sym_true, sym_false, sym_number, - STATE(592), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(481), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66024,411 +56588,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [52649] = 17, + [40527] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1493), 3, - sym_true, - sym_false, - sym_number, - STATE(223), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52712] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1495), 3, - sym_true, - sym_false, - sym_number, - STATE(222), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52775] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1497), 3, - sym_true, - sym_false, - sym_number, - STATE(153), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52838] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1499), 3, - sym_true, - sym_false, - sym_number, - STATE(220), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52901] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1501), 3, - sym_true, - sym_false, - sym_number, - STATE(217), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [52964] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1503), 3, - sym_true, - sym_false, - sym_number, - STATE(216), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53027] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1505), 3, - sym_true, - sym_false, - sym_number, - STATE(175), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53090] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1507), 3, - sym_true, - sym_false, - sym_number, - STATE(215), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53153] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1509), 3, + STATE(1980), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1753), 3, sym_true, sym_false, sym_number, - STATE(193), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(451), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66438,135 +56641,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [53216] = 17, + [40600] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1511), 3, - sym_true, - sym_false, - sym_number, - STATE(152), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53279] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1513), 3, - sym_true, - sym_false, - sym_number, - STATE(207), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53342] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1515), 3, + STATE(2028), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1755), 3, sym_true, sym_false, sym_number, - STATE(559), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(465), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66576,89 +56694,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [53405] = 17, + [40673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1517), 3, - sym_true, - sym_false, - sym_number, - STATE(160), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53468] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1519), 3, + STATE(1904), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1757), 3, sym_true, sym_false, sym_number, - STATE(516), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(475), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66668,273 +56747,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [53531] = 17, + [40746] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1521), 3, - sym_true, - sym_false, - sym_number, - STATE(192), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53594] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1523), 3, - sym_true, - sym_false, - sym_number, - STATE(169), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53657] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1525), 3, - sym_true, - sym_false, - sym_number, - STATE(496), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53720] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - aux_sym_alter_column_action_token2, - ACTIONS(892), 1, - anon_sym_DOLLAR, - ACTIONS(894), 1, - anon_sym_SQUOTE, - ACTIONS(896), 1, - aux_sym_array_constructor_token1, - ACTIONS(898), 1, - aux_sym_time_expression_token4, - ACTIONS(900), 1, - anon_sym_STAR, - ACTIONS(904), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(762), 2, - sym_minus, - sym_plus, - ACTIONS(1527), 3, - sym_true, - sym_false, - sym_number, - STATE(194), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53783] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1529), 3, - sym_true, - sym_false, - sym_number, - STATE(512), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53846] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1531), 3, + STATE(1875), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1759), 3, sym_true, sym_false, sym_number, - STATE(582), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(450), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -66944,227 +56800,50 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [53909] = 17, + [40819] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1533), 3, - sym_true, - sym_false, - sym_number, - STATE(178), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [53972] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1535), 3, - sym_true, - sym_false, - sym_number, - STATE(177), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54035] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1551), 3, - sym_true, - sym_false, - sym_number, - STATE(260), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54098] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1555), 3, - sym_true, - sym_false, - sym_number, - STATE(499), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54161] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1557), 3, + STATE(1847), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + ACTIONS(1761), 3, sym_true, sym_false, sym_number, - STATE(9), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(464), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67174,226 +56853,47 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54224] = 17, + [40892] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1559), 3, - sym_true, - sym_false, - sym_number, - STATE(477), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54287] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1561), 3, - sym_true, - sym_false, - sym_number, - STATE(27), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54350] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(824), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(828), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(830), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(832), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(834), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(836), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(838), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(842), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(282), 1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(1765), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1563), 3, + STATE(1549), 1, + sym_insert_item, + ACTIONS(1767), 3, sym_true, sym_false, sym_number, - STATE(150), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54413] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, + STATE(680), 3, sym_minus, sym_plus, - ACTIONS(1565), 3, - sym_true, - sym_false, - sym_number, - STATE(31), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54476] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1567), 3, - sym_true, - sym_false, - sym_number, STATE(497), 9, sym_string, sym__value_expression, @@ -67404,43 +56904,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54539] = 17, + [40962] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1769), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1569), 3, + STATE(1573), 1, + sym_update_value, + ACTIONS(1771), 3, sym_true, sym_false, sym_number, - STATE(605), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(407), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67450,43 +56953,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54602] = 17, + [41029] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1769), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1571), 3, + STATE(1700), 1, + sym_update_value, + ACTIONS(1771), 3, sym_true, sym_false, sym_number, - STATE(590), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(407), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67496,135 +57002,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54665] = 17, + [41096] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1587), 3, - sym_true, - sym_false, - sym_number, - STATE(25), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54728] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1591), 3, - sym_true, - sym_false, - sym_number, - STATE(149), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [54791] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1765), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1593), 3, + STATE(1659), 1, + sym_insert_item, + ACTIONS(1767), 3, sym_true, sym_false, sym_number, - STATE(24), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(497), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67634,43 +57051,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54854] = 17, + [41163] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1773), 1, + anon_sym_SEMI, + ACTIONS(1775), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1777), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1781), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1783), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1785), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1787), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1791), 1, sym__identifier, - STATE(47), 1, + STATE(501), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1595), 3, + STATE(1475), 1, + sym_select_item, + ACTIONS(1789), 3, sym_true, sym_false, sym_number, - STATE(575), 9, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(413), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67680,43 +57100,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54917] = 17, + [41230] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1769), 1, + aux_sym_insert_items_token1, + ACTIONS(1793), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1795), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1799), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1801), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1803), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1805), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1809), 1, sym__identifier, - STATE(47), 1, + STATE(159), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1597), 3, + STATE(1135), 1, + sym_update_value, + ACTIONS(1807), 3, sym_true, sym_false, sym_number, - STATE(603), 9, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(392), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67726,43 +57149,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [54980] = 17, + [41297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1769), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1599), 3, + STATE(1135), 1, + sym_update_value, + ACTIONS(1771), 3, sym_true, sym_false, sym_number, - STATE(23), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(407), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67772,43 +57198,46 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [55043] = 17, + [41364] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1769), 1, + aux_sym_insert_items_token1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1601), 3, + STATE(1613), 1, + sym_update_value, + ACTIONS(1771), 3, sym_true, sym_false, sym_number, - STATE(601), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(407), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -67818,319 +57247,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [55106] = 17, + [41431] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1603), 3, - sym_true, - sym_false, - sym_number, - STATE(180), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55169] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1605), 3, - sym_true, - sym_false, - sym_number, - STATE(120), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55232] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1607), 3, - sym_true, - sym_false, - sym_number, - STATE(501), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55295] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1609), 3, - sym_true, - sym_false, - sym_number, - STATE(203), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55358] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1611), 3, - sym_true, - sym_false, - sym_number, - STATE(201), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55421] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1613), 3, - sym_true, - sym_false, - sym_number, - STATE(517), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55484] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(47), 1, + STATE(453), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1162), 3, + STATE(895), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(589), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -68140,779 +57294,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [55547] = 17, + [41495] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1615), 3, - sym_true, - sym_false, - sym_number, - STATE(254), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55610] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1617), 3, - sym_true, - sym_false, - sym_number, - STATE(329), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55673] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1619), 3, - sym_true, - sym_false, - sym_number, - STATE(174), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55736] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1621), 3, - sym_true, - sym_false, - sym_number, - STATE(455), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55799] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1623), 3, - sym_true, - sym_false, - sym_number, - STATE(154), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55862] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1625), 3, - sym_true, - sym_false, - sym_number, - STATE(123), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55925] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1627), 3, - sym_true, - sym_false, - sym_number, - STATE(508), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [55988] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1629), 3, - sym_true, - sym_false, - sym_number, - STATE(17), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56051] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1631), 3, - sym_true, - sym_false, - sym_number, - STATE(190), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56114] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1633), 3, - sym_true, - sym_false, - sym_number, - STATE(126), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56177] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1635), 3, - sym_true, - sym_false, - sym_number, - STATE(157), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56240] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1637), 3, - sym_true, - sym_false, - sym_number, - STATE(89), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56303] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1639), 3, - sym_true, - sym_false, - sym_number, - STATE(88), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56366] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1641), 3, - sym_true, - sym_false, - sym_number, - STATE(473), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56429] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1643), 3, - sym_true, - sym_false, - sym_number, - STATE(198), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56492] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1645), 3, - sym_true, - sym_false, - sym_number, - STATE(204), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56555] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1795), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1799), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1801), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1803), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1805), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1809), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1829), 1, + aux_sym_grant_privileges_token1, + STATE(159), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1647), 3, + ACTIONS(1831), 3, sym_true, sym_false, sym_number, - STATE(22), 9, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(376), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -68922,181 +57341,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [56618] = 17, + [41559] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1649), 3, - sym_true, - sym_false, - sym_number, - STATE(443), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56681] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1651), 3, - sym_true, - sym_false, - sym_number, - STATE(205), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56744] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1653), 3, - sym_true, - sym_false, - sym_number, - STATE(176), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56807] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(47), 1, + STATE(453), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1655), 3, + STATE(1238), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(576), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69106,457 +57388,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [56870] = 17, + [41623] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_LPAREN, - ACTIONS(1459), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1461), 1, - anon_sym_DOLLAR, - ACTIONS(1463), 1, - anon_sym_SQUOTE, - ACTIONS(1465), 1, - aux_sym_array_constructor_token1, - ACTIONS(1467), 1, - aux_sym_time_expression_token4, - ACTIONS(1469), 1, - anon_sym_STAR, - ACTIONS(1473), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(812), 1, - sym_not, - STATE(793), 2, - sym_minus, - sym_plus, - ACTIONS(1657), 3, - sym_true, - sym_false, - sym_number, - STATE(172), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56933] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1659), 3, - sym_true, - sym_false, - sym_number, - STATE(155), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [56996] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1661), 3, - sym_true, - sym_false, - sym_number, - STATE(458), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57059] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1663), 3, - sym_true, - sym_false, - sym_number, - STATE(208), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57122] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1665), 3, - sym_true, - sym_false, - sym_number, - STATE(209), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57185] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1667), 3, - sym_true, - sym_false, - sym_number, - STATE(86), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57248] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1669), 3, - sym_true, - sym_false, - sym_number, - STATE(96), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57311] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1671), 3, - sym_true, - sym_false, - sym_number, - STATE(85), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57374] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1673), 3, - sym_true, - sym_false, - sym_number, - STATE(10), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [57437] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1833), 1, + anon_sym_SEMI, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1675), 3, + ACTIONS(1835), 3, sym_true, sym_false, sym_number, - STATE(587), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(471), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69566,43 +57435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57500] = 17, + [41687] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1573), 1, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1579), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1581), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1583), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1585), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1589), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(53), 1, + STATE(453), 1, sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1677), 3, + STATE(1150), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(29), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69612,43 +57482,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57563] = 17, + [41751] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1347), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1349), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1353), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1355), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1357), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1359), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1363), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(551), 1, + ACTIONS(1837), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1679), 3, + ACTIONS(1839), 3, sym_true, sym_false, sym_number, - STATE(489), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(452), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69658,43 +57529,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57626] = 17, + [41815] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1573), 1, + ACTIONS(1775), 1, anon_sym_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1777), 1, aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1579), 1, + ACTIONS(1781), 1, anon_sym_SQUOTE, - ACTIONS(1581), 1, + ACTIONS(1783), 1, aux_sym_array_constructor_token1, - ACTIONS(1583), 1, + ACTIONS(1785), 1, aux_sym_time_expression_token4, - ACTIONS(1585), 1, + ACTIONS(1787), 1, anon_sym_STAR, - ACTIONS(1589), 1, + ACTIONS(1791), 1, sym__identifier, - STATE(53), 1, + STATE(501), 1, sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1681), 3, + STATE(895), 1, + sym_select_item, + ACTIONS(1789), 3, sym_true, sym_false, sym_number, - STATE(26), 9, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(413), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69704,43 +57576,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57689] = 17, + [41879] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1537), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1539), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1543), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1545), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1547), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1549), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1553), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(341), 1, + ACTIONS(1841), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1683), 3, + ACTIONS(1843), 3, sym_true, sym_false, sym_number, - STATE(210), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(472), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69750,43 +57623,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57752] = 17, + [41943] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(754), 1, + ACTIONS(1109), 1, anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(760), 1, + ACTIONS(1118), 1, aux_sym_alter_column_action_token2, - ACTIONS(772), 1, + ACTIONS(1130), 1, anon_sym_DOLLAR, - ACTIONS(776), 1, + ACTIONS(1134), 1, anon_sym_SQUOTE, - ACTIONS(778), 1, + ACTIONS(1136), 1, aux_sym_array_constructor_token1, - ACTIONS(780), 1, + ACTIONS(1138), 1, aux_sym_time_expression_token4, - ACTIONS(782), 1, + ACTIONS(1140), 1, anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(790), 1, + ACTIONS(1148), 1, sym__identifier, - STATE(221), 1, + STATE(150), 1, sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1685), 3, + STATE(895), 1, + sym_select_item, + ACTIONS(1146), 3, sym_true, sym_false, sym_number, - STATE(83), 9, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(45), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69796,43 +57670,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57815] = 17, + [42007] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1537), 1, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1539), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1543), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1545), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1547), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1549), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1553), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(341), 1, + STATE(453), 1, sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1687), 3, + STATE(1208), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(338), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69842,43 +57717,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57878] = 17, + [42071] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1431), 1, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1437), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1439), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1441), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1443), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1447), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(237), 1, + STATE(453), 1, sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1689), 3, + STATE(1225), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(142), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69888,43 +57764,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [57941] = 17, + [42135] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1431), 1, + ACTIONS(1775), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1777), 1, aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1437), 1, + ACTIONS(1781), 1, anon_sym_SQUOTE, - ACTIONS(1439), 1, + ACTIONS(1783), 1, aux_sym_array_constructor_token1, - ACTIONS(1441), 1, + ACTIONS(1785), 1, aux_sym_time_expression_token4, - ACTIONS(1443), 1, + ACTIONS(1787), 1, anon_sym_STAR, - ACTIONS(1447), 1, + ACTIONS(1791), 1, sym__identifier, - STATE(237), 1, + STATE(501), 1, sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1691), 3, + STATE(1379), 1, + sym_select_item, + ACTIONS(1789), 3, sym_true, sym_false, sym_number, - STATE(146), 9, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(413), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69934,43 +57811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58004] = 17, + [42199] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1431), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1437), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1439), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1441), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1443), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1447), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(237), 1, + ACTIONS(1845), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1693), 3, + ACTIONS(1847), 3, sym_true, sym_false, sym_number, - STATE(148), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(477), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -69980,43 +57858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58067] = 17, + [42263] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1573), 1, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1579), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1581), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1583), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1585), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1589), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(53), 1, + STATE(453), 1, sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1695), 3, + STATE(1206), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(11), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -70026,134 +57905,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58130] = 17, + [42327] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(790), 1, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, sym__identifier, - STATE(221), 1, + STATE(209), 1, sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1697), 3, + STATE(895), 1, + sym_select_item, + ACTIONS(1238), 3, sym_true, sym_false, sym_number, - STATE(82), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58193] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, + STATE(687), 3, sym_minus, sym_plus, - ACTIONS(1699), 3, - sym_true, - sym_false, - sym_number, - STATE(12), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58256] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1701), 3, - sym_true, - sym_false, - sym_number, STATE(79), 9, sym_string, sym__value_expression, @@ -70164,778 +57952,43 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [58319] = 17, + [42391] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_number, - STATE(87), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58382] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1705), 3, - sym_true, - sym_false, - sym_number, - STATE(77), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58445] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1707), 3, - sym_true, - sym_false, - sym_number, - STATE(30), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58508] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(754), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(760), 1, - aux_sym_alter_column_action_token2, - ACTIONS(772), 1, - anon_sym_DOLLAR, - ACTIONS(776), 1, - anon_sym_SQUOTE, - ACTIONS(778), 1, - aux_sym_array_constructor_token1, - ACTIONS(780), 1, - aux_sym_time_expression_token4, - ACTIONS(782), 1, - anon_sym_STAR, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, anon_sym_PLUS, - ACTIONS(790), 1, - sym__identifier, - STATE(221), 1, - sym_identifier, - STATE(803), 1, - sym_not, - STATE(802), 2, - sym_minus, - sym_plus, - ACTIONS(1709), 3, - sym_true, - sym_false, - sym_number, - STATE(76), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58571] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1309), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1313), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1315), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1317), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1319), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1323), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(196), 1, + ACTIONS(1849), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1711), 3, + ACTIONS(1851), 3, sym_true, sym_false, sym_number, - STATE(84), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58634] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, + STATE(680), 3, sym_minus, sym_plus, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_number, - STATE(147), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58697] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1715), 3, - sym_true, - sym_false, - sym_number, - STATE(81), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58760] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1717), 3, - sym_true, - sym_false, - sym_number, - STATE(32), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58823] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1719), 3, - sym_true, - sym_false, - sym_number, - STATE(498), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58886] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1721), 3, - sym_true, - sym_false, - sym_number, - STATE(80), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58949] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1723), 3, - sym_true, - sym_false, - sym_number, - STATE(13), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59012] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1537), 1, - anon_sym_LPAREN, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1725), 3, - sym_true, - sym_false, - sym_number, - STATE(188), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59075] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1727), 3, - sym_true, - sym_false, - sym_number, - STATE(14), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59138] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1144), 1, - anon_sym_LPAREN, - ACTIONS(1146), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, - anon_sym_DOLLAR, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(1156), 1, - aux_sym_array_constructor_token1, - ACTIONS(1158), 1, - aux_sym_time_expression_token4, - ACTIONS(1160), 1, - anon_sym_STAR, - ACTIONS(1164), 1, - sym__identifier, - STATE(47), 1, - sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1729), 3, - sym_true, - sym_false, - sym_number, - STATE(586), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59201] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1347), 1, - anon_sym_LPAREN, - ACTIONS(1349), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1351), 1, - anon_sym_DOLLAR, - ACTIONS(1353), 1, - anon_sym_SQUOTE, - ACTIONS(1355), 1, - aux_sym_array_constructor_token1, - ACTIONS(1357), 1, - aux_sym_time_expression_token4, - ACTIONS(1359), 1, - anon_sym_STAR, - ACTIONS(1363), 1, - sym__identifier, - STATE(551), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(770), 2, - sym_minus, - sym_plus, - ACTIONS(1731), 3, - sym_true, - sym_false, - sym_number, - STATE(490), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59264] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1733), 3, - sym_true, - sym_false, - sym_number, - STATE(78), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59327] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1735), 3, - sym_true, - sym_false, - sym_number, STATE(449), 9, sym_string, sym__value_expression, @@ -70946,43 +57999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [59390] = 17, + [42455] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1853), 1, + aux_sym_return_statement_token2, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1737), 3, + ACTIONS(1855), 3, sym_true, sym_false, sym_number, - STATE(598), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(510), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -70992,89 +58046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [59453] = 17, + [42519] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1739), 3, - sym_true, - sym_false, - sym_number, - STATE(171), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59516] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1478), 1, + anon_sym_SEMI, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1741), 3, + ACTIONS(1857), 3, sym_true, sym_false, sym_number, - STATE(610), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(445), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71084,227 +58093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [59579] = 17, + [42583] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1743), 3, - sym_true, - sym_false, - sym_number, - STATE(15), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59642] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1573), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1577), 1, - anon_sym_DOLLAR, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - ACTIONS(1581), 1, - aux_sym_array_constructor_token1, - ACTIONS(1583), 1, - aux_sym_time_expression_token4, - ACTIONS(1585), 1, - anon_sym_STAR, - ACTIONS(1589), 1, - sym__identifier, - STATE(53), 1, - sym_identifier, - STATE(855), 1, - sym_not, - STATE(856), 2, - sym_minus, - sym_plus, - ACTIONS(1745), 3, - sym_true, - sym_false, - sym_number, - STATE(16), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59705] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1435), 1, - anon_sym_DOLLAR, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - ACTIONS(1439), 1, - aux_sym_array_constructor_token1, - ACTIONS(1441), 1, - aux_sym_time_expression_token4, - ACTIONS(1443), 1, - anon_sym_STAR, - ACTIONS(1447), 1, - sym__identifier, - STATE(237), 1, - sym_identifier, - STATE(800), 1, - sym_not, - STATE(796), 2, - sym_minus, - sym_plus, - ACTIONS(1747), 3, - sym_true, - sym_false, - sym_number, - STATE(99), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59768] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1539), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1541), 1, - anon_sym_DOLLAR, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - ACTIONS(1545), 1, - aux_sym_array_constructor_token1, - ACTIONS(1547), 1, - aux_sym_time_expression_token4, - ACTIONS(1549), 1, - anon_sym_STAR, - ACTIONS(1553), 1, - sym__identifier, - ACTIONS(1749), 1, - anon_sym_LPAREN, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1751), 3, - sym_true, - sym_false, - sym_number, - STATE(189), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [59831] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1859), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1753), 3, + ACTIONS(1861), 3, sym_true, sym_false, sym_number, - STATE(599), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(469), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71314,43 +58140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [59894] = 17, + [42647] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1863), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1755), 3, + ACTIONS(1865), 3, sym_true, sym_false, sym_number, - STATE(20), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(442), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71360,43 +58187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [59957] = 17, + [42711] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1813), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1815), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1817), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1819), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1821), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1823), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1827), 1, sym__identifier, - STATE(47), 1, + STATE(453), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1757), 3, + STATE(1164), 1, + sym_select_item, + ACTIONS(1825), 3, sym_true, sym_false, sym_number, - STATE(21), 9, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71406,135 +58234,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60020] = 17, + [42775] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1759), 3, - sym_true, - sym_false, - sym_number, - STATE(507), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60083] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(824), 1, - anon_sym_LPAREN, - ACTIONS(828), 1, - aux_sym_alter_column_action_token2, - ACTIONS(830), 1, - anon_sym_DOLLAR, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(834), 1, - aux_sym_array_constructor_token1, - ACTIONS(836), 1, - aux_sym_time_expression_token4, - ACTIONS(838), 1, - anon_sym_STAR, - ACTIONS(842), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(765), 1, - sym_not, - STATE(766), 2, - sym_minus, - sym_plus, - ACTIONS(1761), 3, - sym_true, - sym_false, - sym_number, - STATE(173), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60146] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1867), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1763), 3, + ACTIONS(1869), 3, sym_true, sym_false, sym_number, - STATE(596), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(459), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71544,43 +58281,232 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60209] = 17, + [42839] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + ACTIONS(1871), 1, + anon_sym_RBRACK, + STATE(34), 1, + sym_identifier, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(444), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [42903] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + ACTIONS(1875), 1, + anon_sym_RBRACK, + STATE(34), 1, + sym_identifier, + ACTIONS(1877), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(454), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [42967] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1815), 1, + anon_sym_DOLLAR, + ACTIONS(1817), 1, + anon_sym_SQUOTE, + ACTIONS(1819), 1, + aux_sym_array_constructor_token1, + ACTIONS(1821), 1, + aux_sym_time_expression_token4, + ACTIONS(1823), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + sym__identifier, + STATE(453), 1, + sym_identifier, + STATE(1152), 1, + sym_select_item, + ACTIONS(1825), 3, + sym_true, + sym_false, + sym_number, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(369), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43031] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + STATE(1049), 1, + sym_order_by_item, + ACTIONS(1879), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(154), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43095] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, sym__identifier, - STATE(196), 1, + STATE(275), 1, sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1765), 3, + STATE(895), 1, + sym_select_item, + ACTIONS(1303), 3, sym_true, sym_false, sym_number, - STATE(72), 9, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(127), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71590,135 +58516,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60272] = 17, + [43159] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1767), 3, - sym_true, - sym_false, - sym_number, - STATE(71), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60335] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1769), 3, - sym_true, - sym_false, - sym_number, - STATE(502), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60398] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1881), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1771), 3, + ACTIONS(1883), 3, sym_true, sym_false, sym_number, - STATE(580), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(490), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71728,43 +58563,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60461] = 17, + [43223] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1795), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1797), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1799), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1801), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1803), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1805), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1809), 1, sym__identifier, - STATE(47), 1, + STATE(159), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1773), 3, + STATE(1012), 1, + sym_order_by_item, + ACTIONS(1879), 3, sym_true, sym_false, sym_number, - STATE(607), 9, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(154), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71774,135 +58610,44 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60524] = 17, + [43287] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1305), 1, - anon_sym_LPAREN, - ACTIONS(1309), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, - anon_sym_DOLLAR, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - ACTIONS(1315), 1, - aux_sym_array_constructor_token1, - ACTIONS(1317), 1, - aux_sym_time_expression_token4, - ACTIONS(1319), 1, - anon_sym_STAR, - ACTIONS(1323), 1, - sym__identifier, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1775), 3, - sym_true, - sym_false, - sym_number, - STATE(65), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60587] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(1329), 1, - anon_sym_LPAREN, - ACTIONS(1331), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1333), 1, - anon_sym_DOLLAR, - ACTIONS(1335), 1, - anon_sym_SQUOTE, - ACTIONS(1337), 1, - aux_sym_array_constructor_token1, - ACTIONS(1339), 1, - aux_sym_time_expression_token4, - ACTIONS(1341), 1, - anon_sym_STAR, - ACTIONS(1345), 1, - sym__identifier, - STATE(584), 1, - sym_identifier, - STATE(774), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1777), 3, - sym_true, - sym_false, - sym_number, - STATE(500), 9, - sym_string, - sym__value_expression, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [60650] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(758), 1, - aux_sym_alter_column_action_token1, - ACTIONS(784), 1, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1146), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1152), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1154), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1156), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1158), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1160), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1164), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(47), 1, + ACTIONS(1885), 1, + anon_sym_RBRACK, + STATE(34), 1, sym_identifier, - STATE(769), 1, - sym_not, - STATE(771), 2, - sym_minus, - sym_plus, - ACTIONS(1779), 3, + ACTIONS(1887), 3, sym_true, sym_false, sym_number, - STATE(585), 9, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(474), 9, sym_string, sym__value_expression, sym_array_constructor, @@ -71912,42 +58657,223 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60713] = 17, + [43351] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(758), 1, + ACTIONS(1116), 1, aux_sym_alter_column_action_token1, - ACTIONS(784), 1, + ACTIONS(1142), 1, anon_sym_DASH, - ACTIONS(786), 1, + ACTIONS(1144), 1, anon_sym_PLUS, - ACTIONS(1305), 1, + ACTIONS(1608), 1, anon_sym_LPAREN, - ACTIONS(1309), 1, + ACTIONS(1610), 1, aux_sym_alter_column_action_token2, - ACTIONS(1311), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1313), 1, + ACTIONS(1618), 1, anon_sym_SQUOTE, - ACTIONS(1315), 1, + ACTIONS(1620), 1, aux_sym_array_constructor_token1, - ACTIONS(1317), 1, + ACTIONS(1622), 1, aux_sym_time_expression_token4, - ACTIONS(1319), 1, + ACTIONS(1624), 1, anon_sym_STAR, - ACTIONS(1323), 1, + ACTIONS(1628), 1, sym__identifier, - STATE(196), 1, + ACTIONS(1889), 1, + anon_sym_RPAREN, + STATE(34), 1, sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1781), 3, + ACTIONS(1891), 3, sym_true, sym_false, sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(455), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43415] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1775), 1, + anon_sym_LPAREN, + ACTIONS(1777), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + anon_sym_SQUOTE, + ACTIONS(1783), 1, + aux_sym_array_constructor_token1, + ACTIONS(1785), 1, + aux_sym_time_expression_token4, + ACTIONS(1787), 1, + anon_sym_STAR, + ACTIONS(1791), 1, + sym__identifier, + STATE(501), 1, + sym_identifier, + ACTIONS(1893), 3, + sym_true, + sym_false, + sym_number, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(433), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43476] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(1895), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(504), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43537] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1118), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1134), 1, + anon_sym_SQUOTE, + ACTIONS(1136), 1, + aux_sym_array_constructor_token1, + ACTIONS(1138), 1, + aux_sym_time_expression_token4, + ACTIONS(1140), 1, + anon_sym_STAR, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1148), 1, + sym__identifier, + STATE(150), 1, + sym_identifier, + ACTIONS(1897), 3, + sym_true, + sym_false, + sym_number, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(62), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43598] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(1899), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, STATE(64), 9, sym_string, sym__value_expression, @@ -71958,106 +58884,3036 @@ static const uint16_t ts_small_parse_table[] = { sym_op_expression, sym_null, sym_star, - [60776] = 21, + [43659] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, - anon_sym_COMMA, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1901), 1, + anon_sym_LPAREN, + ACTIONS(1903), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR, + ACTIONS(1907), 1, + anon_sym_SQUOTE, + ACTIONS(1909), 1, + aux_sym_array_constructor_token1, + ACTIONS(1911), 1, + aux_sym_time_expression_token4, + ACTIONS(1913), 1, + anon_sym_STAR, + ACTIONS(1917), 1, + sym__identifier, + STATE(174), 1, + sym_identifier, + ACTIONS(1915), 3, + sym_true, + sym_false, + sym_number, + STATE(656), 3, + sym_minus, + sym_plus, + sym_not, + STATE(78), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43720] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1921), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1923), 1, + anon_sym_DOLLAR, + ACTIONS(1925), 1, + anon_sym_SQUOTE, + ACTIONS(1927), 1, + aux_sym_array_constructor_token1, + ACTIONS(1929), 1, + aux_sym_time_expression_token4, + ACTIONS(1931), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + sym__identifier, + STATE(38), 1, + sym_identifier, + ACTIONS(1933), 3, + sym_true, + sym_false, + sym_number, + STATE(666), 3, + sym_minus, + sym_plus, + sym_not, + STATE(9), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43781] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, ACTIONS(1793), 1, - aux_sym_select_limit_token1, + anon_sym_LPAREN, ACTIONS(1795), 1, - aux_sym_select_offset_token1, + aux_sym_alter_column_action_token2, ACTIONS(1797), 1, - aux_sym_select_order_by_token1, + anon_sym_DOLLAR, ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(875), 1, - aux_sym_returning_repeat1, - STATE(894), 1, - sym_into, - STATE(916), 1, - sym_select_from, - STATE(969), 1, - sym_select_where, - STATE(1009), 1, - sym_select_group_by, - STATE(1076), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60844] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_COMMA, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(888), 1, - sym_into, - STATE(928), 1, - sym_select_from, - STATE(966), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1042), 1, - aux_sym_returning_repeat1, - STATE(1075), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60912] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(1937), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(398), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43842] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(1939), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(512), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43903] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(1941), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(46), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [43964] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1901), 1, + anon_sym_LPAREN, + ACTIONS(1903), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR, + ACTIONS(1907), 1, + anon_sym_SQUOTE, + ACTIONS(1909), 1, + aux_sym_array_constructor_token1, + ACTIONS(1911), 1, + aux_sym_time_expression_token4, + ACTIONS(1913), 1, + anon_sym_STAR, + ACTIONS(1917), 1, + sym__identifier, + STATE(174), 1, + sym_identifier, + ACTIONS(1943), 3, + sym_true, + sym_false, + sym_number, + STATE(656), 3, + sym_minus, + sym_plus, + sym_not, + STATE(101), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44025] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(1959), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(177), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44086] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(1963), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(197), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44147] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(1965), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(163), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44208] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1901), 1, + anon_sym_LPAREN, + ACTIONS(1903), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR, + ACTIONS(1907), 1, + anon_sym_SQUOTE, + ACTIONS(1909), 1, + aux_sym_array_constructor_token1, + ACTIONS(1911), 1, + aux_sym_time_expression_token4, + ACTIONS(1913), 1, + anon_sym_STAR, + ACTIONS(1917), 1, + sym__identifier, + STATE(174), 1, + sym_identifier, + ACTIONS(1967), 3, + sym_true, + sym_false, + sym_number, + STATE(656), 3, + sym_minus, + sym_plus, + sym_not, + STATE(81), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44269] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1921), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1923), 1, + anon_sym_DOLLAR, + ACTIONS(1925), 1, + anon_sym_SQUOTE, + ACTIONS(1927), 1, + aux_sym_array_constructor_token1, + ACTIONS(1929), 1, + aux_sym_time_expression_token4, + ACTIONS(1931), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + sym__identifier, + STATE(38), 1, + sym_identifier, + ACTIONS(1969), 3, + sym_true, + sym_false, + sym_number, + STATE(666), 3, + sym_minus, + sym_plus, + sym_not, + STATE(13), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44330] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(1971), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(14), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44391] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, + sym__identifier, + STATE(209), 1, + sym_identifier, + ACTIONS(1973), 3, + sym_true, + sym_false, + sym_number, + STATE(687), 3, + sym_minus, + sym_plus, + sym_not, + STATE(132), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44452] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1977), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1979), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + anon_sym_SQUOTE, + ACTIONS(1983), 1, + aux_sym_array_constructor_token1, + ACTIONS(1985), 1, + aux_sym_time_expression_token4, + ACTIONS(1987), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + sym__identifier, + STATE(217), 1, + sym_identifier, + ACTIONS(1989), 3, + sym_true, + sym_false, + sym_number, + STATE(669), 3, + sym_minus, + sym_plus, + sym_not, + STATE(116), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44513] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1921), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1923), 1, + anon_sym_DOLLAR, + ACTIONS(1925), 1, + anon_sym_SQUOTE, + ACTIONS(1927), 1, + aux_sym_array_constructor_token1, + ACTIONS(1929), 1, + aux_sym_time_expression_token4, + ACTIONS(1931), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + sym__identifier, + STATE(38), 1, + sym_identifier, + ACTIONS(1993), 3, + sym_true, + sym_false, + sym_number, + STATE(666), 3, + sym_minus, + sym_plus, + sym_not, + STATE(12), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44574] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, + sym__identifier, + STATE(209), 1, + sym_identifier, + ACTIONS(1995), 3, + sym_true, + sym_false, + sym_number, + STATE(687), 3, + sym_minus, + sym_plus, + sym_not, + STATE(126), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44635] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(1997), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(282), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44696] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1919), 1, + anon_sym_LPAREN, + ACTIONS(1921), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1923), 1, + anon_sym_DOLLAR, + ACTIONS(1925), 1, + anon_sym_SQUOTE, + ACTIONS(1927), 1, + aux_sym_array_constructor_token1, + ACTIONS(1929), 1, + aux_sym_time_expression_token4, + ACTIONS(1931), 1, + anon_sym_STAR, + ACTIONS(1935), 1, + sym__identifier, + STATE(38), 1, + sym_identifier, + ACTIONS(1999), 3, + sym_true, + sym_false, + sym_number, + STATE(666), 3, + sym_minus, + sym_plus, + sym_not, + STATE(11), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44757] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + ACTIONS(2001), 1, + anon_sym_LPAREN, + STATE(272), 1, + sym_identifier, + ACTIONS(2003), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(160), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44818] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2005), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(528), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1118), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1134), 1, + anon_sym_SQUOTE, + ACTIONS(1136), 1, + aux_sym_array_constructor_token1, + ACTIONS(1138), 1, + aux_sym_time_expression_token4, + ACTIONS(1140), 1, + anon_sym_STAR, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1148), 1, + sym__identifier, + STATE(150), 1, + sym_identifier, + ACTIONS(2007), 3, + sym_true, + sym_false, + sym_number, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(48), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [44940] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(2009), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(437), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45001] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1977), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1979), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + anon_sym_SQUOTE, + ACTIONS(1983), 1, + aux_sym_array_constructor_token1, + ACTIONS(1985), 1, + aux_sym_time_expression_token4, + ACTIONS(1987), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + sym__identifier, + STATE(217), 1, + sym_identifier, + ACTIONS(2011), 3, + sym_true, + sym_false, + sym_number, + STATE(669), 3, + sym_minus, + sym_plus, + sym_not, + STATE(118), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45062] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2013), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(440), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45123] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2015), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(15), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45184] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2017), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(529), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45245] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2019), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(518), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45306] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2021), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(509), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45367] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2023), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(506), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45428] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2025), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(514), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45489] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2027), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(428), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45550] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1222), 1, + anon_sym_LPAREN, + ACTIONS(1226), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1228), 1, + anon_sym_DOLLAR, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(1232), 1, + aux_sym_array_constructor_token1, + ACTIONS(1234), 1, + aux_sym_time_expression_token4, + ACTIONS(1236), 1, + anon_sym_STAR, + ACTIONS(1240), 1, + sym__identifier, + STATE(209), 1, + sym_identifier, + ACTIONS(2029), 3, + sym_true, + sym_false, + sym_number, + STATE(687), 3, + sym_minus, + sym_plus, + sym_not, + STATE(117), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45611] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1901), 1, + anon_sym_LPAREN, + ACTIONS(1903), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1905), 1, + anon_sym_DOLLAR, + ACTIONS(1907), 1, + anon_sym_SQUOTE, + ACTIONS(1909), 1, + aux_sym_array_constructor_token1, + ACTIONS(1911), 1, + aux_sym_time_expression_token4, + ACTIONS(1913), 1, + anon_sym_STAR, + ACTIONS(1917), 1, + sym__identifier, + STATE(174), 1, + sym_identifier, + ACTIONS(2031), 3, + sym_true, + sym_false, + sym_number, + STATE(656), 3, + sym_minus, + sym_plus, + sym_not, + STATE(67), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45672] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(2033), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(155), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45733] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(2035), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(66), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45794] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2037), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(457), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45855] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2039), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(495), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45916] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1977), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1979), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + anon_sym_SQUOTE, + ACTIONS(1983), 1, + aux_sym_array_constructor_token1, + ACTIONS(1985), 1, + aux_sym_time_expression_token4, + ACTIONS(1987), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + sym__identifier, + STATE(217), 1, + sym_identifier, + ACTIONS(2041), 3, + sym_true, + sym_false, + sym_number, + STATE(669), 3, + sym_minus, + sym_plus, + sym_not, + STATE(129), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [45977] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1945), 1, + anon_sym_LPAREN, + ACTIONS(1947), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1949), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + ACTIONS(1953), 1, + aux_sym_array_constructor_token1, + ACTIONS(1955), 1, + aux_sym_time_expression_token4, + ACTIONS(1957), 1, + anon_sym_STAR, + ACTIONS(1961), 1, + sym__identifier, + STATE(272), 1, + sym_identifier, + ACTIONS(2043), 3, + sym_true, + sym_false, + sym_number, + STATE(694), 3, + sym_minus, + sym_plus, + sym_not, + STATE(146), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46038] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1815), 1, + anon_sym_DOLLAR, + ACTIONS(1817), 1, + anon_sym_SQUOTE, + ACTIONS(1819), 1, + aux_sym_array_constructor_token1, + ACTIONS(1821), 1, + aux_sym_time_expression_token4, + ACTIONS(1823), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + sym__identifier, + STATE(453), 1, + sym_identifier, + ACTIONS(2045), 3, + sym_true, + sym_false, + sym_number, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(422), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46099] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(1632), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(515), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46160] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + ACTIONS(2047), 3, + sym_true, + sym_false, + sym_number, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(149), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46221] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1977), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1979), 1, + anon_sym_DOLLAR, + ACTIONS(1981), 1, + anon_sym_SQUOTE, + ACTIONS(1983), 1, + aux_sym_array_constructor_token1, + ACTIONS(1985), 1, + aux_sym_time_expression_token4, + ACTIONS(1987), 1, + anon_sym_STAR, + ACTIONS(1991), 1, + sym__identifier, + STATE(217), 1, + sym_identifier, + ACTIONS(2049), 3, + sym_true, + sym_false, + sym_number, + STATE(669), 3, + sym_minus, + sym_plus, + sym_not, + STATE(130), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46282] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2051), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(144), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46343] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2053), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(526), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46404] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2055), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(523), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46465] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2057), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(530), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46526] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2059), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(502), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46587] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + ACTIONS(2061), 3, + sym_true, + sym_false, + sym_number, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(143), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46648] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1289), 1, + anon_sym_LPAREN, + ACTIONS(1291), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1293), 1, + anon_sym_DOLLAR, + ACTIONS(1295), 1, + anon_sym_SQUOTE, + ACTIONS(1297), 1, + aux_sym_array_constructor_token1, + ACTIONS(1299), 1, + aux_sym_time_expression_token4, + ACTIONS(1301), 1, + anon_sym_STAR, + ACTIONS(1305), 1, + sym__identifier, + STATE(275), 1, + sym_identifier, + ACTIONS(2063), 3, + sym_true, + sym_false, + sym_number, + STATE(704), 3, + sym_minus, + sym_plus, + sym_not, + STATE(138), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46709] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1775), 1, + anon_sym_LPAREN, + ACTIONS(1777), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + anon_sym_SQUOTE, + ACTIONS(1783), 1, + aux_sym_array_constructor_token1, + ACTIONS(1785), 1, + aux_sym_time_expression_token4, + ACTIONS(1787), 1, + anon_sym_STAR, + ACTIONS(1791), 1, + sym__identifier, + STATE(501), 1, + sym_identifier, + ACTIONS(2065), 3, + sym_true, + sym_false, + sym_number, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(430), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46770] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1815), 1, + anon_sym_DOLLAR, + ACTIONS(1817), 1, + anon_sym_SQUOTE, + ACTIONS(1819), 1, + aux_sym_array_constructor_token1, + ACTIONS(1821), 1, + aux_sym_time_expression_token4, + ACTIONS(1823), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + sym__identifier, + STATE(453), 1, + sym_identifier, + ACTIONS(2067), 3, + sym_true, + sym_false, + sym_number, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(386), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46831] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2069), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(517), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46892] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1118), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1130), 1, + anon_sym_DOLLAR, + ACTIONS(1134), 1, + anon_sym_SQUOTE, + ACTIONS(1136), 1, + aux_sym_array_constructor_token1, + ACTIONS(1138), 1, + aux_sym_time_expression_token4, + ACTIONS(1140), 1, + anon_sym_STAR, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1148), 1, + sym__identifier, + STATE(150), 1, + sym_identifier, + ACTIONS(2071), 3, + sym_true, + sym_false, + sym_number, + STATE(709), 3, + sym_minus, + sym_plus, + sym_not, + STATE(54), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [46953] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1815), 1, + anon_sym_DOLLAR, + ACTIONS(1817), 1, + anon_sym_SQUOTE, + ACTIONS(1819), 1, + aux_sym_array_constructor_token1, + ACTIONS(1821), 1, + aux_sym_time_expression_token4, + ACTIONS(1823), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + sym__identifier, + STATE(453), 1, + sym_identifier, + ACTIONS(2073), 3, + sym_true, + sym_false, + sym_number, + STATE(695), 3, + sym_minus, + sym_plus, + sym_not, + STATE(424), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47014] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1793), 1, + anon_sym_LPAREN, + ACTIONS(1795), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1797), 1, + anon_sym_DOLLAR, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + ACTIONS(1801), 1, + aux_sym_array_constructor_token1, + ACTIONS(1803), 1, + aux_sym_time_expression_token4, + ACTIONS(1805), 1, + anon_sym_STAR, + ACTIONS(1809), 1, + sym__identifier, + STATE(159), 1, + sym_identifier, + ACTIONS(2075), 3, + sym_true, + sym_false, + sym_number, + STATE(690), 3, + sym_minus, + sym_plus, + sym_not, + STATE(278), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47075] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2077), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(520), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47136] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1775), 1, + anon_sym_LPAREN, + ACTIONS(1777), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + anon_sym_SQUOTE, + ACTIONS(1783), 1, + aux_sym_array_constructor_token1, + ACTIONS(1785), 1, + aux_sym_time_expression_token4, + ACTIONS(1787), 1, + anon_sym_STAR, + ACTIONS(1791), 1, + sym__identifier, + STATE(501), 1, + sym_identifier, + ACTIONS(2079), 3, + sym_true, + sym_false, + sym_number, + STATE(706), 3, + sym_minus, + sym_plus, + sym_not, + STATE(434), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47197] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2081), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(511), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47258] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2083), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(505), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47319] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2085), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(18), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47380] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2087), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(516), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47441] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2089), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(532), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47502] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1142), 1, + anon_sym_DASH, + ACTIONS(1144), 1, + anon_sym_PLUS, + ACTIONS(1608), 1, + anon_sym_LPAREN, + ACTIONS(1610), 1, + aux_sym_alter_column_action_token2, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(1620), 1, + aux_sym_array_constructor_token1, + ACTIONS(1622), 1, + aux_sym_time_expression_token4, + ACTIONS(1624), 1, + anon_sym_STAR, + ACTIONS(1628), 1, + sym__identifier, + STATE(34), 1, + sym_identifier, + ACTIONS(2091), 3, + sym_true, + sym_false, + sym_number, + STATE(680), 3, + sym_minus, + sym_plus, + sym_not, + STATE(531), 9, + sym_string, + sym__value_expression, + sym_array_constructor, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_null, + sym_star, + [47563] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + STATE(721), 1, + aux_sym_returning_repeat1, + STATE(728), 1, + sym_into, + STATE(762), 1, + sym_select_from, + STATE(813), 1, + sym_select_where, + STATE(860), 1, + sym_select_group_by, + STATE(915), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(996), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [47633] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(739), 1, + sym_into, + STATE(777), 1, + sym_select_from, + STATE(818), 1, + sym_select_where, + STATE(871), 1, + sym_select_group_by, + STATE(876), 1, + aux_sym_returning_repeat1, + STATE(905), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [47703] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + anon_sym_COMMA, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(724), 1, + aux_sym_returning_repeat1, + STATE(739), 1, + sym_into, + STATE(777), 1, + sym_select_from, + STATE(818), 1, + sym_select_where, + STATE(871), 1, + sym_select_group_by, + STATE(905), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [47773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, anon_sym_BSLASH, - ACTIONS(1803), 23, + ACTIONS(2117), 23, aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, aux_sym_create_type_statement_token1, @@ -72081,140 +61937,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [60944] = 21, + [47805] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1785), 1, + ACTIONS(2093), 1, anon_sym_COMMA, - ACTIONS(1787), 1, + ACTIONS(2095), 1, aux_sym_update_statement_token4, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - STATE(878), 1, - aux_sym_returning_repeat1, - STATE(896), 1, - sym_into, - STATE(924), 1, - sym_select_from, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1072), 1, - sym_select_having, - STATE(1127), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2123), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61012] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - anon_sym_COMMA, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(894), 1, + STATE(738), 1, sym_into, - STATE(916), 1, + STATE(768), 1, sym_select_from, - STATE(969), 1, + STATE(819), 1, sym_select_where, - STATE(1009), 1, + STATE(855), 1, sym_select_group_by, - STATE(1042), 1, + STATE(876), 1, aux_sym_returning_repeat1, - STATE(1076), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61080] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1809), 1, - aux_sym_update_statement_token2, - ACTIONS(1811), 1, - anon_sym_LPAREN, STATE(904), 1, - sym_identifier, - ACTIONS(1807), 3, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1813), 16, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [61119] = 4, + [47875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(2128), 1, anon_sym_LPAREN, - STATE(914), 1, + STATE(744), 1, sym__list_of_identifiers, - ACTIONS(1815), 21, + ACTIONS(2126), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -72236,14 +62014,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [61152] = 4, + [47908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(2128), 1, anon_sym_LPAREN, - STATE(903), 1, + STATE(759), 1, sym__list_of_identifiers, - ACTIONS(1819), 21, + ACTIONS(2130), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -72265,20 +62043,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [61185] = 6, + [47941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(1823), 1, + ACTIONS(2134), 1, aux_sym_update_statement_token2, - STATE(880), 1, + ACTIONS(2136), 1, + anon_sym_LPAREN, + STATE(754), 1, sym_identifier, - ACTIONS(1821), 3, + ACTIONS(2132), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1825), 16, + ACTIONS(2138), 16, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, @@ -72295,7 +62075,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [61221] = 3, + [47980] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(777), 1, + sym_select_from, + STATE(818), 1, + sym_select_where, + STATE(871), 1, + sym_select_group_by, + STATE(905), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [48044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2142), 1, + aux_sym_join_item_token1, + ACTIONS(2145), 1, + aux_sym_join_item_token2, + ACTIONS(2148), 1, + aux_sym_join_item_token3, + ACTIONS(2151), 1, + aux_sym_join_type_token1, + STATE(1062), 1, + sym_join_type, + STATE(732), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2154), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [48086] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -72322,937 +62179,533 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [61251] = 22, + [48116] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - ACTIONS(1827), 1, + ACTIONS(2157), 1, anon_sym_COMMA, - ACTIONS(1829), 1, + ACTIONS(2159), 1, aux_sym_update_statement_token4, - STATE(926), 1, + STATE(769), 1, sym_into, - STATE(960), 1, + STATE(801), 1, sym_select_from, - STATE(1010), 1, + STATE(849), 1, sym_select_where, - STATE(1077), 1, - sym_select_group_by, - STATE(1110), 1, - aux_sym_returning_repeat1, - STATE(1122), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61319] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(920), 1, - sym_into, - STATE(957), 1, - sym_select_from, - STATE(994), 1, - sym_select_where, - STATE(1069), 1, - sym_select_group_by, - STATE(1110), 1, - aux_sym_returning_repeat1, - STATE(1140), 1, - sym_where_filter, - STATE(1156), 1, - sym_select_having, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61387] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(924), 1, - sym_select_from, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1072), 1, - sym_select_having, - STATE(1127), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61449] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(895), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1831), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [61481] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, STATE(930), 1, - sym_select_from, - STATE(974), 1, - sym_select_where, - STATE(1005), 1, sym_select_group_by, - STATE(1068), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1143), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61543] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(885), 1, - aux_sym_returning_repeat1, - STATE(927), 1, - sym_into, - STATE(964), 1, - sym_select_from, - STATE(999), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1190), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61611] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - aux_sym_join_item_token1, - ACTIONS(1837), 1, - aux_sym_join_item_token2, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1249), 1, - sym_join_type, - STATE(895), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [61653] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(884), 1, - aux_sym_returning_repeat1, - STATE(920), 1, - sym_into, - STATE(957), 1, - sym_select_from, - STATE(994), 1, - sym_select_where, - STATE(1069), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1156), 1, - sym_select_having, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61721] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - aux_sym_join_item_token1, - ACTIONS(1837), 1, - aux_sym_join_item_token2, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1249), 1, - sym_join_type, - STATE(890), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1845), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [61763] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(887), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [61795] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(928), 1, - sym_select_from, - STATE(966), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1075), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61857] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - aux_sym_join_item_token1, - ACTIONS(1852), 1, - aux_sym_join_item_token2, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - STATE(1249), 1, - sym_join_type, - STATE(895), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1847), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [61899] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_update_statement_token4, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(916), 1, - sym_select_from, - STATE(969), 1, - sym_select_where, - STATE(1009), 1, - sym_select_group_by, - STATE(1076), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61961] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(950), 1, - sym_into, - STATE(972), 1, - sym_select_from, - STATE(1047), 1, - sym_select_where, - STATE(1096), 1, - sym_select_group_by, - STATE(1124), 1, - aux_sym_returning_repeat1, - STATE(1140), 1, - sym_where_filter, - STATE(1179), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1604), 1, - sym__select_limit_offset, - [62028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(471), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [62057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1868), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62111] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, STATE(954), 1, - sym_into, - STATE(971), 1, - sym_select_from, - STATE(1052), 1, - sym_select_where, - STATE(1115), 1, - sym_select_group_by, - STATE(1124), 1, aux_sym_returning_repeat1, - STATE(1140), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1256), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1590), 1, - sym__select_limit_offset, - [62178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(455), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [62207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1872), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(445), 18, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [62290] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1876), 1, - aux_sym_update_statement_token2, - ACTIONS(1878), 1, - anon_sym_LPAREN, - STATE(904), 1, - sym_identifier, - ACTIONS(1807), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1813), 14, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62327] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(901), 1, - aux_sym_returning_repeat1, - STATE(950), 1, - sym_into, - STATE(972), 1, - sym_select_from, - STATE(1047), 1, - sym_select_where, - STATE(1096), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1179), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1604), 1, - sym__select_limit_offset, - [62394] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(913), 1, - sym_identifier, - ACTIONS(1874), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1880), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62427] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(897), 1, - aux_sym_returning_repeat1, - STATE(935), 1, - sym_into, STATE(970), 1, - sym_select_from, - STATE(1044), 1, - sym_select_where, - STATE(1101), 1, - sym_select_group_by, - STATE(1140), 1, sym_where_filter, - STATE(1174), 1, + STATE(990), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, + STATE(1043), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1609), 1, + STATE(1382), 1, sym__select_limit_offset, - [62494] = 2, + ACTIONS(2121), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [48184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(119), 21, + ACTIONS(2163), 1, + aux_sym_join_item_token1, + ACTIONS(2166), 1, + aux_sym_join_item_token2, + ACTIONS(2169), 1, + aux_sym_join_item_token3, + ACTIONS(2172), 1, + aux_sym_join_type_token1, + STATE(1062), 1, + sym_join_type, + STATE(733), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2175), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [48226] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2180), 1, + aux_sym_join_item_token1, + ACTIONS(2183), 1, + aux_sym_join_item_token2, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + STATE(1062), 1, + sym_join_type, + STATE(733), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2192), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2178), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [48268] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + aux_sym_join_item_token1, + ACTIONS(2197), 1, + aux_sym_join_item_token2, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1062), 1, + sym_join_type, + STATE(733), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [48310] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2157), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + aux_sym_update_statement_token4, + STATE(731), 1, + aux_sym_returning_repeat1, + STATE(766), 1, + sym_into, + STATE(804), 1, + sym_select_from, + STATE(844), 1, + sym_select_where, + STATE(903), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(972), 1, + sym_select_having, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [48378] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + STATE(762), 1, + sym_select_from, + STATE(813), 1, + sym_select_where, + STATE(860), 1, + sym_select_group_by, + STATE(915), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(996), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [48442] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2157), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + aux_sym_update_statement_token4, + STATE(766), 1, + sym_into, + STATE(804), 1, + sym_select_from, + STATE(844), 1, + sym_select_where, + STATE(903), 1, + sym_select_group_by, + STATE(954), 1, + aux_sym_returning_repeat1, + STATE(970), 1, + sym_where_filter, + STATE(972), 1, + sym_select_having, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [48510] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(763), 1, + sym_select_from, + STATE(811), 1, + sym_select_where, + STATE(869), 1, + sym_select_group_by, + STATE(902), 1, + sym_select_having, + STATE(967), 1, + sym_select_order_by, + STATE(970), 1, + sym_where_filter, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1228), 1, + sym__select_limit_offset, + ACTIONS(2205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [48574] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2095), 1, + aux_sym_update_statement_token4, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(768), 1, + sym_select_from, + STATE(819), 1, + sym_select_where, + STATE(855), 1, + sym_select_group_by, + STATE(904), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [48638] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2212), 1, + aux_sym_update_statement_token2, + STATE(726), 1, + sym_identifier, + ACTIONS(2210), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2214), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [48674] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2157), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + aux_sym_update_statement_token4, + STATE(737), 1, + aux_sym_returning_repeat1, + STATE(764), 1, + sym_into, + STATE(807), 1, + sym_select_from, + STATE(846), 1, + sym_select_where, + STATE(910), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [48742] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + aux_sym_join_item_token1, + ACTIONS(2197), 1, + aux_sym_join_item_token2, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1062), 1, + sym_join_type, + STATE(734), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [48784] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + ACTIONS(2216), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(781), 1, + sym_into, + STATE(822), 1, + sym_select_from, + STATE(887), 1, + sym_select_where, + STATE(959), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(991), 1, + aux_sym_returning_repeat1, + STATE(1024), 1, + sym_select_having, + STATE(1086), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1432), 1, + sym__select_limit_offset, + [48851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2220), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -73274,10 +62727,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [62521] = 2, + [48878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 21, + ACTIONS(711), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(713), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [48907] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2216), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(750), 1, + aux_sym_returning_repeat1, + STATE(793), 1, + sym_into, + STATE(816), 1, + sym_select_from, + STATE(890), 1, + sym_select_where, + STATE(931), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1005), 1, + sym_select_having, + STATE(1067), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1437), 1, + sym__select_limit_offset, + [48974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -73299,12 +62823,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [62548] = 3, + [49001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, + ACTIONS(2224), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(149), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49055] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + ACTIONS(2216), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(791), 1, + sym_into, + STATE(815), 1, + sym_select_from, + STATE(888), 1, + sym_select_where, + STATE(951), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(991), 1, + aux_sym_returning_repeat1, + STATE(1011), 1, + sym_select_having, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1434), 1, + sym__select_limit_offset, + [49122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2226), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, anon_sym_BSLASH, - ACTIONS(1803), 20, + ACTIONS(2117), 20, aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, aux_sym_create_type_statement_token1, @@ -73325,336 +62969,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_perform_statement_token1, aux_sym_select_statement_token1, sym__identifier, - [62577] = 2, + [49178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 21, + ACTIONS(707), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62631] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1072), 1, - sym_select_having, - STATE(1127), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [62687] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(966), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1075), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [62743] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(1886), 1, - aux_sym_join_item_token1, - ACTIONS(1889), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(917), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1847), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [62783] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(922), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62813] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(1892), 1, - aux_sym_join_item_token1, - ACTIONS(1894), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(917), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [62853] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(960), 1, - sym_select_from, - STATE(1010), 1, - sym_select_where, - STATE(1077), 1, - sym_select_group_by, - STATE(1122), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(1892), 1, - aux_sym_join_item_token1, - ACTIONS(1894), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(919), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1845), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [62955] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(917), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1831), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [62985] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, + ACTIONS(709), 18, aux_sym_update_statement_token2, - STATE(880), 1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [49207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2228), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49234] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(757), 1, sym_identifier, - ACTIONS(1821), 3, + ACTIONS(2228), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1825), 14, + ACTIONS(2230), 16, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, @@ -73668,62 +63048,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [63019] = 17, + [49267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(969), 1, - sym_select_where, - STATE(1009), 1, - sym_select_group_by, - STATE(1076), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1140), 1, - sym_where_filter, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 5, + ACTIONS(693), 3, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(695), 18, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [49296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 21, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [63075] = 7, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49323] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1807), 1, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + ACTIONS(2216), 1, anon_sym_COMMA, - ACTIONS(1898), 1, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(743), 1, + aux_sym_returning_repeat1, + STATE(791), 1, + sym_into, + STATE(815), 1, + sym_select_from, + STATE(888), 1, + sym_select_where, + STATE(951), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1011), 1, + sym_select_having, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1434), 1, + sym__select_limit_offset, + [49390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2126), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [49417] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2234), 1, aux_sym_update_statement_token2, - ACTIONS(1900), 1, + ACTIONS(2236), 1, anon_sym_LPAREN, - STATE(904), 1, + STATE(754), 1, sym_identifier, - ACTIONS(1813), 15, + ACTIONS(2132), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2138), 14, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, @@ -73736,211 +63199,355 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [63111] = 20, + [49454] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1896), 1, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2238), 1, + aux_sym_join_item_token1, + ACTIONS(2240), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(765), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(956), 1, - sym_select_from, - STATE(1015), 1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [49494] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(818), 1, sym_select_where, - STATE(1059), 1, + STATE(871), 1, sym_select_group_by, - STATE(1128), 1, + STATE(905), 1, sym_select_having, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1208), 1, + STATE(983), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, + STATE(1157), 1, sym_into, - STATE(1544), 1, + STATE(1195), 1, sym__select_limit_offset, - ACTIONS(1833), 2, + ACTIONS(2112), 4, anon_sym_SEMI, anon_sym_RPAREN, - [63173] = 20, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [49552] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1896), 1, + ACTIONS(2244), 1, aux_sym_insert_statement_token2, - STATE(957), 1, - sym_select_from, - STATE(994), 1, + STATE(823), 1, sym_select_where, - STATE(1069), 1, + STATE(870), 1, sym_select_group_by, - STATE(1140), 1, + STATE(925), 1, + sym_select_having, + STATE(970), 1, sym_where_filter, + STATE(1001), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1162), 1, + sym__select_limit_offset, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [49610] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2159), 1, + aux_sym_update_statement_token4, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(804), 1, + sym_select_from, + STATE(844), 1, + sym_select_where, + STATE(903), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(972), 1, + sym_select_having, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [49672] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + ACTIONS(2249), 1, + aux_sym_join_item_token1, + ACTIONS(2252), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(765), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2192), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2178), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [49712] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2159), 1, + aux_sym_update_statement_token4, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(801), 1, + sym_select_from, + STATE(849), 1, + sym_select_where, + STATE(930), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(990), 1, + sym_select_having, + STATE(1043), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1382), 1, + sym__select_limit_offset, + ACTIONS(2121), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [49774] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + STATE(813), 1, + sym_select_where, + STATE(860), 1, + sym_select_group_by, + STATE(915), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(996), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [49832] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(811), 1, + sym_select_where, + STATE(869), 1, + sym_select_group_by, + STATE(902), 1, + sym_select_having, + STATE(967), 1, + sym_select_order_by, + STATE(970), 1, + sym_where_filter, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, STATE(1156), 1, - sym_select_having, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, sym_into, - STATE(1519), 1, + STATE(1228), 1, sym__select_limit_offset, - ACTIONS(1783), 2, + ACTIONS(2205), 4, anon_sym_SEMI, anon_sym_RPAREN, - [63235] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(974), 1, - sym_select_where, - STATE(1005), 1, - sym_select_group_by, - STATE(1068), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1143), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [63291] = 20, + [49890] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - ACTIONS(1829), 1, + ACTIONS(2159), 1, aux_sym_update_statement_token4, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(964), 1, + STATE(809), 1, sym_select_from, + STATE(867), 1, + sym_select_where, + STATE(909), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, STATE(999), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1139), 1, sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1190), 1, + STATE(1055), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1353), 1, + STATE(1156), 1, sym_into, - STATE(1495), 1, + STATE(1348), 1, sym__select_limit_offset, - ACTIONS(792), 2, + ACTIONS(2205), 2, anon_sym_SEMI, anon_sym_RPAREN, - [63353] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - STATE(968), 1, - sym_select_where, - STATE(1002), 1, - sym_select_group_by, - STATE(1061), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1146), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63409] = 3, + [49952] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -73965,76 +63572,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [63437] = 6, + [49980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1821), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(880), 1, - sym_identifier, - ACTIONS(1825), 15, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, + ACTIONS(2199), 1, aux_sym_join_item_token3, + ACTIONS(2201), 1, aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [63470] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1904), 1, - anon_sym_SEMI, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - STATE(937), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [63515] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, + ACTIONS(2238), 1, + aux_sym_join_item_token1, + ACTIONS(2240), 1, + aux_sym_join_item_token2, + STATE(1062), 1, sym_join_type, - STATE(948), 2, + STATE(761), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1845), 16, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 10, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50020] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2132), 1, + anon_sym_COMMA, + ACTIONS(2255), 1, + aux_sym_update_statement_token2, + ACTIONS(2257), 1, + anon_sym_LPAREN, + STATE(754), 1, + sym_identifier, + ACTIONS(2138), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -74050,96 +63632,202 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [63544] = 20, + [50056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(972), 1, - sym_select_from, - STATE(1047), 1, - sym_select_where, - STATE(1096), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1179), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1604), 1, - sym__select_limit_offset, - [63605] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1924), 17, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2212), 1, + aux_sym_update_statement_token2, + STATE(726), 1, + sym_identifier, + ACTIONS(2210), 3, anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2214), 14, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [50090] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2159), 1, aux_sym_update_statement_token4, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(807), 1, + sym_select_from, + STATE(846), 1, + sym_select_where, + STATE(910), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [50152] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 1, + aux_sym_join_item_token3, + ACTIONS(2151), 1, + aux_sym_join_type_token1, + ACTIONS(2259), 1, + aux_sym_join_item_token1, + ACTIONS(2262), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(776), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2154), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 10, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50192] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + aux_sym_join_item_token3, + ACTIONS(2172), 1, + aux_sym_join_type_token1, + ACTIONS(2265), 1, + aux_sym_join_item_token1, + ACTIONS(2268), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(765), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2175), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50232] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(819), 1, + sym_select_where, + STATE(855), 1, + sym_select_group_by, + STATE(904), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_alter_table_rename_column_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [63634] = 12, + [50290] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1929), 1, + ACTIONS(2271), 1, anon_sym_SEMI, - ACTIONS(1931), 1, + ACTIONS(2273), 1, aux_sym_update_statement_token2, - ACTIONS(1934), 1, + ACTIONS(2275), 1, aux_sym_fk_ref_action_token1, - ACTIONS(1937), 1, + ACTIONS(2277), 1, aux_sym_sequence_increment_token1, - ACTIONS(1940), 1, + ACTIONS(2279), 1, aux_sym_sequence_min_token1, - ACTIONS(1943), 1, + ACTIONS(2281), 1, aux_sym_sequence_max_token1, - ACTIONS(1946), 1, + ACTIONS(2283), 1, aux_sym_sequence_start_token1, - ACTIONS(1949), 1, + ACTIONS(2285), 1, aux_sym_sequence_cache_token1, - ACTIONS(1952), 1, + ACTIONS(2287), 1, aux_sym_sequence_cycle_token1, - ACTIONS(1955), 1, + ACTIONS(2289), 1, aux_sym_sequence_owned_token1, - STATE(937), 9, + STATE(795), 9, sym_sequence_increment, sym_sequence_min, sym_sequence_max, @@ -74149,184 +63837,14 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_owned, sym_as, aux_sym_create_sequence_statement_repeat1, - [63679] = 12, + [50335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1958), 1, - anon_sym_SEMI, - STATE(933), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [63724] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1904), 1, - anon_sym_SEMI, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - STATE(945), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [63769] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(1960), 1, - aux_sym_join_item_token1, - ACTIONS(1962), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(953), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1845), 9, - anon_sym_COMMA, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [63808] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1964), 1, - anon_sym_SEMI, - STATE(944), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [63853] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(970), 1, - sym_select_from, - STATE(1044), 1, - sym_select_where, - STATE(1101), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1174), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [63914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, + ACTIONS(693), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(445), 16, + ACTIONS(695), 16, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -74343,84 +63861,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [63941] = 12, + [50362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1958), 1, - anon_sym_SEMI, - STATE(937), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [63986] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(1908), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1910), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1912), 1, - aux_sym_sequence_min_token1, - ACTIONS(1914), 1, - aux_sym_sequence_max_token1, - ACTIONS(1916), 1, - aux_sym_sequence_start_token1, - ACTIONS(1918), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1920), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1922), 1, - aux_sym_sequence_owned_token1, - ACTIONS(1966), 1, - anon_sym_SEMI, - STATE(937), 9, - sym_sequence_increment, - sym_sequence_min, - sym_sequence_max, - sym_sequence_start, - sym_sequence_cache, - sym_sequence_cycle, - sym_sequence_owned, - sym_as, - aux_sym_create_sequence_statement_repeat1, - [64031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - STATE(913), 1, + STATE(757), 1, sym_identifier, - ACTIONS(1874), 3, + ACTIONS(2228), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1880), 14, + ACTIONS(2230), 14, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_select_having_token1, @@ -74435,151 +63887,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [64062] = 3, + [50393] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(455), 16, - aux_sym_update_statement_token2, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, + ACTIONS(2102), 1, aux_sym_select_having_token1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - sym__identifier, - [64089] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(951), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1831), 16, - anon_sym_COMMA, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + ACTIONS(2205), 1, aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [64118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(471), 16, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [64145] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - ACTIONS(1866), 1, + ACTIONS(2218), 1, aux_sym_update_statement_token4, - STATE(971), 1, + STATE(817), 1, sym_select_from, - STATE(1052), 1, + STATE(874), 1, sym_select_where, - STATE(1115), 1, + STATE(950), 1, sym_select_group_by, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1167), 1, + STATE(1009), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1256), 1, + STATE(1065), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1340), 1, + STATE(1156), 1, sym_into, - STATE(1590), 1, + STATE(1427), 1, sym__select_limit_offset, - [64206] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(1968), 1, - aux_sym_join_item_token1, - ACTIONS(1971), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(951), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1847), 9, - anon_sym_COMMA, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [64245] = 3, + [50454] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 2, @@ -74603,27 +63952,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [64272] = 9, + [50481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2275), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2277), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2279), 1, + aux_sym_sequence_min_token1, + ACTIONS(2281), 1, + aux_sym_sequence_max_token1, + ACTIONS(2283), 1, + aux_sym_sequence_start_token1, + ACTIONS(2285), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2287), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2289), 1, + aux_sym_sequence_owned_token1, + ACTIONS(2291), 1, + anon_sym_SEMI, + STATE(789), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [50526] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, aux_sym_join_item_token3, - ACTIONS(1841), 1, + ACTIONS(2201), 1, aux_sym_join_type_token1, - ACTIONS(1960), 1, + ACTIONS(2293), 1, aux_sym_join_item_token1, - ACTIONS(1962), 1, + ACTIONS(2295), 1, aux_sym_join_item_token2, - STATE(1249), 1, + STATE(1062), 1, sym_join_type, - STATE(951), 2, + STATE(786), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1843), 3, + ACTIONS(2203), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1831), 9, + ACTIONS(2161), 9, anon_sym_COMMA, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -74633,171 +64015,234 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [64311] = 20, + [50565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(711), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(713), 16, + aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - ACTIONS(1789), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - ACTIONS(1833), 1, + sym__identifier, + [50592] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + ACTIONS(2297), 1, + aux_sym_join_item_token1, + ACTIONS(2300), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(786), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2192), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2178), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - ACTIONS(1866), 1, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50631] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2293), 1, + aux_sym_join_item_token1, + ACTIONS(2295), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(784), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2305), 1, + anon_sym_COMMA, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2303), 17, + anon_sym_SEMI, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, aux_sym_update_statement_token4, - STATE(973), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_alter_table_rename_column_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [50699] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2275), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2277), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2279), 1, + aux_sym_sequence_min_token1, + ACTIONS(2281), 1, + aux_sym_sequence_max_token1, + ACTIONS(2283), 1, + aux_sym_sequence_start_token1, + ACTIONS(2285), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2287), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2289), 1, + aux_sym_sequence_owned_token1, + ACTIONS(2308), 1, + anon_sym_SEMI, + STATE(790), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [50744] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_SEMI, + ACTIONS(2312), 1, + aux_sym_update_statement_token2, + ACTIONS(2315), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2318), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2321), 1, + aux_sym_sequence_min_token1, + ACTIONS(2324), 1, + aux_sym_sequence_max_token1, + ACTIONS(2327), 1, + aux_sym_sequence_start_token1, + ACTIONS(2330), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2333), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2336), 1, + aux_sym_sequence_owned_token1, + STATE(790), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [50789] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(822), 1, sym_select_from, - STATE(1029), 1, + STATE(887), 1, sym_select_where, - STATE(1090), 1, + STATE(959), 1, sym_select_group_by, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1176), 1, + STATE(1024), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1262), 1, + STATE(1086), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, + STATE(1181), 1, sym_into, - STATE(1583), 1, + STATE(1432), 1, sym__select_limit_offset, - [64372] = 18, + [50850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(999), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1190), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64428] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1025), 1, - sym_select_where, - STATE(1056), 1, - sym_select_group_by, - STATE(1125), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1202), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64484] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1010), 1, - sym_select_where, - STATE(1077), 1, - sym_select_group_by, - STATE(1122), 1, - sym_select_having, - STATE(1140), 1, - sym_where_filter, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64540] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(1874), 1, + ACTIONS(2210), 1, anon_sym_COMMA, - STATE(913), 1, + ACTIONS(2212), 1, + aux_sym_update_statement_token2, + STATE(726), 1, sym_identifier, - ACTIONS(1880), 15, + ACTIONS(2214), 15, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -74813,13 +64258,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [64570] = 3, + [50883] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(453), 1, - anon_sym_COMMA, - ACTIONS(455), 17, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(815), 1, + sym_select_from, + STATE(888), 1, + sym_select_where, + STATE(951), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1011), 1, + sym_select_having, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1434), 1, + sym__select_limit_offset, + [50944] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, aux_sym_update_statement_token2, + ACTIONS(2275), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2277), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2279), 1, + aux_sym_sequence_min_token1, + ACTIONS(2281), 1, + aux_sym_sequence_max_token1, + ACTIONS(2283), 1, + aux_sym_sequence_start_token1, + ACTIONS(2285), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2287), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2289), 1, + aux_sym_sequence_owned_token1, + ACTIONS(2308), 1, + anon_sym_SEMI, + STATE(798), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [50989] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2275), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2277), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2279), 1, + aux_sym_sequence_min_token1, + ACTIONS(2281), 1, + aux_sym_sequence_max_token1, + ACTIONS(2283), 1, + aux_sym_sequence_start_token1, + ACTIONS(2285), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2287), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2289), 1, + aux_sym_sequence_owned_token1, + ACTIONS(2291), 1, + anon_sym_SEMI, + STATE(790), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [51034] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 1, + aux_sym_join_item_token3, + ACTIONS(2151), 1, + aux_sym_join_type_token1, + ACTIONS(2339), 1, + aux_sym_join_item_token1, + ACTIONS(2342), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(799), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2154), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 9, + anon_sym_COMMA, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -74827,6 +64394,126 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [51073] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2218), 1, + aux_sym_update_statement_token4, + STATE(816), 1, + sym_select_from, + STATE(890), 1, + sym_select_where, + STATE(931), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1005), 1, + sym_select_having, + STATE(1067), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1437), 1, + sym__select_limit_offset, + [51134] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2275), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(2277), 1, + aux_sym_sequence_increment_token1, + ACTIONS(2279), 1, + aux_sym_sequence_min_token1, + ACTIONS(2281), 1, + aux_sym_sequence_max_token1, + ACTIONS(2283), 1, + aux_sym_sequence_start_token1, + ACTIONS(2285), 1, + aux_sym_sequence_cache_token1, + ACTIONS(2287), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(2289), 1, + aux_sym_sequence_owned_token1, + ACTIONS(2345), 1, + anon_sym_SEMI, + STATE(790), 9, + sym_sequence_increment, + sym_sequence_min, + sym_sequence_max, + sym_sequence_start, + sym_sequence_cache, + sym_sequence_cycle, + sym_sequence_owned, + sym_as, + aux_sym_create_sequence_statement_repeat1, + [51179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + aux_sym_join_item_token3, + ACTIONS(2172), 1, + aux_sym_join_type_token1, + ACTIONS(2347), 1, + aux_sym_join_item_token1, + ACTIONS(2350), 1, + aux_sym_join_item_token2, + STATE(1062), 1, + sym_join_type, + STATE(786), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2175), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 9, + anon_sym_COMMA, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [51218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(709), 16, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -74836,71 +64523,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [64596] = 18, + [51245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1015), 1, + STATE(867), 1, sym_select_where, - STATE(1059), 1, + STATE(909), 1, sym_select_group_by, - STATE(1128), 1, - sym_select_having, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1208), 1, + STATE(999), 1, + sym_select_having, + STATE(1055), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, + STATE(1156), 1, sym_into, - STATE(1544), 1, + STATE(1348), 1, sym__select_limit_offset, - ACTIONS(1833), 2, + ACTIONS(2205), 2, anon_sym_SEMI, anon_sym_RPAREN, - [64652] = 3, + [51301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 1, - anon_sym_COMMA, - ACTIONS(471), 17, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [64678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 18, + ACTIONS(2303), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_drop_type_statement_token3, @@ -74919,12 +64583,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [64702] = 3, + [51325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, + ACTIONS(707), 1, anon_sym_COMMA, - ACTIONS(445), 17, + ACTIONS(709), 17, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -74942,127 +64606,552 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [64728] = 18, + [51351] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(994), 1, + STATE(849), 1, sym_select_where, - STATE(1069), 1, + STATE(930), 1, sym_select_group_by, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1156), 1, + STATE(990), 1, sym_select_having, - STATE(1188), 1, + STATE(1043), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1368), 1, + STATE(1181), 1, sym_into, - STATE(1519), 1, + STATE(1382), 1, sym__select_limit_offset, - ACTIONS(1783), 2, + ACTIONS(2121), 2, anon_sym_SEMI, anon_sym_RPAREN, - [64784] = 18, + [51407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(792), 1, + ACTIONS(711), 1, + anon_sym_COMMA, + ACTIONS(713), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - STATE(1044), 1, - sym_select_where, - STATE(1101), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1174), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [64839] = 14, + sym__identifier, + [51433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(693), 1, + anon_sym_COMMA, + ACTIONS(695), 17, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, aux_sym_select_order_by_token1, - STATE(1005), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [51459] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(844), 1, + sym_select_where, + STATE(903), 1, sym_select_group_by, - STATE(1068), 1, + STATE(970), 1, + sym_where_filter, + STATE(972), 1, sym_select_having, - STATE(1143), 1, + STATE(1053), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, + STATE(1157), 1, sym_into, - ACTIONS(1833), 5, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, anon_sym_SEMI, anon_sym_RPAREN, + [51515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2228), 1, + anon_sym_COMMA, + STATE(757), 1, + sym_identifier, + ACTIONS(2230), 15, aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [51545] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(838), 1, + sym_select_where, + STATE(916), 1, + sym_select_group_by, + STATE(969), 1, + sym_select_having, + STATE(970), 1, + sym_where_filter, + STATE(1032), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1324), 1, + sym__select_limit_offset, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [51601] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(846), 1, + sym_select_where, + STATE(910), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [51657] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2244), 1, + aux_sym_insert_statement_token2, + STATE(870), 1, + sym_select_group_by, + STATE(925), 1, + sym_select_having, + STATE(1001), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1162), 1, + sym__select_limit_offset, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 4, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [64886] = 6, + [51706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2353), 1, + aux_sym_update_statement_token2, + ACTIONS(2355), 1, anon_sym_LPAREN, - ACTIONS(1976), 1, + STATE(754), 1, + sym_identifier, + ACTIONS(2132), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2138), 10, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [51739] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(871), 1, + sym_select_group_by, + STATE(905), 1, + sym_select_having, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_conflict_token1, - STATE(993), 1, + aux_sym_returning_token1, + [51788] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + STATE(890), 1, + sym_select_where, + STATE(931), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1005), 1, + sym_select_having, + STATE(1067), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1437), 1, + sym__select_limit_offset, + [51843] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + STATE(887), 1, + sym_select_where, + STATE(959), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1024), 1, + sym_select_having, + STATE(1086), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1432), 1, + sym__select_limit_offset, + [51898] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + STATE(888), 1, + sym_select_where, + STATE(951), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1011), 1, + sym_select_having, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1434), 1, + sym__select_limit_offset, + [51953] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2110), 1, + aux_sym_where_filter_token1, + ACTIONS(2242), 1, + aux_sym_for_statement_token2, + STATE(885), 1, + sym_select_where, + STATE(942), 1, + sym_select_group_by, + STATE(970), 1, + sym_where_filter, + STATE(1022), 1, + sym_select_having, + STATE(1061), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1426), 1, + sym__select_limit_offset, + [52008] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(855), 1, + sym_select_group_by, + STATE(904), 1, + sym_select_having, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [52057] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(869), 1, + sym_select_group_by, + STATE(902), 1, + sym_select_having, + STATE(967), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1228), 1, + sym__select_limit_offset, + ACTIONS(2205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [52106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(2359), 1, + aux_sym_insert_conflict_token1, + STATE(852), 1, sym__list_of_identifiers, - STATE(998), 2, + STATE(850), 2, sym_fk_action, aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1974), 12, + ACTIONS(2357), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -75075,517 +65164,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, sym__constraint, - [64917] = 14, + [52137] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - STATE(1000), 1, + STATE(860), 1, sym_select_group_by, - STATE(1065), 1, + STATE(915), 1, sym_select_having, - STATE(1148), 1, + STATE(996), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1307), 1, + STATE(1174), 1, sym__select_limit_offset, - STATE(1326), 1, + STATE(1214), 1, sym_into, - ACTIONS(1978), 5, + ACTIONS(1153), 4, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [64964] = 14, + [52186] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1008), 1, - sym_select_group_by, - STATE(1075), 1, - sym_select_having, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65011] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1799), 1, + ACTIONS(2110), 1, aux_sym_where_filter_token1, - STATE(1047), 1, - sym_select_where, - STATE(1096), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1179), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1604), 1, - sym__select_limit_offset, - [65066] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1833), 1, + ACTIONS(2205), 1, aux_sym_for_statement_token2, - STATE(1029), 1, + STATE(874), 1, sym_select_where, - STATE(1090), 1, + STATE(950), 1, sym_select_group_by, - STATE(1140), 1, + STATE(970), 1, sym_where_filter, - STATE(1176), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1262), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1583), 1, - sym__select_limit_offset, - [65121] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1052), 1, - sym_select_where, - STATE(1115), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1256), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [65176] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_where_filter_token1, - ACTIONS(1902), 1, - aux_sym_for_statement_token2, - STATE(1038), 1, - sym_select_where, - STATE(1111), 1, - sym_select_group_by, - STATE(1140), 1, - sym_where_filter, - STATE(1162), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1597), 1, - sym__select_limit_offset, - [65231] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1002), 1, - sym_select_group_by, - STATE(1061), 1, - sym_select_having, - STATE(1146), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65278] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, STATE(1009), 1, - sym_select_group_by, - STATE(1076), 1, sym_select_having, - STATE(1126), 1, + STATE(1065), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, + STATE(1156), 1, sym_into, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65325] = 7, + STATE(1427), 1, + sym__select_limit_offset, + [52241] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1980), 1, - aux_sym_update_statement_token2, - ACTIONS(1982), 1, - anon_sym_LPAREN, - STATE(904), 1, - sym_identifier, - ACTIONS(1807), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1813), 10, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65358] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - STATE(1017), 1, + ACTIONS(2363), 1, + aux_sym_insert_statement_token2, + STATE(848), 1, sym_select_group_by, - STATE(1072), 1, + STATE(928), 1, sym_select_having, - STATE(1127), 1, + STATE(992), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1352), 1, + STATE(1177), 1, sym__select_limit_offset, - STATE(1353), 1, + STATE(1196), 1, sym_into, - ACTIONS(792), 5, + ACTIONS(2361), 4, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [65405] = 4, + [52290] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, - anon_sym_LPAREN, - STATE(1032), 1, - sym_type_length, - ACTIONS(55), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [65431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(1823), 1, + ACTIONS(2366), 1, aux_sym_update_statement_token2, - STATE(880), 1, - sym_identifier, - ACTIONS(1821), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1825), 10, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65461] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1230), 1, - sym_join_type, - STATE(988), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1986), 1, + ACTIONS(2368), 1, anon_sym_LPAREN, - STATE(1032), 1, - sym_precision, - ACTIONS(55), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [65513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1988), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [65539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1992), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [65565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1992), 14, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [65591] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1994), 1, - aux_sym_update_statement_token2, - ACTIONS(1996), 1, - anon_sym_LPAREN, - STATE(904), 1, + STATE(754), 1, sym_identifier, - ACTIONS(1807), 3, + ACTIONS(2132), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1813), 9, + ACTIONS(2138), 9, aux_sym_returning_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -75595,14 +65294,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [65623] = 4, + [52322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 1, + ACTIONS(2372), 1, anon_sym_COMMA, - STATE(984), 1, + STATE(788), 1, aux_sym_drop_type_statement_repeat1, - ACTIONS(1998), 14, + ACTIONS(2370), 14, anon_sym_SEMI, aux_sym_update_statement_token4, anon_sym_RPAREN, @@ -75617,83 +65316,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [65649] = 9, + [52348] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(2199), 1, aux_sym_join_item_token3, - ACTIONS(1841), 1, + ACTIONS(2201), 1, aux_sym_join_type_token1, - ACTIONS(2000), 1, + ACTIONS(2374), 1, aux_sym_join_item_token1, - ACTIONS(2002), 1, + ACTIONS(2376), 1, aux_sym_join_item_token2, - STATE(1230), 1, + STATE(1077), 1, sym_join_type, - STATE(989), 2, + STATE(827), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1843), 3, + ACTIONS(2203), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1845), 6, + ACTIONS(2161), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [65685] = 4, + [52384] = 9, ACTIONS(3), 1, sym_comment, - STATE(1230), 1, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + ACTIONS(2378), 1, + aux_sym_join_item_token1, + ACTIONS(2381), 1, + aux_sym_join_item_token2, + STATE(1077), 1, sym_join_type, - STATE(991), 2, + STATE(827), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1831), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, + ACTIONS(2192), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65711] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(2000), 1, - aux_sym_join_item_token1, - ACTIONS(2002), 1, - aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(991), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 6, + ACTIONS(2178), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [65747] = 3, + [52420] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2374), 1, + aux_sym_join_item_token1, + ACTIONS(2376), 1, + aux_sym_join_item_token2, + STATE(1077), 1, + sym_join_type, + STATE(826), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [52456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + STATE(825), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2384), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [52482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2384), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_index_using_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [52508] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -75714,546 +65462,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [65771] = 9, + [52532] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2169), 1, aux_sym_join_item_token3, - ACTIONS(1858), 1, + ACTIONS(2172), 1, aux_sym_join_type_token1, - ACTIONS(2004), 1, + ACTIONS(2386), 1, aux_sym_join_item_token1, - ACTIONS(2007), 1, + ACTIONS(2389), 1, aux_sym_join_item_token2, - STATE(1230), 1, - sym_join_type, - STATE(991), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1847), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(1034), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2012), 10, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [65834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - aux_sym_insert_conflict_token1, - STATE(1003), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(2014), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [65859] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, STATE(1077), 1, - sym_select_group_by, - STATE(1122), 1, - sym_select_having, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [65906] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1219), 1, sym_join_type, - STATE(997), 2, + STATE(827), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1831), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, + ACTIONS(2175), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65931] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(2016), 1, - aux_sym_join_item_token1, - ACTIONS(2018), 1, - aux_sym_join_item_token2, - STATE(1219), 1, - sym_join_type, - STATE(997), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 5, + ACTIONS(2161), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [65966] = 9, + [52568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(2020), 1, - aux_sym_join_item_token1, - ACTIONS(2023), 1, - aux_sym_join_item_token2, - STATE(1219), 1, - sym_join_type, - STATE(997), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1847), 5, - anon_sym_SEMI, + ACTIONS(2372), 1, anon_sym_COMMA, + STATE(830), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2392), 14, + anon_sym_SEMI, + aux_sym_update_statement_token4, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [66001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - STATE(1004), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(2014), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [66026] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, + aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1069), 1, - sym_select_group_by, - STATE(1156), 1, - sym_select_having, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66073] = 12, + aux_sym_where_filter_token1, + [52594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1074), 1, - sym_select_having, - STATE(1151), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1318), 1, - sym_into, - ACTIONS(2026), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66114] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2030), 1, - aux_sym_insert_items_token1, - ACTIONS(2034), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2036), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2038), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2040), 1, - aux_sym_constraint_foreign_key_token1, - ACTIONS(2042), 1, - sym__constraint, - STATE(1078), 1, - sym_column_constraint_ty, - STATE(1089), 1, - sym_constraint_foreign_key, - ACTIONS(2032), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(1018), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2028), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66155] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1065), 1, - sym_select_having, - STATE(1148), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1326), 1, - sym_into, - ACTIONS(1978), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - aux_sym_insert_conflict_token1, - STATE(1004), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(2044), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [66221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 1, - aux_sym_insert_conflict_token1, - STATE(1004), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(2046), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [66246] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1061), 1, - sym_select_having, - STATE(1146), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66287] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(1823), 1, + ACTIONS(2212), 1, aux_sym_update_statement_token2, - STATE(880), 1, + STATE(726), 1, sym_identifier, - ACTIONS(1821), 3, + ACTIONS(2210), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1825), 9, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [66316] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1080), 1, - sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1190), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66363] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1068), 1, - sym_select_having, - STATE(1143), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66404] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1075), 1, - sym_select_having, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66445] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1059), 1, - sym_select_group_by, - STATE(1128), 1, - sym_select_having, - STATE(1208), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(455), 12, - aux_sym_update_statement_token2, + ACTIONS(2214), 10, aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_join_item_token1, @@ -76264,111 +65535,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym__identifier, - [66515] = 5, + [52624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(913), 1, - sym_identifier, - ACTIONS(1874), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1880), 10, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [66542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2051), 15, - anon_sym_SEMI, - aux_sym_update_statement_token2, + ACTIONS(2394), 1, anon_sym_LPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_start_token2, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - aux_sym_select_statement_token1, - [66563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, + STATE(875), 1, + sym_precision, + ACTIONS(41), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(445), 12, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [66586] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1056), 1, - sym_select_group_by, - STATE(1125), 1, - sym_select_having, - STATE(1202), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66633] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, anon_sym_LBRACK, - STATE(1062), 1, - aux_sym__type_repeat1, - ACTIONS(2055), 2, aux_sym__type_token1, aux_sym__type_token2, - ACTIONS(125), 11, + sym__constraint, + [52650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2396), 1, + anon_sym_LPAREN, + STATE(875), 1, + sym_type_length, + ACTIONS(41), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -76379,128 +65575,194 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, sym__constraint, - [66660] = 12, + [52676] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1076), 1, - sym_select_having, - STATE(1126), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66701] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2030), 1, - aux_sym_insert_items_token1, - ACTIONS(2034), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2036), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2038), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2040), 1, - aux_sym_constraint_foreign_key_token1, - ACTIONS(2042), 1, - sym__constraint, - STATE(1078), 1, - sym_column_constraint_ty, - STATE(1089), 1, - sym_constraint_foreign_key, - ACTIONS(2032), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(1026), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2057), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66742] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1072), 1, - sym_select_having, - STATE(1127), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66783] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, + ACTIONS(2148), 1, aux_sym_join_item_token3, - ACTIONS(1841), 1, + ACTIONS(2151), 1, aux_sym_join_type_token1, - ACTIONS(2016), 1, + ACTIONS(2398), 1, aux_sym_join_item_token1, - ACTIONS(2018), 1, + ACTIONS(2401), 1, aux_sym_join_item_token2, - STATE(1219), 1, + STATE(1077), 1, sym_join_type, - STATE(996), 2, + STATE(832), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(1843), 3, + ACTIONS(2154), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(1845), 5, + ACTIONS(2140), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_returning_token1, aux_sym_where_filter_token1, - [66818] = 3, + [52712] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 3, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(914), 1, + sym_select_group_by, + STATE(965), 1, + sym_select_having, + STATE(1036), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1304), 1, + sym__select_limit_offset, + ACTIONS(2361), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [52759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(757), 1, + sym_identifier, + ACTIONS(2228), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(471), 12, + ACTIONS(2230), 10, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [52786] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(910), 1, + sym_select_group_by, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [52833] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2406), 1, + aux_sym_drop_function_statement_token1, + ACTIONS(2408), 1, + aux_sym_create_table_statement_token1, + ACTIONS(2410), 1, + aux_sym_create_schema_statement_token1, + ACTIONS(2412), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2414), 1, + aux_sym_create_index_statement_token2, + ACTIONS(2416), 1, + aux_sym_grant_targets_token5, + ACTIONS(2418), 1, + aux_sym_create_trigger_statement_token1, + ACTIONS(2420), 1, + aux_sym_trigger_event_token2, + ACTIONS(2422), 1, + aux_sym_temporary_token1, + ACTIONS(2424), 1, + aux_sym_temporary_token2, + ACTIONS(2426), 1, + sym_unlogged, + ACTIONS(2428), 1, + sym__constraint, + STATE(1454), 1, + sym_temporary, + STATE(2176), 1, + sym_or_replace, + [52882] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + STATE(915), 1, + sym_select_having, + STATE(996), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [52925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(709), 12, aux_sym_update_statement_token2, aux_sym_insert_statement_token2, aux_sym_returning_token1, @@ -76513,61 +65775,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [66841] = 4, + [52948] = 15, ACTIONS(3), 1, sym_comment, - STATE(1219), 1, - sym_join_type, - STATE(995), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 12, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(930), 1, + sym_select_group_by, + STATE(990), 1, + sym_select_having, + STATE(1043), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1382), 1, + sym__select_limit_offset, + ACTIONS(2121), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [52995] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2432), 1, + aux_sym_insert_items_token1, + ACTIONS(2436), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2438), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2440), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2442), 1, + aux_sym_constraint_foreign_key_token1, + ACTIONS(2444), 1, + sym__constraint, + STATE(929), 1, + sym_column_constraint_ty, + STATE(946), 1, + sym_constraint_foreign_key, + ACTIONS(2434), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(854), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2430), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [66866] = 16, + [53036] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2061), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2063), 1, - aux_sym_create_table_statement_token1, - ACTIONS(2065), 1, - aux_sym_create_schema_statement_token1, - ACTIONS(2067), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2069), 1, - aux_sym_create_index_statement_token2, - ACTIONS(2071), 1, - aux_sym_grant_targets_token5, - ACTIONS(2073), 1, - aux_sym_create_trigger_statement_token1, - ACTIONS(2075), 1, - aux_sym_trigger_event_token2, - ACTIONS(2077), 1, - aux_sym_temporary_token1, - ACTIONS(2079), 1, - aux_sym_temporary_token2, - ACTIONS(2081), 1, - sym_unlogged, - ACTIONS(2083), 1, - sym__constraint, - STATE(1594), 1, - sym_temporary, - STATE(2320), 1, - sym_or_replace, - [66915] = 3, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(903), 1, + sym_select_group_by, + STATE(972), 1, + sym_select_having, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [53083] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 4, @@ -76587,390 +65888,724 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token5, aux_sym_where_filter_token1, sym__identifier, - [66938] = 15, + [53106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1896), 1, + ACTIONS(2448), 1, aux_sym_insert_statement_token2, - STATE(1060), 1, - sym_select_group_by, - STATE(1118), 1, + STATE(926), 1, sym_select_having, - STATE(1192), 1, + STATE(989), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1326), 1, + STATE(1179), 1, sym_into, - STATE(1572), 1, + STATE(1184), 1, sym__select_limit_offset, - ACTIONS(1978), 2, + ACTIONS(2446), 4, anon_sym_SEMI, anon_sym_RPAREN, - [66985] = 12, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [53149] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2087), 1, - aux_sym_insert_items_token1, - ACTIONS(2093), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2096), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2099), 1, - aux_sym_table_constraint_ty_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(909), 1, + sym_select_group_by, + STATE(999), 1, + sym_select_having, + STATE(1055), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1348), 1, + sym__select_limit_offset, + ACTIONS(2205), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [53196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_insert_conflict_token1, + STATE(859), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2451), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, - ACTIONS(2105), 1, sym__constraint, - STATE(1078), 1, + [53221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2212), 1, + aux_sym_update_statement_token2, + STATE(726), 1, + sym_identifier, + ACTIONS(2210), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2214), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [53250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_insert_conflict_token1, + STATE(866), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2451), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [53275] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2432), 1, + aux_sym_insert_items_token1, + ACTIONS(2436), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2438), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2440), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2442), 1, + aux_sym_constraint_foreign_key_token1, + ACTIONS(2444), 1, + sym__constraint, + STATE(929), 1, sym_column_constraint_ty, - STATE(1089), 1, + STATE(946), 1, sym_constraint_foreign_key, - ACTIONS(2090), 2, + ACTIONS(2434), 2, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, - STATE(1026), 2, + STATE(845), 2, sym_column_constraint, aux_sym_table_column_item_repeat1, - ACTIONS(2085), 3, + ACTIONS(2453), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [67026] = 2, + [53316] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2010), 14, + ACTIONS(2457), 1, + aux_sym_insert_items_token1, + ACTIONS(2463), 1, + aux_sym_alter_column_action_token1, + ACTIONS(2466), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2469), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2472), 1, + aux_sym_constraint_foreign_key_token1, + ACTIONS(2475), 1, + sym__constraint, + STATE(929), 1, + sym_column_constraint_ty, + STATE(946), 1, + sym_constraint_foreign_key, + ACTIONS(2460), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(854), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(2455), 3, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_update_statement_token4, anon_sym_RPAREN, + [53357] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(902), 1, + sym_select_having, + STATE(967), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1228), 1, + sym__select_limit_offset, + ACTIONS(2205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [53400] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2478), 1, + aux_sym_join_item_token1, + ACTIONS(2480), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + STATE(872), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [53435] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + aux_sym_join_item_token3, + ACTIONS(2172), 1, + aux_sym_join_type_token1, + ACTIONS(2482), 1, + aux_sym_join_item_token1, + ACTIONS(2485), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + STATE(868), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2175), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2161), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [53470] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 1, + aux_sym_join_item_token3, + ACTIONS(2151), 1, + aux_sym_join_type_token1, + ACTIONS(2488), 1, + aux_sym_join_item_token1, + ACTIONS(2491), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + STATE(857), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2154), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2140), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [53505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 1, + aux_sym_insert_conflict_token1, + STATE(859), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2494), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [53530] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(905), 1, + sym_select_having, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [53573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + anon_sym_LBRACK, + STATE(900), 1, + aux_sym__type_repeat1, + ACTIONS(2501), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(247), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [53600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(693), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(695), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [53623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(711), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(713), 12, + aux_sym_update_statement_token2, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [53646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(889), 1, + sym_identifier, + ACTIONS(2503), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2505), 10, + aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [67046] = 3, + [53673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 5, + ACTIONS(2507), 15, + anon_sym_SEMI, + aux_sym_update_statement_token2, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2110), 9, + aux_sym_insert_items_token1, + aux_sym_insert_items_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_start_token2, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + aux_sym_select_statement_token1, + [53694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + aux_sym_insert_conflict_token1, + STATE(859), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(2509), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67068] = 15, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [53719] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1902), 1, - aux_sym_for_statement_token2, - STATE(1111), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(916), 1, sym_select_group_by, + STATE(969), 1, + sym_select_having, + STATE(1032), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1324), 1, + sym__select_limit_offset, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [53766] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + ACTIONS(2511), 1, + aux_sym_join_item_token1, + ACTIONS(2514), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + STATE(868), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2192), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(2178), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [53801] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2244), 1, + aux_sym_insert_statement_token2, + STATE(925), 1, + sym_select_having, + STATE(1001), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, STATE(1162), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1597), 1, sym__select_limit_offset, - [67114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 3, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 4, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(455), 11, - aux_sym_update_statement_token2, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [67136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2112), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2114), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [67178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2116), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2118), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, + [53844] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, aux_sym_select_having_token1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [67220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(153), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [67240] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, + ACTIONS(2363), 1, aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1101), 1, - sym_select_group_by, - STATE(1174), 1, + STATE(928), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, + STATE(992), 1, sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [67286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [67306] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1088), 1, - sym_select_group_by, - STATE(1169), 1, - sym_select_having, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1229), 1, - sym_select_order_by, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1326), 1, - sym_into, - STATE(1592), 1, + STATE(1177), 1, sym__select_limit_offset, - [67352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 14, + STATE(1196), 1, + sym_into, + ACTIONS(2361), 4, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - sym__constraint, - [67372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(445), 11, - aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, + [53887] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(904), 1, + sym_select_having, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [53930] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, aux_sym_join_item_token3, + ACTIONS(2201), 1, aux_sym_join_type_token1, + ACTIONS(2478), 1, + aux_sym_join_item_token1, + ACTIONS(2480), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + STATE(868), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - aux_sym_where_filter_token1, - sym__identifier, - [67394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 3, + ACTIONS(2161), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(471), 11, - aux_sym_update_statement_token2, aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, aux_sym_where_filter_token1, - sym__identifier, - [67416] = 4, + [53965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(2517), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2519), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [53987] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2242), 1, + aux_sym_for_statement_token2, + STATE(942), 1, + sym_select_group_by, + STATE(1022), 1, + sym_select_having, + STATE(1061), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1426), 1, + sym__select_limit_offset, + [54033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 14, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1042), 1, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + sym__constraint, + [54053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2523), 1, + anon_sym_COMMA, + STATE(876), 1, aux_sym_returning_repeat1, - ACTIONS(2122), 12, + ACTIONS(2521), 12, anon_sym_SEMI, aux_sym_update_statement_token4, anon_sym_RPAREN, @@ -76983,163 +66618,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [67440] = 3, + [54077] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2129), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67462] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, + ACTIONS(1153), 1, aux_sym_for_statement_token2, - ACTIONS(1789), 1, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - STATE(1096), 1, + STATE(931), 1, sym_select_group_by, - STATE(1179), 1, + STATE(1005), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, + STATE(1067), 1, sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1604), 1, - sym__select_limit_offset, - [67508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2122), 14, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [67528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2133), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67550] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1115), 1, - sym_select_group_by, - STATE(1167), 1, - sym_select_having, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1256), 1, - sym_select_order_by, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1340), 1, + STATE(1214), 1, sym_into, - STATE(1590), 1, + STATE(1437), 1, sym__select_limit_offset, - [67596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2135), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2137), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2139), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2141), 9, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_array_constructor_token1, - aux_sym_time_expression_token4, - anon_sym_DASH, - sym_true, - sym_false, - sym_number, - sym__identifier, - [67640] = 3, + [54123] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 3, @@ -77158,16 +66668,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__type_token1, aux_sym__type_token2, anon_sym_SQUOTE, - [67662] = 3, + [54145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2143), 5, + ACTIONS(693), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(695), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [54167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 5, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_SQUOTE, anon_sym_STAR, anon_sym_PLUS, - ACTIONS(2145), 9, + ACTIONS(2528), 9, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, aux_sym_array_constructor_token1, @@ -77177,469 +66706,53 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_number, sym__identifier, - [67684] = 15, + [54189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_grant_roles_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1090), 1, - sym_select_group_by, - STATE(1176), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1262), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1583), 1, - sym__select_limit_offset, - [67730] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(913), 1, - sym_identifier, - ACTIONS(1874), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1880), 9, - aux_sym_returning_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [67756] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1139), 1, - sym_select_having, - STATE(1190), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67797] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2149), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2151), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2161), 1, - sym__constraint, - STATE(1316), 1, - sym_identifier, - STATE(1447), 1, - sym_table_constraint_ty, - STATE(1732), 1, - sym_if_not_exists, - STATE(1871), 2, - sym_table_constraint, - sym_table_column_item, - [67838] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1118), 1, - sym_select_having, - STATE(1192), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1326), 1, - sym_into, - STATE(1572), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [67898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2167), 1, - anon_sym_SEMI, - ACTIONS(2165), 12, - ts_builtin_sym_end, - aux_sym_drop_type_statement_token1, - aux_sym_update_statement_token1, - aux_sym_create_type_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_delete_statement_token1, - aux_sym_alter_table_statement_token1, - aux_sym_grant_statement_token1, - anon_sym_BSLASH, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - [67919] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1125), 1, - sym_select_having, - STATE(1202), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67960] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1153), 1, - sym_select_having, - STATE(1204), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1318), 1, - sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2026), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68001] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1148), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1326), 1, - sym_into, - ACTIONS(1978), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - anon_sym_LBRACK, - STATE(1064), 1, - aux_sym__type_repeat1, - ACTIONS(172), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 13, - ts_builtin_sym_end, - anon_sym_SEMI, - aux_sym_drop_type_statement_token1, - aux_sym_update_statement_token1, - aux_sym_create_type_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_delete_statement_token1, - aux_sym_alter_table_statement_token1, - aux_sym_grant_statement_token1, - anon_sym_BSLASH, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - [68078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 1, - anon_sym_LBRACK, - STATE(1064), 1, - aux_sym__type_repeat1, - ACTIONS(161), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68101] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1151), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1318), 1, - sym_into, - ACTIONS(2026), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(1034), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2012), 8, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [68161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_COMMA, - STATE(1073), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2174), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [68184] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1146), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68219] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1122), 1, - sym_select_having, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68260] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1127), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68295] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2178), 1, - aux_sym_update_statement_token2, - ACTIONS(2180), 1, + ACTIONS(2530), 5, anon_sym_LPAREN, - STATE(904), 1, - sym_identifier, - ACTIONS(1813), 9, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2532), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 14, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [54231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(707), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(709), 11, + aux_sym_update_statement_token2, + aux_sym_returning_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -77647,388 +66760,211 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [68322] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1126), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68357] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - anon_sym_COMMA, - STATE(1073), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2182), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [68380] = 10, + sym__identifier, + [54253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1154), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1349), 1, - sym_into, - STATE(1377), 1, - sym__select_limit_offset, - ACTIONS(2187), 5, + ACTIONS(711), 3, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(713), 11, + aux_sym_update_statement_token2, aux_sym_returning_token1, - [68415] = 10, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + sym__identifier, + [54275] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1143), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68450] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1141), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68485] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1128), 1, + ACTIONS(2361), 1, + aux_sym_for_statement_token2, + STATE(939), 1, + sym_select_group_by, + STATE(1029), 1, sym_select_having, - STATE(1208), 1, - sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1100), 1, + sym_select_order_by, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, + STATE(1196), 1, sym_into, - STATE(1544), 1, + STATE(1428), 1, sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68526] = 4, + [54321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, - aux_sym_constraint_when_token1, - STATE(1133), 1, - sym_constraint_when, - ACTIONS(2189), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, + ACTIONS(2534), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2536), 9, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68549] = 2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54343] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68568] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2205), 1, + aux_sym_for_statement_token2, + STATE(950), 1, + sym_select_group_by, + STATE(1009), 1, + sym_select_having, + STATE(1065), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, STATE(1156), 1, - sym_select_having, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, sym_into, - STATE(1519), 1, + STATE(1427), 1, sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68609] = 2, + [54389] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - aux_sym_constraint_when_token1, - STATE(1147), 1, - sym_constraint_when, - ACTIONS(2197), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2182), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, + ACTIONS(2100), 1, aux_sym_grant_roles_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2121), 1, aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [68670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_COMMA, - STATE(1067), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2199), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [68693] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1174), 1, + STATE(959), 1, + sym_select_group_by, + STATE(1024), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [68733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_COMMA, STATE(1086), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(662), 10, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1432), 1, + sym__select_limit_offset, + [54435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 14, anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [68755] = 9, + aux_sym_where_filter_token1, + [54455] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(2204), 1, - aux_sym_join_item_token1, - ACTIONS(2206), 1, - aux_sym_join_item_token2, - STATE(1219), 1, - sym_join_type, - ACTIONS(1831), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1107), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [68787] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(1791), 1, + ACTIONS(2100), 1, + aux_sym_grant_roles_token2, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(2026), 1, + ACTIONS(2112), 1, aux_sym_for_statement_token2, - STATE(1172), 1, + STATE(951), 1, + sym_select_group_by, + STATE(1011), 1, sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1240), 1, + STATE(1073), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1318), 1, + STATE(1157), 1, sym_into, - STATE(1587), 1, + STATE(1434), 1, sym__select_limit_offset, - [68827] = 2, + [54501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 12, + ACTIONS(2540), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2542), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(282), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -78036,92 +66972,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, - aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, - sym__constraint, - [68845] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1902), 1, - aux_sym_for_statement_token2, - STATE(1162), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1217), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1597), 1, - sym__select_limit_offset, - [68885] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2151), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2161), 1, - sym__constraint, - ACTIONS(2210), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1447), 1, - sym_table_constraint_ty, - STATE(1625), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [68923] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, anon_sym_LBRACK, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(298), 1, - aux_sym__type_repeat1, - STATE(1615), 1, - sym__type, - ACTIONS(125), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(623), 2, aux_sym__type_token1, aux_sym__type_token2, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [68957] = 2, + sym__constraint, + [54543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(593), 12, + ACTIONS(2544), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2546), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2548), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2550), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 14, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [54607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2552), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(2554), 9, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_array_constructor_token1, + aux_sym_time_expression_token4, + anon_sym_DASH, + sym_true, + sym_false, + sym_number, + sym__identifier, + [54629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -78129,15 +67065,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + sym__constraint, + [54649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(286), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + sym__constraint, + [54669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(757), 1, + sym_identifier, + ACTIONS(2228), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2230), 9, + aux_sym_returning_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + [54695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + anon_sym_LBRACK, + STATE(911), 1, + aux_sym__type_repeat1, + ACTIONS(292), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [54718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2556), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, aux_sym_constraint_when_token1, aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, sym__constraint, - [68975] = 2, + [54737] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 12, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2244), 1, + aux_sym_insert_statement_token2, + STATE(1001), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1162), 1, + sym__select_limit_offset, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [54774] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(990), 1, + sym_select_having, + STATE(1043), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1382), 1, + sym__select_limit_offset, + ACTIONS(2121), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [54815] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(967), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1228), 1, + sym__select_limit_offset, + ACTIONS(2205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [54852] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(977), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [54889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_SEMI, + ACTIONS(2558), 12, ts_builtin_sym_end, aux_sym_drop_type_statement_token1, aux_sym_update_statement_token1, @@ -78150,68 +67271,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, aux_sym_sequence_start_token2, aux_sym_select_statement_token1, - [68993] = 12, + [54910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2218), 1, - aux_sym_update_statement_token2, - ACTIONS(2220), 1, - aux_sym_insert_statement_token2, - ACTIONS(2222), 1, - aux_sym_returning_token1, - ACTIONS(2224), 1, - aux_sym_index_using_token1, - ACTIONS(2226), 1, - aux_sym_where_filter_token1, - STATE(1185), 1, - sym_identifier, - STATE(1277), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2216), 2, + ACTIONS(2564), 1, + anon_sym_COMMA, + STATE(908), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2562), 11, anon_sym_SEMI, anon_sym_RPAREN, - [69031] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, aux_sym_insert_statement_token2, - ACTIONS(1791), 1, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, aux_sym_select_having_token1, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1167), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1256), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [69071] = 4, + aux_sym_where_filter_token1, + [54933] = 4, ACTIONS(3), 1, sym_comment, - STATE(1219), 1, - sym_join_type, - STATE(1107), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1831), 9, + ACTIONS(2564), 1, + anon_sym_COMMA, + STATE(920), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2566), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [54956] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(969), 1, + sym_select_having, + STATE(1032), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1324), 1, + sym__select_limit_offset, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [54997] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(972), 1, + sym_select_having, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [55038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2568), 1, + anon_sym_LBRACK, + STATE(911), 1, + aux_sym__type_repeat1, + ACTIONS(296), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [55061] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2571), 1, + aux_sym_update_statement_token2, + ACTIONS(2573), 1, + anon_sym_LPAREN, + STATE(754), 1, + sym_identifier, + ACTIONS(2138), 9, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, aux_sym_join_item_token1, @@ -78221,350 +67405,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [69093] = 12, + [55088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2151), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2161), 1, - sym__constraint, - ACTIONS(2228), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1447), 1, - sym_table_constraint_ty, - STATE(1710), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [69131] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, - anon_sym_LBRACK, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(298), 1, - aux_sym__type_repeat1, - STATE(1394), 1, - sym__type, - ACTIONS(125), 2, + ACTIONS(2577), 1, + aux_sym_constraint_when_token1, + STATE(981), 1, + sym_constraint_when, + ACTIONS(2575), 11, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(623), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [69165] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, + aux_sym_insert_items_token1, aux_sym_create_index_statement_token1, - ACTIONS(2151), 1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2161), 1, + aux_sym_constraint_foreign_key_token1, sym__constraint, - ACTIONS(2230), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1447), 1, - sym_table_constraint_ty, - STATE(1719), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [69203] = 13, + [55111] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1791), 1, + ACTIONS(2102), 1, aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(987), 1, + sym_select_having, + STATE(1045), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, STATE(1179), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, sym_into, - STATE(1604), 1, + STATE(1299), 1, sym__select_limit_offset, - [69243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2010), 1, - anon_sym_COMMA, - STATE(1034), 1, - sym_identifier, - ACTIONS(2012), 9, - aux_sym_update_statement_token4, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [69267] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1219), 1, - sym_join_type, - STATE(1097), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 9, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [69289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(880), 1, - sym_identifier, - ACTIONS(1825), 9, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [69313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(161), 12, + ACTIONS(2446), 2, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_LBRACK, - sym__constraint, - [69331] = 12, + [55152] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2147), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2151), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2161), 1, - sym__constraint, - ACTIONS(2232), 1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(983), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1316), 1, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [55189] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(965), 1, + sym_select_having, + STATE(1036), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1304), 1, + sym__select_limit_offset, + ACTIONS(2361), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [55230] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2581), 1, + aux_sym_alter_table_action_token2, + ACTIONS(2583), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2585), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2587), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2593), 1, + sym__constraint, + STATE(1190), 1, sym_identifier, - STATE(1447), 1, + STATE(1246), 1, sym_table_constraint_ty, - STATE(1753), 1, - sym_create_table_item, - STATE(1910), 2, + STATE(1478), 1, + sym_if_not_exists, + STATE(1785), 2, sym_table_constraint, sym_table_column_item, - [69369] = 9, + [55271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(2234), 1, - aux_sym_join_item_token1, - ACTIONS(2237), 1, - aux_sym_join_item_token2, - STATE(1219), 1, - sym_join_type, - ACTIONS(1847), 2, + ACTIONS(2595), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1107), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1861), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [69401] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2220), 1, - aux_sym_insert_statement_token2, - ACTIONS(2224), 1, - aux_sym_index_using_token1, - ACTIONS(2226), 1, - aux_sym_where_filter_token1, - ACTIONS(2242), 1, - aux_sym_update_statement_token2, - ACTIONS(2244), 1, - aux_sym_returning_token1, - STATE(1191), 1, - sym_identifier, - STATE(1273), 1, - sym_delete_using, - STATE(1442), 1, - sym_where_filter, - STATE(1967), 1, - sym_into, - ACTIONS(2240), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69439] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, - anon_sym_LBRACK, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(298), 1, - aux_sym__type_repeat1, - STATE(1919), 1, - sym__type, - ACTIONS(125), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(623), 2, - aux_sym__type_token1, - aux_sym__type_token2, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [69473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2246), 1, - anon_sym_COMMA, - STATE(1110), 1, - aux_sym_returning_repeat1, - ACTIONS(2122), 10, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [69495] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1169), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1229), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1326), 1, - sym_into, - STATE(1592), 1, - sym__select_limit_offset, - [69535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 1, - aux_sym_constraint_when_token2, - ACTIONS(2249), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [69555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2253), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, aux_sym_alter_column_action_token2, @@ -78573,64 +67551,310 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, sym__constraint, - [69573] = 9, + [55290] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - ACTIONS(2204), 1, - aux_sym_join_item_token1, - ACTIONS(2206), 1, - aux_sym_join_item_token2, - STATE(1219), 1, - sym_join_type, - ACTIONS(1845), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1087), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [69605] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, + ACTIONS(2097), 1, aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_having_token1, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1176), 1, - sym_select_having, - STATE(1211), 1, - sym_select_offset, - STATE(1262), 1, + STATE(996), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1583), 1, + STATE(1174), 1, sym__select_limit_offset, - [69645] = 4, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [55327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(591), 1, + ACTIONS(2599), 1, anon_sym_COMMA, - STATE(1086), 1, + STATE(920), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2597), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [55350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(889), 1, + sym_identifier, + ACTIONS(2503), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2505), 8, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [55375] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(975), 1, + sym_select_having, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [55416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [55435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [55454] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2363), 1, + aux_sym_insert_statement_token2, + STATE(992), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1177), 1, + sym__select_limit_offset, + STATE(1196), 1, + sym_into, + ACTIONS(2361), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [55491] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2606), 1, + aux_sym_insert_statement_token2, + STATE(968), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1200), 1, + sym__select_limit_offset, + STATE(1210), 1, + sym_into, + ACTIONS(2604), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [55528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 13, + ts_builtin_sym_end, + anon_sym_SEMI, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [55547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2448), 1, + aux_sym_insert_statement_token2, + STATE(989), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, + sym_into, + STATE(1184), 1, + sym__select_limit_offset, + ACTIONS(2446), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [55584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + aux_sym_constraint_when_token1, + STATE(966), 1, + sym_constraint_when, + ACTIONS(2611), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [55607] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(999), 1, + sym_select_having, + STATE(1055), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1348), 1, + sym__select_limit_offset, + ACTIONS(2205), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [55648] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + STATE(1011), 1, + sym_select_having, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1434), 1, + sym__select_limit_offset, + [55688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 1, + anon_sym_COMMA, + STATE(937), 1, aux_sym_conflict_target_repeat1, - ACTIONS(2255), 10, + ACTIONS(2613), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -78641,7 +67865,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [69667] = 3, + [55710] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2615), 1, + aux_sym_join_item_token1, + ACTIONS(2617), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + ACTIONS(2161), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [55742] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -78658,51 +67905,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, sym__identifier, - [69687] = 11, + [55762] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2621), 1, + aux_sym_update_statement_token2, + ACTIONS(2623), 1, aux_sym_insert_statement_token2, - STATE(1204), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1318), 1, + ACTIONS(2625), 1, + aux_sym_returning_token1, + ACTIONS(2627), 1, + aux_sym_index_using_token1, + ACTIONS(2629), 1, + aux_sym_where_filter_token1, + STATE(1039), 1, + sym_identifier, + STATE(1138), 1, + sym_delete_using, + STATE(1272), 1, + sym_where_filter, + STATE(1750), 1, sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2026), 2, + ACTIONS(2619), 2, anon_sym_SEMI, anon_sym_RPAREN, - [69722] = 4, + [55800] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 1, + ACTIONS(2186), 1, + aux_sym_join_item_token3, + ACTIONS(2189), 1, + aux_sym_join_type_token1, + ACTIONS(2631), 1, + aux_sym_join_item_token1, + ACTIONS(2634), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + ACTIONS(2178), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2192), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [55832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, anon_sym_COMMA, - STATE(1134), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2199), 9, + STATE(937), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(1044), 10, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [69743] = 2, + [55854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(172), 11, + ACTIONS(2642), 1, + aux_sym_constraint_when_token2, + ACTIONS(2640), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -78714,53 +67989,313 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, sym__constraint, - [69760] = 2, + [55874] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [69777] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - STATE(1208), 1, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2446), 1, + aux_sym_for_statement_token2, + STATE(1013), 1, + sym_select_having, + STATE(1074), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1346), 1, + STATE(1179), 1, sym_into, - STATE(1544), 1, + STATE(1431), 1, sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69812] = 4, + [55914] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(2579), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2583), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2585), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2587), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2591), 1, sym__identifier, - STATE(913), 1, + ACTIONS(2593), 1, + sym__constraint, + ACTIONS(2644), 1, + anon_sym_RPAREN, + STATE(1190), 1, sym_identifier, - ACTIONS(1880), 9, + STATE(1246), 1, + sym_table_constraint_ty, + STATE(1599), 1, + sym_create_table_item, + STATE(1841), 2, + sym_table_constraint, + sym_table_column_item, + [55952] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2583), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2585), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2587), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2593), 1, + sym__constraint, + ACTIONS(2646), 1, + anon_sym_RPAREN, + STATE(1190), 1, + sym_identifier, + STATE(1246), 1, + sym_table_constraint_ty, + STATE(1423), 1, + sym_create_table_item, + STATE(1841), 2, + sym_table_constraint, + sym_table_column_item, + [55990] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2361), 1, + aux_sym_for_statement_token2, + STATE(1029), 1, + sym_select_having, + STATE(1098), 1, + sym_select_offset, + STATE(1100), 1, + sym_select_order_by, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1428), 1, + sym__select_limit_offset, + [56030] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(862), 1, + anon_sym_LBRACK, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(213), 1, + aux_sym__type_repeat1, + STATE(1250), 1, + sym__type, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(864), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(136), 2, + sym_predefined_type, + sym_identifier, + [56064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2652), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [56082] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + ACTIONS(2615), 1, + aux_sym_join_item_token1, + ACTIONS(2617), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + ACTIONS(2140), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(933), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [56114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2654), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [56132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_LBRACK, + sym__constraint, + [56150] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2623), 1, + aux_sym_insert_statement_token2, + ACTIONS(2627), 1, + aux_sym_index_using_token1, + ACTIONS(2629), 1, + aux_sym_where_filter_token1, + ACTIONS(2658), 1, + aux_sym_update_statement_token2, + ACTIONS(2660), 1, + aux_sym_returning_token1, + STATE(1056), 1, + sym_identifier, + STATE(1126), 1, + sym_delete_using, + STATE(1251), 1, + sym_where_filter, + STATE(1790), 1, + sym_into, + ACTIONS(2656), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [56188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1638), 12, + ts_builtin_sym_end, + aux_sym_drop_type_statement_token1, + aux_sym_update_statement_token1, + aux_sym_create_type_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token3, + aux_sym_delete_statement_token1, + aux_sym_alter_table_statement_token1, + aux_sym_grant_statement_token1, + anon_sym_BSLASH, + aux_sym_sequence_start_token2, + aux_sym_select_statement_token1, + [56206] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2242), 1, + aux_sym_for_statement_token2, + STATE(1022), 1, + sym_select_having, + STATE(1061), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1426), 1, + sym__select_limit_offset, + [56246] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + STATE(1024), 1, + sym_select_having, + STATE(1086), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1432), 1, + sym__select_limit_offset, + [56286] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2212), 1, + aux_sym_update_statement_token2, + STATE(726), 1, + sym_identifier, + ACTIONS(2214), 9, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, aux_sym_join_item_token1, @@ -78770,14 +68305,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [69833] = 4, + [56310] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2579), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2583), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2585), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2587), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2593), 1, + sym__constraint, + ACTIONS(2662), 1, + anon_sym_RPAREN, + STATE(1190), 1, + sym_identifier, + STATE(1246), 1, + sym_table_constraint_ty, + STATE(1429), 1, + sym_create_table_item, + STATE(1841), 2, + sym_table_constraint, + sym_table_column_item, + [56348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 1, anon_sym_COMMA, - STATE(1124), 1, + STATE(954), 1, aux_sym_returning_repeat1, - ACTIONS(2122), 9, + ACTIONS(2521), 10, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [56370] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(862), 1, + anon_sym_LBRACK, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(213), 1, + aux_sym__type_repeat1, + STATE(1773), 1, + sym__type, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(864), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(136), 2, + sym_predefined_type, + sym_identifier, + [56404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2503), 1, + anon_sym_COMMA, + STATE(889), 1, + sym_identifier, + ACTIONS(2505), 9, aux_sym_update_statement_token4, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, @@ -78787,677 +68392,176 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [69854] = 11, + [56428] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1192), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1326), 1, - sym_into, - STATE(1572), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69889] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1310), 1, - sym__select_limit_offset, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [69918] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1339), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [69947] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1202), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69982] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1453), 1, - sym_with_query, - STATE(2049), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70011] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1453), 1, - sym_with_query, - STATE(2261), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 11, - aux_sym_update_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, + ACTIONS(460), 1, sym__identifier, - [70057] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_COMMA, - STATE(1132), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2182), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [70078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 11, - anon_sym_SEMI, + ACTIONS(862), 1, + anon_sym_LBRACK, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(213), 1, + aux_sym__type_repeat1, + STATE(1567), 1, + sym__type, + ACTIONS(247), 2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [70095] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_COMMA, - STATE(1132), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2174), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [70116] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1453), 1, - sym_with_query, - STATE(2217), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70145] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(2269), 1, - anon_sym_LPAREN, - ACTIONS(2271), 1, - aux_sym_insert_items_token1, - ACTIONS(2273), 1, - aux_sym_insert_items_token2, - ACTIONS(2275), 1, - aux_sym_select_statement_token1, - STATE(1194), 1, - sym_as, - STATE(1259), 1, - sym__list_of_identifiers, - STATE(1263), 1, - sym_insert_items, - STATE(1409), 1, - sym_select_statement, - STATE(2232), 1, - sym_with_query, - [70182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym_update_statement_token1, - ACTIONS(13), 1, - aux_sym_insert_statement_token1, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(1453), 1, - sym_with_query, - STATE(2383), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70211] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2220), 1, - aux_sym_insert_statement_token2, - ACTIONS(2224), 1, - aux_sym_index_using_token1, - ACTIONS(2226), 1, - aux_sym_where_filter_token1, - ACTIONS(2279), 1, - aux_sym_returning_token1, - STATE(1198), 1, + ACTIONS(864), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(136), 2, + sym_predefined_type, sym_identifier, - STATE(1278), 1, - sym_delete_using, - STATE(1424), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70246] = 11, + [56462] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1188), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2281), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_grant_roles_token2, + ACTIONS(1153), 1, aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2102), 1, aux_sym_select_having_token1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - [70298] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70327] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2220), 1, - aux_sym_insert_statement_token2, - ACTIONS(2222), 1, - aux_sym_returning_token1, - ACTIONS(2224), 1, - aux_sym_index_using_token1, - ACTIONS(2226), 1, - aux_sym_where_filter_token1, - STATE(1185), 1, - sym_identifier, - STATE(1277), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2216), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70362] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70391] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1190), 1, + STATE(1005), 1, + sym_select_having, + STATE(1067), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1353), 1, + STATE(1214), 1, sym_into, - STATE(1495), 1, + STATE(1437), 1, sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70426] = 9, + [56502] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2285), 1, - aux_sym_update_statement_token3, - ACTIONS(2287), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2289), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2291), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1702), 1, - sym_alter_table_action, - STATE(2195), 1, - sym_alter_table_change, - STATE(2050), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [70457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1326), 1, - sym_into, - ACTIONS(1978), 5, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - sym__constraint, - [70503] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, + ACTIONS(2102), 1, + aux_sym_select_having_token1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1318), 1, - sym_into, - ACTIONS(2026), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70532] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1352), 1, - sym__select_limit_offset, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 11, - aux_sym_update_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_sym_join_type_token1, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - sym__identifier, - [70578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1349), 1, - sym_into, - STATE(1377), 1, - sym__select_limit_offset, - ACTIONS(2187), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70607] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2285), 1, - aux_sym_update_statement_token3, - ACTIONS(2287), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2289), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2291), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1702), 1, - sym_alter_table_action, - STATE(2046), 1, - sym_alter_table_change, - STATE(2050), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [70638] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1195), 1, + ACTIONS(2205), 1, + aux_sym_for_statement_token2, + STATE(1009), 1, + sym_select_having, + STATE(1065), 1, sym_select_order_by, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1349), 1, + STATE(1156), 1, sym_into, - STATE(1524), 1, + STATE(1427), 1, sym__select_limit_offset, - ACTIONS(2187), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70673] = 8, + [56542] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1308), 1, - sym__select_limit_offset, - STATE(1367), 1, - sym_into, - ACTIONS(2295), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70702] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, + ACTIONS(2579), 1, aux_sym_create_index_statement_token1, - ACTIONS(2151), 1, + ACTIONS(2583), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(2153), 1, + ACTIONS(2585), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(2155), 1, + ACTIONS(2587), 1, aux_sym_table_constraint_ty_token4, - ACTIONS(2159), 1, + ACTIONS(2591), 1, sym__identifier, - ACTIONS(2161), 1, + ACTIONS(2593), 1, sym__constraint, - STATE(1316), 1, + ACTIONS(2667), 1, + anon_sym_RPAREN, + STATE(1190), 1, sym_identifier, - STATE(1447), 1, + STATE(1246), 1, sym_table_constraint_ty, - STATE(1881), 1, + STATE(1587), 1, sym_create_table_item, - STATE(1910), 2, + STATE(1841), 2, sym_table_constraint, sym_table_column_item, - [70737] = 11, + [56580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1210), 1, - sym_select_order_by, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, + ACTIONS(896), 12, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - [70772] = 2, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_constraint_when_token1, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [56598] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 11, + ACTIONS(2148), 1, + aux_sym_join_item_token3, + ACTIONS(2151), 1, + aux_sym_join_type_token1, + ACTIONS(2669), 1, + aux_sym_join_item_token1, + ACTIONS(2672), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + ACTIONS(2140), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(963), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2154), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [56630] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + aux_sym_join_item_token3, + ACTIONS(2172), 1, + aux_sym_join_type_token1, + ACTIONS(2675), 1, + aux_sym_join_item_token1, + ACTIONS(2678), 1, + aux_sym_join_item_token2, + STATE(1072), 1, + sym_join_type, + ACTIONS(2161), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(936), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(2175), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [56662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(695), 11, aux_sym_update_statement_token2, aux_sym_insert_conflict_token1, aux_sym_index_using_token1, @@ -79469,252 +68573,882 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, sym__identifier, - [70789] = 12, + [56679] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1045), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, + sym_into, + STATE(1299), 1, + sym__select_limit_offset, + ACTIONS(2446), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [56714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2681), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [56731] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2244), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1162), 1, + sym__select_limit_offset, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [56762] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2685), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1192), 1, + sym_into, + STATE(1209), 1, + sym__select_limit_offset, + ACTIONS(2683), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [56793] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1036), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1304), 1, + sym__select_limit_offset, + ACTIONS(2361), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [56828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2688), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + [56845] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1405), 1, + sym_with_query, + STATE(2058), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [56874] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1043), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1382), 1, + sym__select_limit_offset, + ACTIONS(2121), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [56909] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(2269), 1, - anon_sym_LPAREN, - ACTIONS(2271), 1, - aux_sym_insert_items_token1, ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2690), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, + aux_sym_insert_items_token1, + ACTIONS(2694), 1, aux_sym_insert_items_token2, - ACTIONS(2275), 1, + ACTIONS(2696), 1, aux_sym_select_statement_token1, - STATE(1187), 1, + STATE(1040), 1, sym_as, - STATE(1238), 1, + STATE(1089), 1, sym__list_of_identifiers, - STATE(1267), 1, + STATE(1094), 1, sym_insert_items, - STATE(1409), 1, + STATE(1267), 1, sym_select_statement, - STATE(2232), 1, + STATE(2237), 1, sym_with_query, - [70826] = 4, + [56946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2698), 11, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1164), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2297), 8, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [56963] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1053), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1422), 1, + sym__select_limit_offset, + ACTIONS(2112), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [70846] = 2, + [56998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 10, + ACTIONS(292), 11, anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [70862] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, anon_sym_COMMA, - STATE(1181), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2199), 8, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [70882] = 11, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [57015] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, sym_select_offset, - STATE(1229), 1, - sym_select_order_by, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1326), 1, + STATE(1156), 1, sym_into, - STATE(1592), 1, + STATE(1228), 1, sym__select_limit_offset, - [70916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_COMMA, - STATE(1163), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2182), 8, - aux_sym_insert_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_for_statement_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [70936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_COMMA, - STATE(1184), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2308), 8, + ACTIONS(2205), 4, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [70956] = 11, + [57046] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1245), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [70990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71006] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1262), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1583), 1, - sym__select_limit_offset, - [71040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2312), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71056] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(2026), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1240), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1318), 1, - sym_into, - STATE(1587), 1, - sym__select_limit_offset, - [71090] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(2579), 1, + aux_sym_create_index_statement_token1, + ACTIONS(2583), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(2585), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(2587), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(2591), 1, sym__identifier, - ACTIONS(2318), 1, - aux_sym_grant_privileges_token1, - STATE(1708), 1, + ACTIONS(2593), 1, + sym__constraint, + STATE(1190), 1, sym_identifier, - STATE(2078), 1, + STATE(1246), 1, + sym_table_constraint_ty, + STATE(1668), 1, + sym_create_table_item, + STATE(1841), 2, + sym_table_constraint, + sym_table_column_item, + [57081] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2623), 1, + aux_sym_insert_statement_token2, + ACTIONS(2627), 1, + aux_sym_index_using_token1, + ACTIONS(2629), 1, + aux_sym_where_filter_token1, + ACTIONS(2660), 1, + aux_sym_returning_token1, + STATE(1056), 1, + sym_identifier, + STATE(1126), 1, + sym_delete_using, + STATE(1251), 1, + sym_where_filter, + STATE(1790), 1, + sym_into, + ACTIONS(2656), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57116] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2702), 1, + aux_sym_update_statement_token3, + ACTIONS(2704), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2706), 1, + aux_sym_alter_table_action_token1, + ACTIONS(2708), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1511), 1, + sym_alter_table_action, + STATE(1906), 1, + sym_alter_table_change, + STATE(1917), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [57147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2710), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + aux_sym_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + sym__constraint, + [57164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_COMMA, + STATE(993), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2562), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [57185] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1213), 1, + sym__select_limit_offset, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57216] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2623), 1, + aux_sym_insert_statement_token2, + ACTIONS(2627), 1, + aux_sym_index_using_token1, + ACTIONS(2629), 1, + aux_sym_where_filter_token1, + ACTIONS(2716), 1, + aux_sym_returning_token1, + STATE(1054), 1, + sym_identifier, + STATE(1130), 1, + sym_delete_using, + STATE(1263), 1, + sym_where_filter, + STATE(1714), 1, + sym_into, + ACTIONS(2714), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + STATE(757), 1, + sym_identifier, + ACTIONS(2230), 9, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [57272] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1405), 1, + sym_with_query, + STATE(1914), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [57301] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1047), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1210), 1, + sym_into, + STATE(1344), 1, + sym__select_limit_offset, + ACTIONS(2604), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57336] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1044), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57371] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2606), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1200), 1, + sym__select_limit_offset, + STATE(1210), 1, + sym_into, + ACTIONS(2604), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57402] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1055), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1348), 1, + sym__select_limit_offset, + ACTIONS(2205), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57437] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2718), 1, + anon_sym_COMMA, + STATE(991), 1, + aux_sym_returning_repeat1, + ACTIONS(2521), 9, + aux_sym_update_statement_token4, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [57458] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2448), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, + sym_into, + STATE(1184), 1, + sym__select_limit_offset, + ACTIONS(2446), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2712), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2566), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [57510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [57527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2597), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [57548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1195), 1, + sym__select_limit_offset, + ACTIONS(2112), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57579] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2702), 1, + aux_sym_update_statement_token3, + ACTIONS(2704), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2706), 1, + aux_sym_alter_table_action_token1, + ACTIONS(2708), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1511), 1, + sym_alter_table_action, + STATE(1932), 1, + sym_alter_table_change, + STATE(1917), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [57610] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1174), 1, + sym__select_limit_offset, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57641] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1032), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1324), 1, + sym__select_limit_offset, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [57676] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1405), 1, + sym_with_query, + STATE(1973), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [57705] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2363), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1177), 1, + sym__select_limit_offset, + STATE(1196), 1, + sym_into, + ACTIONS(2361), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [57736] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_update_statement_token1, + ACTIONS(13), 1, + aux_sym_insert_statement_token1, + ACTIONS(17), 1, + aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1405), 1, + sym_with_query, + STATE(2015), 5, + sym_update_statement, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [57765] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2273), 1, + aux_sym_update_statement_token2, + ACTIONS(2690), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, + aux_sym_insert_items_token1, + ACTIONS(2694), 1, + aux_sym_insert_items_token2, + ACTIONS(2696), 1, + aux_sym_select_statement_token1, + STATE(1052), 1, + sym_as, + STATE(1093), 1, + sym__list_of_identifiers, + STATE(1097), 1, + sym_insert_items, + STATE(1267), 1, + sym_select_statement, + STATE(2237), 1, + sym_with_query, + [57802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 11, + aux_sym_update_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + sym__identifier, + [57819] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + STATE(1073), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1434), 1, + sym__select_limit_offset, + [57853] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2728), 1, + aux_sym_grant_privileges_token1, + STATE(1486), 1, + sym_identifier, + STATE(1910), 1, sym_grant_targets, - ACTIONS(2314), 3, + ACTIONS(2724), 3, aux_sym_drop_function_statement_token1, aux_sym_grant_targets_token6, aux_sym_grant_targets_token7, - ACTIONS(2316), 3, + ACTIONS(2726), 3, aux_sym_create_table_statement_token1, aux_sym_create_schema_statement_token1, aux_sym_grant_targets_token5, - [71116] = 2, + [57879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 10, + ACTIONS(2730), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -79725,33 +69459,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [71132] = 11, + [57895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(2732), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [57911] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - ACTIONS(2187), 1, + ACTIONS(2242), 1, aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1248), 1, + STATE(1061), 1, sym_select_order_by, - STATE(1269), 1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, sym_select_limit, - STATE(1349), 1, + STATE(1227), 1, sym_into, - STATE(1713), 1, + STATE(1426), 1, sym__select_limit_offset, - [71166] = 2, + [57945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 10, + ACTIONS(2734), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -79762,139 +69510,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [71182] = 11, + [57961] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1797), 1, + ACTIONS(2108), 1, aux_sym_select_order_by_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1268), 1, - sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1604), 1, - sym__select_limit_offset, - [71216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71232] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1902), 1, + ACTIONS(2121), 1, aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1217), 1, + STATE(1086), 1, sym_select_order_by, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1597), 1, - sym__select_limit_offset, - [71266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71298] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1797), 1, - aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1256), 1, - sym_select_order_by, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1340), 1, + STATE(1181), 1, sym_into, - STATE(1590), 1, + STATE(1432), 1, sym__select_limit_offset, - [71332] = 2, + [57995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 10, - anon_sym_SEMI, - aux_sym_update_statement_token2, - aux_sym_fk_ref_action_token1, - aux_sym_sequence_increment_token1, - aux_sym_sequence_min_token1, - aux_sym_sequence_max_token1, - aux_sym_sequence_start_token1, - aux_sym_sequence_cache_token1, - aux_sym_sequence_cycle_token1, - aux_sym_sequence_owned_token1, - [71348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2303), 1, + ACTIONS(2738), 1, anon_sym_COMMA, - STATE(1163), 1, + STATE(1016), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(2736), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [58015] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2604), 1, + aux_sym_for_statement_token2, + STATE(1080), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1210), 1, + sym_into, + STATE(1430), 1, + sym__select_limit_offset, + [58049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2740), 1, + anon_sym_COMMA, + STATE(1021), 1, aux_sym_update_statement_repeat2, - ACTIONS(2174), 8, + ACTIONS(2562), 8, aux_sym_insert_statement_token2, aux_sym_grant_roles_token2, aux_sym_for_statement_token2, @@ -79903,30 +69588,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [71368] = 8, + [58069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2332), 1, - aux_sym_create_table_statement_token1, - ACTIONS(2334), 1, - aux_sym_return_setof_token1, - ACTIONS(2336), 1, - aux_sym_predefined_type_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token2, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - STATE(2124), 3, - sym_return_setof, - sym_return_table, - sym__type, - [71396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 10, + ACTIONS(2742), 10, anon_sym_SEMI, aux_sym_update_statement_token2, aux_sym_fk_ref_action_token1, @@ -79937,14 +69602,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_cache_token1, aux_sym_sequence_cycle_token1, aux_sym_sequence_owned_token1, - [71412] = 4, + [58085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2738), 1, anon_sym_COMMA, - STATE(1184), 1, + STATE(1017), 1, aux_sym_select_order_by_repeat1, - ACTIONS(2342), 8, + ACTIONS(2744), 8, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, @@ -79953,1240 +69618,787 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_statement_token2, aux_sym_select_limit_token1, aux_sym_select_offset_token1, - [71432] = 9, + [58105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2748), 1, + anon_sym_COMMA, + STATE(1017), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(2746), 8, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - ACTIONS(2347), 1, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - STATE(1278), 1, - sym_delete_using, - STATE(1424), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71461] = 9, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [58125] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2751), 1, + aux_sym_create_table_statement_token1, + ACTIONS(2753), 1, + aux_sym_return_setof_token1, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + STATE(1857), 3, + sym_return_setof, + sym_return_table, + sym__type, + [58153] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - STATE(1211), 1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + STATE(1067), 1, + sym_select_order_by, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1353), 1, + STATE(1214), 1, sym_into, - STATE(1495), 1, + STATE(1437), 1, sym__select_limit_offset, - ACTIONS(792), 2, + [58187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2740), 1, + anon_sym_COMMA, + STATE(1030), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2566), 8, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [58223] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2361), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1100), 1, + sym_select_order_by, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1428), 1, + sym__select_limit_offset, + [58257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58273] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2205), 1, + aux_sym_for_statement_token2, + STATE(1065), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1427), 1, + sym__select_limit_offset, + [58307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 10, + anon_sym_SEMI, + aux_sym_update_statement_token2, + aux_sym_fk_ref_action_token1, + aux_sym_sequence_increment_token1, + aux_sym_sequence_min_token1, + aux_sym_sequence_max_token1, + aux_sym_sequence_start_token1, + aux_sym_sequence_cache_token1, + aux_sym_sequence_cycle_token1, + aux_sym_sequence_owned_token1, + [58371] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2108), 1, + aux_sym_select_order_by_token1, + ACTIONS(2446), 1, + aux_sym_for_statement_token2, + STATE(1074), 1, + sym_select_order_by, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, + sym_into, + STATE(1431), 1, + sym__select_limit_offset, + [58405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_COMMA, + STATE(1030), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2597), 8, + aux_sym_insert_statement_token2, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [58425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2774), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [58440] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1304), 1, + sym__select_limit_offset, + ACTIONS(2361), 2, anon_sym_SEMI, anon_sym_RPAREN, - [71490] = 10, + [58469] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2780), 1, + aux_sym_update_statement_token4, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + STATE(1041), 1, + aux_sym_update_statement_repeat1, + STATE(1378), 1, + sym_where_filter, + STATE(1751), 1, + sym_returning, + ACTIONS(2776), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58498] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1305), 1, + sym__select_limit_offset, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58527] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2788), 1, + aux_sym_update_statement_token4, + STATE(1038), 1, + aux_sym_update_statement_repeat1, + STATE(1411), 1, + sym_where_filter, + STATE(1819), 1, + sym_returning, + ACTIONS(2786), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58556] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, + sym_into, + STATE(1299), 1, + sym__select_limit_offset, + ACTIONS(2446), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58585] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2792), 1, + aux_sym_update_statement_token4, + STATE(1124), 1, + aux_sym_update_statement_repeat1, + STATE(1306), 1, + sym_where_filter, + STATE(1699), 1, + sym_returning, + ACTIONS(2790), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58614] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2780), 1, + aux_sym_update_statement_token4, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + STATE(1124), 1, + aux_sym_update_statement_repeat1, + STATE(1378), 1, + sym_where_filter, + STATE(1751), 1, + sym_returning, + ACTIONS(2776), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58643] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2794), 1, + aux_sym_returning_token1, + ACTIONS(2796), 1, + aux_sym_index_using_token1, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + STATE(1126), 1, + sym_delete_using, + STATE(1251), 1, + sym_where_filter, + STATE(1790), 1, + sym_into, + ACTIONS(2656), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58672] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(2269), 1, + ACTIONS(2690), 1, anon_sym_LPAREN, - ACTIONS(2271), 1, + ACTIONS(2692), 1, aux_sym_insert_items_token1, - ACTIONS(2273), 1, + ACTIONS(2694), 1, aux_sym_insert_items_token2, - ACTIONS(2275), 1, + ACTIONS(2696), 1, aux_sym_select_statement_token1, - STATE(1259), 1, - sym__list_of_identifiers, - STATE(1263), 1, + STATE(1109), 1, sym_insert_items, - STATE(1409), 1, - sym_select_statement, - STATE(2232), 1, - sym_with_query, - [71521] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1531), 1, - sym__select_limit_offset, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71550] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2357), 1, - aux_sym_update_statement_token4, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - STATE(1205), 1, - aux_sym_update_statement_repeat1, - STATE(1534), 1, - sym_where_filter, - STATE(1834), 1, - sym_returning, - ACTIONS(2353), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71579] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71608] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2363), 1, - aux_sym_returning_token1, - STATE(1277), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2216), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71637] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1318), 1, - sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2026), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71666] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2367), 1, - aux_sym_update_statement_token4, - STATE(1203), 1, - aux_sym_update_statement_repeat1, - STATE(1545), 1, - sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71695] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2269), 1, - anon_sym_LPAREN, - ACTIONS(2271), 1, - aux_sym_insert_items_token1, - ACTIONS(2273), 1, - aux_sym_insert_items_token2, - ACTIONS(2275), 1, - aux_sym_select_statement_token1, - STATE(1213), 1, - sym_insert_items, - STATE(1258), 1, + STATE(1115), 1, sym__list_of_identifiers, - STATE(1409), 1, + STATE(1267), 1, sym_select_statement, - STATE(2232), 1, + STATE(2237), 1, sym_with_query, - [71726] = 9, + [58703] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1367), 1, - sym_into, - STATE(1505), 1, - sym__select_limit_offset, - ACTIONS(2295), 2, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2802), 1, + aux_sym_update_statement_token4, + STATE(1124), 1, + aux_sym_update_statement_repeat1, + STATE(1342), 1, + sym_where_filter, + STATE(1680), 1, + sym_returning, + ACTIONS(2800), 2, anon_sym_SEMI, anon_sym_RPAREN, - [71755] = 9, + [58732] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, + ACTIONS(2432), 1, aux_sym_insert_items_token1, - ACTIONS(2034), 1, + ACTIONS(2436), 1, aux_sym_alter_column_action_token1, - ACTIONS(2036), 1, + ACTIONS(2438), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(2038), 1, + ACTIONS(2440), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(2040), 1, + ACTIONS(2442), 1, aux_sym_constraint_foreign_key_token1, - STATE(1082), 1, + STATE(913), 1, sym_column_constraint_ty, - STATE(1089), 1, + STATE(946), 1, sym_constraint_foreign_key, - ACTIONS(2032), 2, + ACTIONS(2434), 2, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token2, - [71784] = 9, + [58761] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2371), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1575), 1, - sym_where_filter, - STATE(1814), 1, - sym_returning, - ACTIONS(2369), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71813] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2375), 1, - aux_sym_returning_token1, - STATE(1302), 1, - sym_delete_using, - STATE(1391), 1, - sym_where_filter, - STATE(1952), 1, - sym_into, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, + ACTIONS(2104), 1, aux_sym_select_limit_token1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - [71857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [71872] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2357), 1, - aux_sym_update_statement_token4, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1534), 1, - sym_where_filter, - STATE(1834), 1, - sym_returning, - ACTIONS(2353), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1326), 1, + STATE(1156), 1, sym_into, - STATE(1572), 1, + STATE(1348), 1, sym__select_limit_offset, - ACTIONS(1978), 2, + ACTIONS(2205), 2, anon_sym_SEMI, anon_sym_RPAREN, - [71930] = 9, + [58790] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2381), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1562), 1, - sym_where_filter, - STATE(1949), 1, - sym_returning, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71959] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1349), 1, + STATE(1157), 1, sym_into, - STATE(1524), 1, + STATE(1422), 1, sym__select_limit_offset, - ACTIONS(2187), 2, + ACTIONS(2112), 2, anon_sym_SEMI, anon_sym_RPAREN, - [71988] = 9, + [58819] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2367), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1545), 1, - sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72017] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2385), 1, - aux_sym_update_statement_token4, - STATE(1201), 1, - aux_sym_update_statement_repeat1, - STATE(1523), 1, - sym_where_filter, - STATE(1927), 1, - sym_returning, - ACTIONS(2383), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72046] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2355), 1, - anon_sym_COMMA, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2381), 1, - aux_sym_update_statement_token4, - STATE(1197), 1, - aux_sym_update_statement_repeat1, - STATE(1562), 1, - sym_where_filter, - STATE(1949), 1, - sym_returning, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72075] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1375), 1, + STATE(1210), 1, sym_into, - STATE(1560), 1, + STATE(1344), 1, sym__select_limit_offset, - ACTIONS(1902), 2, + ACTIONS(2604), 2, anon_sym_SEMI, anon_sym_RPAREN, - [72104] = 2, + [58848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2387), 9, - anon_sym_SEMI, + ACTIONS(2778), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(2782), 1, aux_sym_returning_token1, - aux_sym_for_statement_token2, - aux_sym_select_limit_token1, - aux_sym_select_offset_token1, - [72119] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - STATE(1338), 1, - sym_select_limit, - ACTIONS(2389), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [72166] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1252), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72190] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2397), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1359), 1, - sym_insert_conflict, - STATE(1557), 1, - sym_returning, - STATE(1961), 1, - sym_into, - ACTIONS(2395), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72216] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2401), 1, - sym__identifier, - STATE(879), 1, - sym_identifier, - STATE(882), 1, - sym_function_call, - STATE(1083), 1, - sym_from_item, - STATE(892), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72240] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(900), 1, - sym_from_item, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(980), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72264] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, + ACTIONS(2784), 1, aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1360), 1, - aux_sym_update_statement_repeat2, - STATE(1496), 1, - sym_where_filter, - STATE(1958), 1, - sym_returning, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72290] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1326), 1, - sym_into, - STATE(1592), 1, - sym__select_limit_offset, - [72318] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2397), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, - aux_sym_returning_token1, + ACTIONS(2806), 1, + aux_sym_update_statement_token4, + STATE(1037), 1, + aux_sym_update_statement_repeat1, STATE(1321), 1, - sym_insert_conflict, - STATE(1574), 1, + sym_where_filter, + STATE(1630), 1, sym_returning, - STATE(1815), 1, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58877] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1192), 1, sym_into, - ACTIONS(2409), 2, + STATE(1410), 1, + sym__select_limit_offset, + ACTIONS(2683), 2, anon_sym_SEMI, anon_sym_RPAREN, - [72344] = 7, + [58906] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2411), 1, - sym__identifier, - STATE(1071), 1, - sym_identifier, - STATE(1104), 1, - sym_function_call, - STATE(1601), 1, - sym_from_item, - STATE(1114), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72368] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, aux_sym_returning_token1, - ACTIONS(2361), 1, + ACTIONS(2784), 1, aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1234), 1, - aux_sym_update_statement_repeat2, - STATE(1575), 1, - sym_where_filter, - STATE(1814), 1, - sym_returning, - ACTIONS(2369), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1233), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72418] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - ACTIONS(2413), 1, - anon_sym_RPAREN, - STATE(225), 1, - sym_predefined_type, - STATE(1099), 1, - sym_identifier, - STATE(1715), 2, - sym_var_declaration, - sym__type, - [72444] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1360), 1, - aux_sym_update_statement_repeat2, - STATE(1575), 1, - sym_where_filter, - STATE(1814), 1, - sym_returning, - ACTIONS(2369), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72470] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2411), 1, - sym__identifier, - STATE(900), 1, - sym_from_item, - STATE(1071), 1, - sym_identifier, - STATE(1104), 1, - sym_function_call, - STATE(1103), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2417), 1, - anon_sym_COMMA, - STATE(1243), 1, + ACTIONS(2806), 1, + aux_sym_update_statement_token4, + STATE(1124), 1, aux_sym_update_statement_repeat1, - STATE(1500), 1, + STATE(1321), 1, sym_where_filter, - ACTIONS(2415), 4, + STATE(1630), 1, + sym_returning, + ACTIONS(2804), 2, anon_sym_SEMI, anon_sym_RPAREN, + [58935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2746), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [72516] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1241), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72540] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, aux_sym_select_offset_token1, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1353), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [72568] = 7, + [58950] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1254), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72592] = 9, + ACTIONS(2778), 1, + anon_sym_COMMA, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2802), 1, + aux_sym_update_statement_token4, + STATE(1048), 1, + aux_sym_update_statement_repeat1, + STATE(1342), 1, + sym_where_filter, + STATE(1680), 1, + sym_returning, + ACTIONS(2800), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [58979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(2808), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(2026), 1, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1318), 1, - sym_into, - STATE(1587), 1, - sym__select_limit_offset, - [72620] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2411), 1, - sym__identifier, - STATE(1071), 1, - sym_identifier, - STATE(1104), 1, - sym_function_call, - STATE(1606), 1, - sym_from_item, - STATE(1114), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72644] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1360), 1, - aux_sym_update_statement_repeat2, - STATE(1521), 1, - sym_where_filter, - STATE(1931), 1, - sym_returning, - ACTIONS(2419), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72670] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2401), 1, - sym__identifier, - STATE(879), 1, - sym_identifier, - STATE(882), 1, - sym_function_call, - STATE(900), 1, - sym_from_item, - STATE(893), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72694] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_update_statement_repeat2, - STATE(1547), 1, - sym_where_filter, - STATE(1860), 1, - sym_returning, - ACTIONS(2421), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72720] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1360), 1, - aux_sym_update_statement_repeat2, - STATE(1547), 1, - sym_where_filter, - STATE(1860), 1, - sym_returning, - ACTIONS(2421), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72746] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1220), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72770] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2423), 1, - sym__identifier, - STATE(906), 1, - sym_identifier, - STATE(923), 1, - sym_function_call, - STATE(1083), 1, - sym_from_item, - STATE(921), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72794] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, - sym__identifier, - STATE(925), 1, - sym_identifier, - STATE(932), 1, - sym_function_call, - STATE(1161), 1, - sym_from_item, - STATE(940), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72818] = 9, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [58994] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, - ACTIONS(2271), 1, + ACTIONS(2690), 1, + anon_sym_LPAREN, + ACTIONS(2692), 1, aux_sym_insert_items_token1, - ACTIONS(2273), 1, + ACTIONS(2694), 1, aux_sym_insert_items_token2, - ACTIONS(2275), 1, + ACTIONS(2696), 1, aux_sym_select_statement_token1, - ACTIONS(2427), 1, - anon_sym_LPAREN, - STATE(1257), 1, + STATE(1089), 1, + sym__list_of_identifiers, + STATE(1094), 1, sym_insert_items, - STATE(1409), 1, + STATE(1267), 1, sym_select_statement, - STATE(2232), 1, + STATE(2237), 1, sym_with_query, - [72846] = 3, + [59025] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(31), 6, - aux_sym_update_statement_token2, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_index_using_token1, - aux_sym_where_filter_token1, - sym__identifier, - [72862] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(2187), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1349), 1, - sym_into, - STATE(1713), 1, - sym__select_limit_offset, - [72890] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_update_statement_repeat2, - STATE(1521), 1, - sym_where_filter, - STATE(1931), 1, - sym_returning, - ACTIONS(2419), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72916] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(1083), 1, - sym_from_item, - STATE(987), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72940] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2417), 1, - anon_sym_COMMA, - STATE(1292), 1, - aux_sym_update_statement_repeat1, - STATE(1492), 1, - sym_where_filter, - ACTIONS(2429), 4, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [72962] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2407), 1, - anon_sym_COMMA, - STATE(1360), 1, - aux_sym_update_statement_repeat2, - STATE(1562), 1, - sym_where_filter, - STATE(1949), 1, - sym_returning, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72988] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1604), 1, - sym__select_limit_offset, - [73016] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, - sym__identifier, - STATE(900), 1, - sym_from_item, - STATE(925), 1, - sym_identifier, - STATE(932), 1, - sym_function_call, - STATE(934), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73040] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2423), 1, - sym__identifier, - STATE(906), 1, - sym_identifier, - STATE(923), 1, - sym_function_call, - STATE(1119), 1, - sym_from_item, - STATE(921), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73064] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(2295), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1367), 1, - sym_into, - STATE(1582), 1, - sym__select_limit_offset, - [73092] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2411), 1, - sym__identifier, - STATE(1071), 1, - sym_identifier, STATE(1104), 1, - sym_function_call, - STATE(1741), 1, - sym_from_item, - STATE(1114), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73116] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2397), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1334), 1, - sym_insert_conflict, - STATE(1558), 1, - sym_returning, - STATE(1969), 1, + sym_select_limit, + STATE(1181), 1, sym_into, - ACTIONS(2431), 2, + STATE(1382), 1, + sym__select_limit_offset, + ACTIONS(2121), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73142] = 7, + [59054] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2796), 1, + aux_sym_index_using_token1, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2812), 1, + aux_sym_returning_token1, + STATE(1147), 1, + sym_delete_using, + STATE(1290), 1, + sym_where_filter, + STATE(1634), 1, + sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59083] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1227), 1, + sym_into, + STATE(1324), 1, + sym__select_limit_offset, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59112] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2796), 1, + aux_sym_index_using_token1, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2814), 1, + aux_sym_returning_token1, + STATE(1130), 1, + sym_delete_using, + STATE(1263), 1, + sym_where_filter, + STATE(1714), 1, + sym_into, + ACTIONS(2714), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59141] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(2818), 1, sym__identifier, - STATE(925), 1, - sym_identifier, - STATE(932), 1, - sym_function_call, - STATE(1083), 1, + STATE(747), 1, sym_from_item, - STATE(940), 3, + STATE(772), 1, + sym_identifier, + STATE(792), 1, + sym_function_call, + STATE(796), 3, sym_from_select, sym_from_table, sym_from_function, - [73166] = 8, + [59165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2782), 1, aux_sym_returning_token1, - ACTIONS(2361), 1, + ACTIONS(2784), 1, aux_sym_where_filter_token1, - ACTIONS(2407), 1, + ACTIONS(2822), 1, anon_sym_COMMA, - STATE(1223), 1, + STATE(1202), 1, aux_sym_update_statement_repeat2, - STATE(1562), 1, + STATE(1296), 1, sym_where_filter, - STATE(1949), 1, + STATE(1809), 1, sym_returning, - ACTIONS(2379), 2, + ACTIONS(2820), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73192] = 3, + [59191] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(31), 3, @@ -81199,11609 +70411,12162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym__type_token1, aux_sym__type_token2, - [73208] = 8, + [59207] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2782), 1, aux_sym_returning_token1, - ACTIONS(2361), 1, + ACTIONS(2784), 1, aux_sym_where_filter_token1, - ACTIONS(2407), 1, + ACTIONS(2822), 1, anon_sym_COMMA, - STATE(1244), 1, + STATE(1099), 1, aux_sym_update_statement_repeat2, - STATE(1545), 1, + STATE(1296), 1, sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73234] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2423), 1, - sym__identifier, - STATE(900), 1, - sym_from_item, - STATE(906), 1, - sym_identifier, - STATE(923), 1, - sym_function_call, - STATE(918), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73258] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1583), 1, - sym__select_limit_offset, - [73286] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2397), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1324), 1, - sym_insert_conflict, - STATE(1542), 1, - sym_returning, STATE(1809), 1, - sym_into, - ACTIONS(2433), 2, + sym_returning, + ACTIONS(2820), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73312] = 9, + [59233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2271), 1, - aux_sym_insert_items_token1, - ACTIONS(2273), 1, - aux_sym_insert_items_token2, - ACTIONS(2275), 1, - aux_sym_select_statement_token1, - ACTIONS(2427), 1, - anon_sym_LPAREN, - STATE(1218), 1, - sym_insert_items, - STATE(1409), 1, - sym_select_statement, - STATE(2232), 1, - sym_with_query, - [73340] = 9, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2361), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1196), 1, + sym_into, + STATE(1428), 1, + sym__select_limit_offset, + [59261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2271), 1, - aux_sym_insert_items_token1, - ACTIONS(2273), 1, - aux_sym_insert_items_token2, - ACTIONS(2275), 1, - aux_sym_select_statement_token1, - ACTIONS(2427), 1, + ACTIONS(2816), 1, anon_sym_LPAREN, - STATE(1250), 1, - sym_insert_items, - STATE(1409), 1, - sym_select_statement, - STATE(2232), 1, - sym_with_query, - [73368] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2401), 1, + ACTIONS(2824), 1, sym__identifier, - STATE(879), 1, + STATE(912), 1, sym_identifier, - STATE(882), 1, + STATE(952), 1, sym_function_call, - STATE(1084), 1, + STATE(1500), 1, sym_from_item, - STATE(892), 3, + STATE(945), 3, sym_from_select, sym_from_table, sym_from_function, - [73392] = 8, + [59285] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(2828), 1, aux_sym_trigger_scope_token1, - ACTIONS(2439), 1, + ACTIONS(2830), 1, aux_sym_trigger_exec_token1, - ACTIONS(2441), 1, + ACTIONS(2832), 1, aux_sym_trigger_cond_token1, - STATE(1571), 1, + STATE(1302), 1, sym_trigger_scope, - STATE(1913), 1, + STATE(1739), 1, sym_trigger_cond, - STATE(2280), 1, + STATE(2085), 1, sym_trigger_exec, - ACTIONS(2435), 2, + ACTIONS(2826), 2, aux_sym_update_set_token1, aux_sym_trigger_scope_token3, - [73418] = 9, + [59311] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(908), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - ACTIONS(1793), 1, - aux_sym_select_limit_token1, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - ACTIONS(1902), 1, - aux_sym_for_statement_token2, - STATE(1211), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1375), 1, - sym_into, - STATE(1597), 1, - sym__select_limit_offset, - [73446] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2397), 1, + ACTIONS(2836), 1, aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, + ACTIONS(2838), 1, aux_sym_returning_token1, - STATE(1323), 1, + STATE(1220), 1, sym_insert_conflict, - STATE(1541), 1, + STATE(1327), 1, sym_returning, - STATE(1811), 1, + STATE(1650), 1, sym_into, - ACTIONS(2443), 2, + ACTIONS(2834), 2, anon_sym_SEMI, anon_sym_RPAREN, - [73472] = 7, + [59337] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(1287), 1, - sym_from_item, - STATE(987), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73496] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2437), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2441), 1, - aux_sym_trigger_cond_token1, - STATE(1566), 1, - sym_trigger_scope, - STATE(1898), 1, - sym_trigger_cond, - STATE(2159), 1, - sym_trigger_exec, - ACTIONS(2435), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [73522] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1083), 1, - sym_from_item, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73546] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(2397), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1337), 1, - sym_insert_conflict, - STATE(1527), 1, - sym_returning, - STATE(1890), 1, - sym_into, - ACTIONS(2445), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73572] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1793), 1, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - ACTIONS(1795), 1, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - ACTIONS(1801), 1, + ACTIONS(2242), 1, aux_sym_for_statement_token2, - STATE(1211), 1, + STATE(1098), 1, sym_select_offset, - STATE(1269), 1, + STATE(1104), 1, sym_select_limit, - STATE(1340), 1, + STATE(1227), 1, sym_into, - STATE(1590), 1, + STATE(1426), 1, sym__select_limit_offset, - [73600] = 4, + [59365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - aux_sym_select_offset_token1, - STATE(1338), 1, - sym_select_offset, - ACTIONS(2389), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [73618] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, + ACTIONS(2816), 1, anon_sym_LPAREN, - ACTIONS(2393), 1, + ACTIONS(2840), 1, sym__identifier, - STATE(900), 1, + STATE(747), 1, sym_from_item, - STATE(985), 1, + STATE(824), 1, sym_identifier, - STATE(1006), 1, + STATE(851), 1, sym_function_call, - STATE(1022), 3, + STATE(858), 3, sym_from_select, sym_from_table, sym_from_function, - [73642] = 8, + [59389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - ACTIONS(2447), 1, - anon_sym_RPAREN, - STATE(225), 1, - sym_predefined_type, - STATE(1099), 1, - sym_identifier, - STATE(1751), 2, - sym_var_declaration, - sym__type, - [73668] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2449), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1285), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [73689] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2363), 1, - aux_sym_returning_token1, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2216), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73712] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2336), 1, - aux_sym_predefined_type_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token2, - STATE(1688), 1, - sym__type, - STATE(1965), 1, - sym_alter_column_type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [73735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - aux_sym_index_col_nulls_token1, - STATE(1555), 1, - sym_index_col_dir, - STATE(1946), 1, - sym_index_col_nulls, - ACTIONS(2451), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2453), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - [73756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_COMMA, - STATE(1283), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2457), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73773] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - STATE(1424), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73796] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2375), 1, - aux_sym_returning_token1, - STATE(1391), 1, - sym_where_filter, - STATE(1952), 1, - sym_into, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73819] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2463), 1, - aux_sym_grant_roles_token2, - STATE(1766), 1, - sym_identifier, - STATE(2366), 1, - sym_grant_roles, - ACTIONS(2461), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [73840] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - aux_sym_index_col_nulls_token1, - STATE(1451), 1, - sym_index_col_dir, - STATE(1787), 1, - sym_index_col_nulls, - ACTIONS(2453), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(2465), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [73861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 1, - anon_sym_COMMA, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2467), 5, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, + ACTIONS(2104), 1, aux_sym_select_limit_token1, - [73891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - anon_sym_COMMA, - STATE(1297), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2474), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(912), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73921] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2476), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1303), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [73942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2478), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 1, - anon_sym_COMMA, - STATE(1289), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2480), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73972] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1099), 1, - sym_identifier, - STATE(1839), 2, - sym_var_declaration, - sym__type, - [73995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2482), 1, - anon_sym_COMMA, - STATE(1293), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2484), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2490), 1, - anon_sym_COMMA, - STATE(1292), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2467), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 1, - anon_sym_COMMA, - STATE(1293), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2182), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2467), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74085] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_SEMI, - ACTIONS(2498), 1, - aux_sym_function_run_as_token1, - STATE(1767), 1, - sym_function_volatility, - STATE(2392), 1, - sym_function_run_as, - ACTIONS(2500), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [74106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - aux_sym_function_run_as_token1, - ACTIONS(2502), 1, - anon_sym_SEMI, - STATE(1591), 1, - sym_function_volatility, - STATE(2345), 1, - sym_function_run_as, - ACTIONS(2500), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [74127] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2506), 1, - anon_sym_COMMA, - STATE(1297), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2504), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2509), 7, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, + ACTIONS(2106), 1, aux_sym_select_offset_token1, - [74170] = 7, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1157), 1, + sym_into, + STATE(1434), 1, + sym__select_limit_offset, + [59417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2842), 1, sym__identifier, - ACTIONS(2336), 1, - aux_sym_predefined_type_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token2, - STATE(1688), 1, - sym__type, - STATE(1978), 1, - sym_alter_column_type, - STATE(19), 2, - sym_predefined_type, + STATE(812), 1, sym_identifier, - [74193] = 8, + STATE(834), 1, + sym_function_call, + STATE(1148), 1, + sym_from_item, + STATE(828), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59441] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, sym__identifier, - ACTIONS(2511), 1, + STATE(727), 1, + sym_identifier, + STATE(740), 1, + sym_function_call, + STATE(924), 1, + sym_from_item, + STATE(742), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1709), 1, - sym_identifier, - STATE(2117), 1, - sym_with_query, - STATE(2165), 1, - sym_select_statement, - [74218] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(31), 6, + aux_sym_update_statement_token2, aux_sym_insert_statement_token2, - ACTIONS(2351), 1, + aux_sym_returning_token1, + aux_sym_index_using_token1, aux_sym_where_filter_token1, - ACTIONS(2515), 1, - aux_sym_returning_token1, - STATE(1437), 1, - sym_where_filter, - STATE(1855), 1, - sym_into, - ACTIONS(2513), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2519), 1, sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2517), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1303), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [74262] = 5, + [59481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, sym__identifier, - ACTIONS(2524), 1, - aux_sym_grant_roles_token2, - STATE(1836), 1, + STATE(727), 1, sym_identifier, - ACTIONS(2522), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [74280] = 6, + STATE(740), 1, + sym_function_call, + STATE(907), 1, + sym_from_item, + STATE(742), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2824), 1, + sym__identifier, + STATE(912), 1, + sym_identifier, + STATE(952), 1, + sym_function_call, + STATE(1467), 1, + sym_from_item, + STATE(945), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59529] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1181), 1, + sym_into, + STATE(1432), 1, + sym__select_limit_offset, + [59557] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2604), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1210), 1, + sym_into, + STATE(1430), 1, + sym__select_limit_offset, + [59585] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1855), 1, - sym_into, - ACTIONS(2513), 2, + STATE(1202), 1, + aux_sym_update_statement_repeat2, + STATE(1306), 1, + sym_where_filter, + STATE(1699), 1, + sym_returning, + ACTIONS(2790), 2, anon_sym_SEMI, anon_sym_RPAREN, - [74300] = 6, + [59611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - aux_sym_predefined_type_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token2, - ACTIONS(2528), 1, + ACTIONS(2591), 1, sym__identifier, - STATE(100), 1, - sym__type, - STATE(19), 2, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + ACTIONS(2846), 1, + anon_sym_RPAREN, + STATE(136), 1, sym_predefined_type, + STATE(943), 1, sym_identifier, - [74320] = 3, + STATE(1516), 2, + sym_var_declaration, + sym__type, + [59637] = 7, ACTIONS(3), 1, sym_comment, - STATE(1318), 1, - sym_into, - ACTIONS(2026), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2824), 1, + sym__identifier, + STATE(912), 1, + sym_identifier, + STATE(952), 1, + sym_function_call, + STATE(1483), 1, + sym_from_item, + STATE(945), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59661] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(1092), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, aux_sym_returning_token1, - [74334] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1380), 1, - sym_into, - ACTIONS(2530), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74348] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1349), 1, - sym_into, - ACTIONS(2187), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74362] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_update_statement_repeat2, STATE(1346), 1, - sym_into, - ACTIONS(1833), 5, + sym_where_filter, + STATE(1777), 1, + sym_returning, + ACTIONS(2848), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74376] = 6, + [59711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2683), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1192), 1, + sym_into, + STATE(1425), 1, + sym__select_limit_offset, + [59739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 1, + aux_sym_trigger_scope_token1, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2832), 1, + aux_sym_trigger_cond_token1, + STATE(1315), 1, + sym_trigger_scope, + STATE(1658), 1, + sym_trigger_cond, + STATE(2042), 1, + sym_trigger_exec, + ACTIONS(2826), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [59765] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2824), 1, sym__identifier, - ACTIONS(2534), 1, - aux_sym_if_statement_token1, - STATE(1389), 1, + STATE(747), 1, + sym_from_item, + STATE(912), 1, sym_identifier, - STATE(1874), 1, - sym_if_exists, - ACTIONS(2532), 2, - aux_sym_alter_table_action_token2, - sym__constraint, - [74396] = 3, + STATE(952), 1, + sym_function_call, + STATE(962), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59789] = 7, ACTIONS(3), 1, sym_comment, - STATE(1326), 1, - sym_into, - ACTIONS(1978), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74410] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2844), 1, sym__identifier, - ACTIONS(2336), 1, - aux_sym_predefined_type_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token2, - STATE(2258), 1, - sym__type, - STATE(19), 2, - sym_predefined_type, + STATE(727), 1, sym_identifier, - [74444] = 6, + STATE(740), 1, + sym_function_call, + STATE(747), 1, + sym_from_item, + STATE(729), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59813] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2818), 1, + sym__identifier, + STATE(772), 1, + sym_identifier, + STATE(792), 1, + sym_function_call, + STATE(924), 1, + sym_from_item, + STATE(787), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(924), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59861] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2205), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1156), 1, + sym_into, + STATE(1427), 1, + sym__select_limit_offset, + [59889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2836), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1229), 1, + sym_insert_conflict, + STATE(1362), 1, + sym_returning, + STATE(1723), 1, + sym_into, + ACTIONS(2850), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [59915] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(1060), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59939] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2692), 1, + aux_sym_insert_items_token1, + ACTIONS(2694), 1, + aux_sym_insert_items_token2, + ACTIONS(2696), 1, + aux_sym_select_statement_token1, + ACTIONS(2852), 1, + anon_sym_LPAREN, + STATE(1064), 1, + sym_insert_items, + STATE(1267), 1, + sym_select_statement, + STATE(2237), 1, + sym_with_query, + [59967] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(1108), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [59991] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2856), 1, anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1904), 1, - sym_into, - ACTIONS(2536), 2, + STATE(1113), 1, + aux_sym_update_statement_repeat1, + STATE(1297), 1, + sym_where_filter, + ACTIONS(2854), 4, anon_sym_SEMI, anon_sym_RPAREN, - [74464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2538), 1, - aux_sym_predefined_type_token1, - ACTIONS(2540), 1, - aux_sym_predefined_type_token2, - STATE(1001), 1, - sym__type, - STATE(1016), 2, - sym_predefined_type, - sym_identifier, - [74484] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1344), 1, - aux_sym_returning_repeat1, - STATE(1904), 1, - sym_into, - ACTIONS(2536), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74504] = 2, + aux_sym_returning_token1, + [60013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 6, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1110), 1, + aux_sym_update_statement_repeat2, + STATE(1342), 1, + sym_where_filter, + STATE(1680), 1, + sym_returning, + ACTIONS(2800), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60039] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2692), 1, + aux_sym_insert_items_token1, + ACTIONS(2694), 1, + aux_sym_insert_items_token2, + ACTIONS(2696), 1, + aux_sym_select_statement_token1, + ACTIONS(2852), 1, + anon_sym_LPAREN, + STATE(1087), 1, + sym_insert_items, + STATE(1267), 1, + sym_select_statement, + STATE(2237), 1, + sym_with_query, + [60067] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2836), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1224), 1, + sym_insert_conflict, + STATE(1363), 1, + sym_returning, + STATE(1724), 1, + sym_into, + ACTIONS(2858), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + sym__identifier, + STATE(747), 1, + sym_from_item, + STATE(760), 1, + sym_identifier, + STATE(773), 1, + sym_function_call, + STATE(775), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + sym__identifier, + STATE(760), 1, + sym_identifier, + STATE(773), 1, + sym_function_call, + STATE(982), 1, + sym_from_item, + STATE(771), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60141] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2836), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1169), 1, + sym_insert_conflict, + STATE(1395), 1, + sym_returning, + STATE(1805), 1, + sym_into, + ACTIONS(2862), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60167] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + STATE(1172), 1, + sym_select_limit, + ACTIONS(2864), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [74516] = 7, + [60185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1109), 1, - sym_identifier, - STATE(1950), 1, - sym__type, - [74538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - ACTIONS(2542), 1, - sym__identifier, - STATE(432), 1, - sym__type, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [74558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, + ACTIONS(2782), 1, aux_sym_returning_token1, - STATE(1550), 1, - sym_returning, - STATE(1854), 1, - sym_into, - ACTIONS(2544), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2546), 6, - anon_sym_SEMI, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1557), 1, + STATE(1202), 1, + aux_sym_update_statement_repeat2, + STATE(1346), 1, + sym_where_filter, + STATE(1777), 1, sym_returning, - STATE(1961), 1, - sym_into, - ACTIONS(2395), 2, + ACTIONS(2848), 2, anon_sym_SEMI, anon_sym_RPAREN, - [74610] = 6, + [60211] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(1283), 1, aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1559), 1, - sym_returning, - STATE(1980), 1, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + ACTIONS(2446), 1, + aux_sym_for_statement_token2, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1179), 1, sym_into, - ACTIONS(2548), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74630] = 6, + STATE(1431), 1, + sym__select_limit_offset, + [60239] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2818), 1, sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(1394), 1, - sym__type, - STATE(225), 2, - sym_predefined_type, + STATE(772), 1, sym_identifier, - [74650] = 2, + STATE(792), 1, + sym_function_call, + STATE(1014), 1, + sym_from_item, + STATE(787), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 6, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2842), 1, + sym__identifier, + STATE(747), 1, + sym_from_item, + STATE(812), 1, + sym_identifier, + STATE(834), 1, + sym_function_call, + STATE(837), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60287] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1202), 1, + aux_sym_update_statement_repeat2, + STATE(1366), 1, + sym_where_filter, + STATE(1807), 1, + sym_returning, + ACTIONS(2866), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + STATE(1172), 1, + sym_select_offset, + ACTIONS(2864), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [74662] = 6, + [60331] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2860), 1, + sym__identifier, + STATE(760), 1, + sym_identifier, + STATE(773), 1, + sym_function_call, + STATE(924), 1, + sym_from_item, + STATE(771), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60355] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + ACTIONS(2868), 1, + anon_sym_RPAREN, + STATE(136), 1, + sym_predefined_type, + STATE(943), 1, + sym_identifier, + STATE(1458), 2, + sym_var_declaration, + sym__type, + [60381] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1058), 1, + aux_sym_update_statement_repeat2, + STATE(1306), 1, + sym_where_filter, + STATE(1699), 1, + sym_returning, + ACTIONS(2790), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60407] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1075), 1, + aux_sym_update_statement_repeat2, + STATE(1321), 1, + sym_where_filter, + STATE(1630), 1, + sym_returning, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60433] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2836), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1183), 1, + sym_insert_conflict, + STATE(1328), 1, + sym_returning, + STATE(1642), 1, + sym_into, + ACTIONS(2870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60459] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1202), 1, + aux_sym_update_statement_repeat2, + STATE(1321), 1, + sym_where_filter, + STATE(1630), 1, + sym_returning, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60485] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(1079), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60509] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2836), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1216), 1, + sym_insert_conflict, + STATE(1307), 1, + sym_returning, + STATE(1698), 1, + sym_into, + ACTIONS(2872), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60535] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2856), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym_update_statement_repeat1, + STATE(1373), 1, + sym_where_filter, + ACTIONS(2874), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [60557] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2840), 1, + sym__identifier, + STATE(824), 1, + sym_identifier, + STATE(851), 1, + sym_function_call, + STATE(1107), 1, + sym_from_item, + STATE(856), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60581] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(2692), 1, + aux_sym_insert_items_token1, + ACTIONS(2694), 1, + aux_sym_insert_items_token2, + ACTIONS(2696), 1, + aux_sym_select_statement_token1, + ACTIONS(2852), 1, + anon_sym_LPAREN, + STATE(1112), 1, + sym_insert_items, + STATE(1267), 1, + sym_select_statement, + STATE(2237), 1, + sym_with_query, + [60609] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2842), 1, + sym__identifier, + STATE(812), 1, + sym_identifier, + STATE(834), 1, + sym_function_call, + STATE(924), 1, + sym_from_item, + STATE(828), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [60633] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2104), 1, + aux_sym_select_limit_token1, + ACTIONS(2106), 1, + aux_sym_select_offset_token1, + STATE(1098), 1, + sym_select_offset, + STATE(1104), 1, + sym_select_limit, + STATE(1214), 1, + sym_into, + STATE(1437), 1, + sym__select_limit_offset, + [60661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1279), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(1127), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2876), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + [60704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_SEMI, + ACTIONS(2882), 1, + aux_sym_function_run_as_token1, + STATE(1498), 1, + sym_function_volatility, + STATE(2100), 1, + sym_function_run_as, + ACTIONS(2884), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [60725] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + STATE(1615), 1, + sym__type, + STATE(1632), 1, + sym_alter_column_type, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + [60748] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + aux_sym_function_run_as_token1, + ACTIONS(2886), 1, + anon_sym_SEMI, + STATE(1547), 1, + sym_function_volatility, + STATE(2066), 1, + sym_function_run_as, + ACTIONS(2884), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [60769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2890), 1, + anon_sym_COMMA, + STATE(1124), 1, + aux_sym_update_statement_repeat1, + ACTIONS(2888), 5, + anon_sym_SEMI, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + anon_sym_COMMA, + STATE(1139), 1, + aux_sym_insert_items_repeat1, + ACTIONS(2893), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [60803] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2814), 1, + aux_sym_returning_token1, + STATE(1263), 1, + sym_where_filter, + STATE(1714), 1, + sym_into, + ACTIONS(2714), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2897), 1, + anon_sym_COMMA, + STATE(1127), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2900), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym_update_statement_repeat1, + ACTIONS(2888), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60873] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2812), 1, + aux_sym_returning_token1, + STATE(1290), 1, + sym_where_filter, + STATE(1634), 1, + sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [60896] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(136), 1, + sym_predefined_type, + STATE(943), 1, + sym_identifier, + STATE(1682), 2, + sym_var_declaration, + sym__type, + [60919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2905), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60932] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + STATE(1615), 1, + sym__type, + STATE(1749), 1, + sym_alter_column_type, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + [60955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2907), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [60981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2911), 1, + anon_sym_COMMA, + STATE(1136), 1, + aux_sym_insert_items_repeat1, + ACTIONS(2909), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [60998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 1, + aux_sym_index_col_nulls_token1, + STATE(1329), 1, + sym_index_col_dir, + STATE(1652), 1, + sym_index_col_nulls, + ACTIONS(2914), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2916), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + [61019] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2794), 1, + aux_sym_returning_token1, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + STATE(1251), 1, + sym_where_filter, + STATE(1790), 1, + sym_into, + ACTIONS(2656), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + anon_sym_COMMA, + STATE(1136), 1, + aux_sym_insert_items_repeat1, + ACTIONS(2920), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61059] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2924), 1, + aux_sym_grant_roles_token2, + STATE(1565), 1, + sym_identifier, + STATE(1970), 1, + sym_grant_roles, + ACTIONS(2922), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [61080] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1742), 1, + sym_var_declaration, + ACTIONS(2926), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1149), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [61101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + [61114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 7, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_update_statement_token4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [61127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1742), 1, + sym_var_declaration, + ACTIONS(2932), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1144), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [61148] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_sequence_start_token2, + ACTIONS(458), 1, + aux_sym_select_statement_token1, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2937), 1, + anon_sym_RPAREN, + STATE(1479), 1, + sym_identifier, + STATE(1892), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + [61173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 1, + aux_sym_index_col_nulls_token1, + STATE(1303), 1, + sym_index_col_dir, + STATE(1729), 1, + sym_index_col_nulls, + ACTIONS(2916), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(2939), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [61194] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2798), 1, + aux_sym_where_filter_token1, + ACTIONS(2943), 1, + aux_sym_returning_token1, + STATE(1292), 1, + sym_where_filter, + STATE(1677), 1, + sym_into, + ACTIONS(2941), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2878), 1, + anon_sym_COMMA, + STATE(1119), 1, + aux_sym_update_statement_repeat2, + ACTIONS(2945), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + aux_sym_where_filter_token1, + [61234] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1742), 1, + sym_var_declaration, + ACTIONS(2947), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(1144), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [61255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1221), 1, + aux_sym_returning_repeat1, + STATE(1634), 1, + sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2505), 1, + aux_sym_insert_statement_token2, + STATE(889), 1, + sym_identifier, + ACTIONS(2503), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [61293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1185), 1, + aux_sym_returning_repeat1, + STATE(1714), 1, + sym_into, + ACTIONS(2714), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61313] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(136), 1, + sym_predefined_type, + STATE(955), 1, + sym_identifier, + STATE(1752), 1, + sym__type, + [61335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + aux_sym_insert_statement_token2, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2953), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2955), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2957), 1, + aux_sym_update_statement_token3, + STATE(1711), 1, + sym_alter_column_action, + ACTIONS(2951), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [61371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2242), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [61383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2121), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [61395] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, aux_sym_sequence_start_token2, ACTIONS(27), 1, aux_sym_select_statement_token1, - ACTIONS(2550), 1, + ACTIONS(2959), 1, aux_sym_trigger_exec_token1, - STATE(2117), 1, + STATE(2076), 1, sym_with_query, - STATE(2007), 2, + STATE(2006), 2, sym_execute_statement, sym_select_statement, - [74682] = 5, + [61415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1215), 1, - sym_join_type, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [74700] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, + ACTIONS(2949), 1, anon_sym_COMMA, - STATE(1315), 1, + STATE(1239), 1, aux_sym_returning_repeat1, - STATE(1968), 1, + STATE(1771), 1, sym_into, - ACTIONS(2552), 2, + ACTIONS(2961), 2, anon_sym_SEMI, anon_sym_RPAREN, - [74720] = 6, + [61435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1968), 1, - sym_into, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74740] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1305), 1, - aux_sym_returning_repeat1, - STATE(1952), 1, - sym_into, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74760] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2012), 1, - aux_sym_insert_statement_token2, - STATE(1034), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [74778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2554), 1, - anon_sym_COMMA, - STATE(1333), 1, - aux_sym_with_query_repeat1, - ACTIONS(2557), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, aux_sym_select_statement_token1, - [74794] = 6, + ACTIONS(2959), 1, + aux_sym_trigger_exec_token1, + STATE(2076), 1, + sym_with_query, + STATE(1959), 2, + sym_execute_statement, + sym_select_statement, + [61455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1569), 1, - sym_returning, - STATE(1875), 1, - sym_into, - ACTIONS(2559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2561), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1952), 1, - sym_into, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_returning_token1, - STATE(1541), 1, - sym_returning, - STATE(1811), 1, - sym_into, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2563), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [74878] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [74904] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, + ACTIONS(2199), 1, aux_sym_join_item_token3, - ACTIONS(1841), 1, + ACTIONS(2201), 1, aux_sym_join_type_token1, - STATE(1255), 1, + STATE(1066), 1, sym_join_type, - ACTIONS(1843), 3, + ACTIONS(2203), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [74922] = 6, + [61473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - aux_sym_predefined_type_token1, - ACTIONS(2567), 1, - aux_sym_predefined_type_token2, - ACTIONS(2569), 1, - sym__identifier, - STATE(635), 1, - sym__type, - STATE(557), 2, - sym_predefined_type, - sym_identifier, - [74942] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2212), 1, - aux_sym_predefined_type_token1, - ACTIONS(2214), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1092), 1, - sym_identifier, - STATE(1680), 1, - sym__type, - [74964] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(2363), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1990), 1, + STATE(1196), 1, sym_into, - ACTIONS(2571), 2, + ACTIONS(2361), 4, anon_sym_SEMI, anon_sym_RPAREN, - [74984] = 6, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1095), 1, + sym_join_type, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [61507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1212), 1, + aux_sym_returning_repeat1, + STATE(1771), 1, + sym_into, + ACTIONS(2961), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61527] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, sym__identifier, - ACTIONS(2336), 1, + ACTIONS(2963), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2965), 1, + aux_sym_create_index_statement_token3, + ACTIONS(2967), 1, + aux_sym_if_statement_token1, + STATE(1495), 1, + sym_if_not_exists, + STATE(2106), 1, + sym_identifier, + [61549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2969), 1, aux_sym_predefined_type_token1, - ACTIONS(2338), 1, + ACTIONS(2971), 1, aux_sym_predefined_type_token2, - STATE(1394), 1, + ACTIONS(2973), 1, + sym__identifier, + STATE(549), 1, sym__type, - STATE(19), 2, + STATE(441), 2, sym_predefined_type, sym_identifier, - [75004] = 2, + [61569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 6, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(136), 1, + sym_predefined_type, + STATE(957), 1, + sym_identifier, + STATE(1623), 1, + sym__type, + [61591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2975), 1, + aux_sym_predefined_type_token1, + ACTIONS(2977), 1, + aux_sym_predefined_type_token2, + ACTIONS(2979), 1, + sym__identifier, + STATE(353), 1, + sym__type, + STATE(169), 2, + sym_predefined_type, + sym_identifier, + [61611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1363), 1, + sym_returning, + STATE(1724), 1, + sym_into, + ACTIONS(2858), 2, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [75016] = 7, + [61631] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(2573), 1, + ACTIONS(2981), 1, aux_sym_schema_role_token1, - ACTIONS(2575), 1, + ACTIONS(2983), 1, aux_sym_if_statement_token1, - STATE(1475), 1, + STATE(1359), 1, sym_if_not_exists, - STATE(1619), 1, + STATE(1492), 1, sym_identifier, - STATE(2240), 1, + STATE(2115), 1, sym_schema_role, - [75038] = 7, + [61653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(2577), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2579), 1, - aux_sym_create_index_statement_token3, - ACTIONS(2581), 1, + ACTIONS(2967), 1, aux_sym_if_statement_token1, - STATE(1683), 1, + ACTIONS(2985), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2987), 1, + aux_sym_create_index_statement_token3, + STATE(1612), 1, sym_if_not_exists, - STATE(2037), 1, + STATE(2007), 1, sym_identifier, - [75060] = 2, + [61675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 6, + ACTIONS(2989), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [75072] = 4, + [61687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2583), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - STATE(1350), 1, + STATE(1173), 1, aux_sym_conflict_target_repeat1, - ACTIONS(662), 4, + ACTIONS(1044), 4, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_for_statement_token2, anon_sym_RBRACK, - [75088] = 6, + [61703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2590), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2592), 1, - aux_sym_update_statement_token3, - STATE(1779), 1, - sym_alter_column_action, - ACTIONS(2586), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [75108] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1368), 1, + ACTIONS(2114), 1, + aux_sym_insert_statement_token2, + STATE(1157), 1, sym_into, - ACTIONS(1783), 5, + ACTIONS(2112), 4, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [75122] = 2, + [61719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1783), 6, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + ACTIONS(2994), 1, + sym__identifier, + STATE(88), 1, + sym__type, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + [61739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [75134] = 6, + [61751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2448), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1372), 1, - aux_sym_returning_repeat1, - STATE(1990), 1, + STATE(1179), 1, sym_into, - ACTIONS(2571), 2, + ACTIONS(2446), 4, anon_sym_SEMI, anon_sym_RPAREN, - [75154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - aux_sym_predefined_type_token1, - ACTIONS(2596), 1, - aux_sym_predefined_type_token2, - ACTIONS(2598), 1, - sym__identifier, - STATE(382), 1, - sym__type, - STATE(199), 2, - sym_predefined_type, - sym_identifier, - [75174] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2581), 1, - aux_sym_if_statement_token1, - ACTIONS(2600), 1, aux_sym_insert_conflict_token1, - ACTIONS(2602), 1, - aux_sym_create_index_statement_token3, - STATE(1624), 1, - sym_if_not_exists, - STATE(2211), 1, - sym_identifier, - [75196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2604), 1, - aux_sym_predefined_type_token1, - ACTIONS(2606), 1, - aux_sym_predefined_type_token2, - ACTIONS(2608), 1, - sym__identifier, - STATE(486), 1, - sym__type, - STATE(286), 2, - sym_predefined_type, - sym_identifier, - [75216] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2610), 1, - aux_sym_predefined_type_token1, - ACTIONS(2612), 1, - aux_sym_predefined_type_token2, - ACTIONS(2614), 1, - sym__identifier, - STATE(627), 1, - sym__type, - STATE(514), 2, - sym_predefined_type, - sym_identifier, - [75236] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, aux_sym_returning_token1, - STATE(1573), 1, + [61767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2953), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2955), 1, + aux_sym_drop_type_statement_token2, + ACTIONS(2957), 1, + aux_sym_update_statement_token3, + STATE(1633), 1, + sym_alter_column_action, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [61787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2604), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [61799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 1, + anon_sym_COMMA, + STATE(1218), 1, + aux_sym_with_query_repeat1, + ACTIONS(3002), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [61815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [61827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 1, + anon_sym_COMMA, + STATE(1180), 1, + aux_sym_with_query_repeat1, + ACTIONS(3004), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [61843] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1308), 1, sym_returning, - STATE(1876), 1, + STATE(1670), 1, sym_into, - ACTIONS(2616), 2, + ACTIONS(3006), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75256] = 4, + [61863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2606), 1, + aux_sym_insert_statement_token2, + STATE(1210), 1, + sym_into, + ACTIONS(2604), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, anon_sym_COMMA, - STATE(1360), 1, + STATE(1239), 1, + aux_sym_returning_repeat1, + STATE(1634), 1, + sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61899] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + STATE(1812), 1, + sym_into, + ACTIONS(3008), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [61919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + STATE(1250), 1, + sym__type, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + [61939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2909), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [61951] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + aux_sym_predefined_type_token1, + ACTIONS(3012), 1, + aux_sym_predefined_type_token2, + ACTIONS(3014), 1, + sym__identifier, + STATE(108), 1, + sym__type, + STATE(27), 2, + sym_predefined_type, + sym_identifier, + [61971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3016), 1, + aux_sym_predefined_type_token1, + ACTIONS(3018), 1, + aux_sym_predefined_type_token2, + STATE(853), 1, + sym__type, + STATE(861), 2, + sym_predefined_type, + sym_identifier, + [61991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1102), 1, + sym_join_type, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [62009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [62021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + STATE(1250), 1, + sym__type, + STATE(136), 2, + sym_predefined_type, + sym_identifier, + [62041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1057), 1, + sym_join_type, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [62059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + aux_sym_insert_statement_token2, + STATE(1181), 1, + sym_into, + ACTIONS(2121), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2446), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [62087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + aux_sym_predefined_type_token1, + ACTIONS(3026), 1, + aux_sym_predefined_type_token2, + ACTIONS(3028), 1, + sym__identifier, + STATE(410), 1, + sym__type, + STATE(223), 2, + sym_predefined_type, + sym_identifier, + [62119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3030), 1, + aux_sym_predefined_type_token1, + ACTIONS(3032), 1, + aux_sym_predefined_type_token2, + ACTIONS(3034), 1, + sym__identifier, + STATE(312), 1, + sym__type, + STATE(164), 2, + sym_predefined_type, + sym_identifier, + [62139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2685), 1, + aux_sym_insert_statement_token2, + STATE(1192), 1, + sym_into, + ACTIONS(2683), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62155] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2755), 1, + aux_sym_predefined_type_token1, + ACTIONS(2757), 1, + aux_sym_predefined_type_token2, + STATE(1937), 1, + sym__type, + STATE(16), 2, + sym_predefined_type, + sym_identifier, + [62175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, + anon_sym_COMMA, + STATE(1202), 1, aux_sym_update_statement_repeat2, - ACTIONS(2182), 4, + ACTIONS(2597), 4, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_returning_token1, aux_sym_where_filter_token1, - [75272] = 2, + [62191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 6, + ACTIONS(3039), 1, + aux_sym_predefined_type_token1, + ACTIONS(3041), 1, + aux_sym_predefined_type_token2, + ACTIONS(3043), 1, + sym__identifier, + STATE(240), 1, + sym__type, + STATE(123), 2, + sym_predefined_type, + sym_identifier, + [62211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_join_item_token3, + ACTIONS(2201), 1, + aux_sym_join_type_token1, + STATE(1083), 1, + sym_join_type, + ACTIONS(2203), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [62229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3045), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [75284] = 5, + [62241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1224), 1, - sym_join_type, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75302] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, anon_sym_COMMA, - STATE(1381), 1, + STATE(1186), 1, + aux_sym_returning_repeat1, + STATE(1804), 1, + sym_into, + ACTIONS(3047), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3049), 1, + aux_sym_predefined_type_token1, + ACTIONS(3051), 1, + aux_sym_predefined_type_token2, + ACTIONS(3053), 1, + sym__identifier, + STATE(411), 1, + sym__type, + STATE(214), 2, + sym_predefined_type, + sym_identifier, + [62281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1159), 1, + aux_sym_returning_repeat1, + STATE(1747), 1, + sym_into, + ACTIONS(3055), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_insert_statement_token2, + STATE(1176), 1, + sym_into, + ACTIONS(3020), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [62329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + STATE(1747), 1, + sym_into, + ACTIONS(3055), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + STATE(1804), 1, + sym_into, + ACTIONS(3047), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2207), 1, + aux_sym_insert_statement_token2, + STATE(1156), 1, + sym_into, + ACTIONS(2205), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + aux_sym_for_statement_token2, + [62397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + aux_sym_predefined_type_token1, + ACTIONS(2650), 1, + aux_sym_predefined_type_token2, + ACTIONS(3060), 1, + sym__identifier, + STATE(346), 1, + sym__type, + STATE(136), 2, + sym_predefined_type, + sym_identifier, + [62417] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1298), 1, + sym_returning, + STATE(1757), 1, + sym_into, + ACTIONS(3062), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(1252), 1, + sym_identifier, + STATE(1788), 1, + sym_if_exists, + ACTIONS(3064), 2, + aux_sym_alter_table_action_token2, + sym__constraint, + [62457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + anon_sym_COMMA, + STATE(1218), 1, aux_sym_with_query_repeat1, - ACTIONS(2625), 4, + ACTIONS(3071), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [75318] = 2, + [62473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75330] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1353), 1, - sym_into, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75344] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2627), 1, - aux_sym_predefined_type_token1, - ACTIONS(2629), 1, - aux_sym_predefined_type_token2, - ACTIONS(2631), 1, - sym__identifier, - STATE(438), 1, - sym__type, - STATE(255), 2, - sym_predefined_type, - sym_identifier, - [75364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2530), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [75376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [75388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, + ACTIONS(2199), 1, aux_sym_join_item_token3, - ACTIONS(1841), 1, + ACTIONS(2201), 1, aux_sym_join_type_token1, - STATE(1270), 1, + STATE(1082), 1, sym_join_type, - ACTIONS(1843), 3, + ACTIONS(2203), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - [75406] = 6, + [62491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - aux_sym_predefined_type_token1, - ACTIONS(2635), 1, - aux_sym_predefined_type_token2, - ACTIONS(2637), 1, - sym__identifier, - STATE(353), 1, - sym__type, - STATE(161), 2, - sym_predefined_type, - sym_identifier, - [75426] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - ACTIONS(2550), 1, - aux_sym_trigger_exec_token1, - STATE(2117), 1, - sym_with_query, - STATE(2307), 2, - sym_execute_statement, - sym_select_statement, - [75446] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - STATE(1930), 1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1310), 1, + sym_returning, + STATE(1673), 1, sym_into, - ACTIONS(2639), 2, + ACTIONS(3073), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75466] = 6, + [62511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2590), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2592), 1, - aux_sym_update_statement_token3, - STATE(1799), 1, - sym_alter_column_action, - ACTIONS(2641), 2, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + STATE(1677), 1, + sym_into, + ACTIONS(2941), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62531] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3075), 1, + aux_sym_predefined_type_token1, + ACTIONS(3077), 1, + aux_sym_predefined_type_token2, + ACTIONS(3079), 1, + sym__identifier, + STATE(264), 1, + sym__type, + STATE(125), 2, + sym_predefined_type, + sym_identifier, + [62551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 6, anon_sym_SEMI, anon_sym_COMMA, - [75486] = 5, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1246), 1, - sym_join_type, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75504] = 2, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1328), 1, + sym_returning, + STATE(1642), 1, + sym_into, + ACTIONS(2870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 6, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1211), 1, + aux_sym_returning_repeat1, + STATE(1677), 1, + sym_into, + ACTIONS(2941), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [62603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(3085), 1, + aux_sym_grant_roles_token2, + STATE(1695), 1, + sym_identifier, + ACTIONS(3083), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [62621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 6, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, aux_sym_for_statement_token2, - [75516] = 6, + [62633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, - aux_sym_predefined_type_token1, - ACTIONS(2645), 1, - aux_sym_predefined_type_token2, - ACTIONS(2647), 1, - sym__identifier, - STATE(471), 1, - sym__type, - STATE(294), 2, - sym_predefined_type, - sym_identifier, - [75536] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1367), 1, + ACTIONS(2244), 1, + aux_sym_insert_statement_token2, + STATE(1227), 1, sym_into, - ACTIONS(2295), 5, + ACTIONS(2242), 4, anon_sym_SEMI, anon_sym_RPAREN, - aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_returning_token1, - [75550] = 6, + [62649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1330), 1, - aux_sym_returning_repeat1, - STATE(1855), 1, + ACTIONS(2838), 1, + aux_sym_returning_token1, + STATE(1326), 1, + sym_returning, + STATE(1640), 1, sym_into, - ACTIONS(2513), 2, + ACTIONS(3087), 2, anon_sym_SEMI, anon_sym_RPAREN, - [75570] = 6, + [62669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, + ACTIONS(3089), 1, aux_sym_predefined_type_token1, - ACTIONS(2651), 1, + ACTIONS(3091), 1, aux_sym_predefined_type_token2, - ACTIONS(2653), 1, + ACTIONS(3093), 1, sym__identifier, - STATE(141), 1, + STATE(562), 1, sym__type, - STATE(40), 2, + STATE(485), 2, sym_predefined_type, sym_identifier, - [75590] = 2, + [62689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - aux_sym_for_statement_token2, - [75602] = 4, + ACTIONS(460), 1, + sym__identifier, + STATE(2080), 1, + sym_function_call, + STATE(2081), 1, + sym_identifier, + ACTIONS(3095), 2, + aux_sym_drop_function_statement_token1, + aux_sym_grant_targets_token6, + [62706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(3097), 5, anon_sym_COMMA, - STATE(1333), 1, - aux_sym_with_query_repeat1, - ACTIONS(2657), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, aux_sym_select_statement_token1, - [75618] = 6, + [62717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2526), 1, + ACTIONS(2372), 1, anon_sym_COMMA, - STATE(1336), 1, - aux_sym_returning_repeat1, - STATE(1802), 1, - sym_into, - ACTIONS(2277), 2, + ACTIONS(3099), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [75638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - aux_sym_join_item_token3, - ACTIONS(1841), 1, - aux_sym_join_type_token1, - STATE(1232), 1, - sym_join_type, - ACTIONS(1843), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - aux_sym_predefined_type_token1, - ACTIONS(2661), 1, - aux_sym_predefined_type_token2, - ACTIONS(2663), 1, - sym__identifier, - STATE(328), 1, - sym__type, - STATE(182), 2, - sym_predefined_type, - sym_identifier, - [75676] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, - sym__identifier, - ACTIONS(2665), 1, - anon_sym_RPAREN, - ACTIONS(2667), 1, - aux_sym_insert_items_token1, - STATE(1345), 1, - sym_identifier, - STATE(1525), 1, - sym_var_declaration, - [75695] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2669), 1, - anon_sym_SEMI, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - STATE(1638), 1, - sym_index_includes, - STATE(2156), 1, - sym_where_filter, - [75714] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - STATE(1802), 1, - sym_into, - ACTIONS(2277), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75731] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1850), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2673), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2675), 2, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(3101), 2, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75746] = 4, + [62734] = 4, ACTIONS(3), 1, sym_comment, - STATE(1799), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2641), 2, - anon_sym_SEMI, + ACTIONS(3105), 1, anon_sym_COMMA, - ACTIONS(2675), 2, + STATE(1234), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(3103), 3, + anon_sym_SEMI, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [75761] = 6, + [62749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(2128), 1, anon_sym_LPAREN, - ACTIONS(2677), 1, + ACTIONS(3108), 1, sym__identifier, - STATE(1189), 1, + STATE(1050), 1, sym_update_set, - STATE(2066), 1, + STATE(2035), 1, sym_identifier, - STATE(2068), 1, + STATE(2037), 1, sym__list_of_identifiers, - [75780] = 5, + [62768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2515), 1, - aux_sym_returning_token1, - STATE(1855), 1, - sym_into, - ACTIONS(2513), 2, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1134), 1, + sym_update_set, + STATE(2037), 1, + sym__list_of_identifiers, + STATE(2117), 1, + sym_identifier, + [62787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1134), 1, + sym_update_set, + STATE(2035), 1, + sym_identifier, + STATE(2037), 1, + sym__list_of_identifiers, + [62806] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_returning_repeat1, + ACTIONS(3110), 3, anon_sym_SEMI, anon_sym_RPAREN, - [75797] = 2, + aux_sym_insert_statement_token2, + [62821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 5, + ACTIONS(3112), 1, anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + ACTIONS(2521), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [62836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(3115), 1, + anon_sym_DOLLAR, + STATE(1256), 1, + sym_dollar_quote, + STATE(1938), 2, + sym_block, + sym_string, + [62853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 1, + anon_sym_LPAREN, + ACTIONS(3117), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [62866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1035), 1, + sym_update_set, + STATE(2035), 1, + sym_identifier, + STATE(2037), 1, + sym__list_of_identifiers, + [62885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3121), 1, + anon_sym_SEMI, + ACTIONS(3123), 1, + anon_sym_COMMA, + STATE(1284), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(3125), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [62902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3127), 1, + anon_sym_SEMI, + STATE(1294), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(3129), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [62919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2949), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_returning_repeat1, + ACTIONS(3131), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [62934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + aux_sym_constraint_when_token1, + STATE(1531), 1, + sym_constraint_when, + ACTIONS(3133), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [62949] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(1241), 1, + sym_identifier, + STATE(1243), 1, + sym_drop_function_item, + STATE(1794), 1, + sym_if_exists, + [62968] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1950), 1, + sym_trigger_event, + ACTIONS(3135), 4, aux_sym_update_statement_token1, aux_sym_insert_statement_token1, aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [75808] = 5, + aux_sym_trigger_event_token1, + [62981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, - aux_sym_body_token1, - ACTIONS(2683), 1, - aux_sym_declarations_token1, - STATE(1971), 1, - sym_body, - STATE(1514), 2, - sym_declarations, - aux_sym_block_repeat1, - [75825] = 2, + ACTIONS(2893), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [62992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 5, + ACTIONS(3137), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_insert_items_token1, anon_sym_COLON_EQ, - [75836] = 6, + [63003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2687), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2814), 1, + aux_sym_returning_token1, + STATE(1714), 1, + sym_into, + ACTIONS(2714), 2, anon_sym_SEMI, - STATE(1692), 1, - sym_index_includes, - STATE(2113), 1, - sym_where_filter, - [75855] = 5, + anon_sym_RPAREN, + [63020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, - aux_sym_for_statement_token3, - ACTIONS(2694), 1, - aux_sym_if_statement_token5, - STATE(1396), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2691), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [75872] = 6, + STATE(1711), 1, + sym_alter_table_fk_ref_action, + ACTIONS(2951), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(3139), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 1, + ACTIONS(2589), 1, aux_sym_if_statement_token1, - ACTIONS(2159), 1, + ACTIONS(2591), 1, sym__identifier, - STATE(1316), 1, + STATE(1190), 1, sym_identifier, - STATE(1777), 1, + STATE(1553), 1, sym_if_not_exists, - STATE(1799), 1, + STATE(1711), 1, sym_table_column_item, - [75891] = 5, + [63054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, + ACTIONS(3071), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [63065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3141), 1, aux_sym_body_token1, - ACTIONS(2683), 1, + ACTIONS(3143), 1, aux_sym_declarations_token1, - STATE(1892), 1, + STATE(1746), 1, sym_body, - STATE(1393), 2, + STATE(1361), 2, sym_declarations, aux_sym_block_repeat1, - [75908] = 4, + [63082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - ACTIONS(2122), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [75923] = 3, + ACTIONS(3141), 1, + aux_sym_body_token1, + ACTIONS(3143), 1, + aux_sym_declarations_token1, + STATE(1762), 1, + sym_body, + STATE(1255), 2, + sym_declarations, + aux_sym_block_repeat1, + [63099] = 6, ACTIONS(3), 1, sym_comment, - STATE(2162), 1, - sym_trigger_event, - ACTIONS(2699), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [75936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2703), 1, - anon_sym_LPAREN, - ACTIONS(2701), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75949] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2705), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_index_includes, - STATE(2139), 1, - sym_where_filter, - [75968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - aux_sym_constraint_when_token1, - STATE(1659), 1, - sym_constraint_when, - ACTIONS(2707), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [75983] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_SEMI, - ACTIONS(2711), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2713), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(362), 1, sym__identifier, - ACTIONS(2534), 1, + ACTIONS(2967), 1, aux_sym_if_statement_token1, - STATE(1419), 1, - sym_identifier, - STATE(1520), 1, - sym_drop_function_item, - STATE(1896), 1, - sym_if_exists, - [76019] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_SEMI, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2717), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2719), 1, - anon_sym_SEMI, - STATE(1667), 1, - sym_index_includes, - STATE(2060), 1, - sym_where_filter, - [76055] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_SEMI, - STATE(1418), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2717), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, + ACTIONS(2985), 1, aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76083] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2723), 1, - anon_sym_SEMI, - STATE(1588), 1, - sym_index_includes, - STATE(2376), 1, - sym_where_filter, - [76102] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2577), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2581), 1, - aux_sym_if_statement_token1, - STATE(1683), 1, + STATE(1612), 1, sym_if_not_exists, - STATE(2037), 1, + STATE(2007), 1, sym_identifier, - [76121] = 6, + [63118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, + ACTIONS(362), 1, sym__identifier, - STATE(1207), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76140] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_SQUOTE, - ACTIONS(2677), 1, - sym__identifier, - ACTIONS(2725), 1, - anon_sym_SEMI, - STATE(1882), 1, - sym_identifier, - STATE(1883), 1, - sym_string, - [76159] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76170] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1206), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76189] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1779), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2586), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2675), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - STATE(2285), 1, - sym_identifier, - STATE(2295), 1, - sym_function_call, - ACTIONS(2729), 2, - aux_sym_drop_function_statement_token1, - aux_sym_grant_targets_token6, - [76221] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(2731), 1, - anon_sym_SEMI, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2733), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2737), 1, - anon_sym_LPAREN, - ACTIONS(2735), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_SEMI, - STATE(1404), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2741), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2745), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2743), 3, - anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76294] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(2748), 1, - anon_sym_SEMI, - STATE(1406), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2750), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2375), 1, - aux_sym_returning_token1, - STATE(1952), 1, - sym_into, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - aux_sym_for_statement_token3, - ACTIONS(2756), 1, - aux_sym_if_statement_token5, - STATE(1396), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2754), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [76345] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2294), 1, - sym_trigger_event, - ACTIONS(2699), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [76358] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2534), 1, - aux_sym_if_statement_token1, - STATE(1419), 1, - sym_identifier, - STATE(1420), 1, - sym_drop_function_item, - STATE(1896), 1, - sym_if_exists, - [76377] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1034), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [76392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2557), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76403] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1225), 1, - sym_update_set, - STATE(2068), 1, - sym__list_of_identifiers, - STATE(2271), 1, - sym_identifier, - [76422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1294), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76441] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1398), 1, - sym_dollar_quote, - STATE(2260), 2, - sym_block, - sym_string, - [76458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1294), 1, - sym_update_set, - STATE(2068), 1, - sym__list_of_identifiers, - STATE(2271), 1, - sym_identifier, - [76488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2762), 1, - anon_sym_SEMI, - STATE(1705), 1, - sym_index_includes, - STATE(1998), 1, - sym_where_filter, - [76507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2581), 1, - aux_sym_if_statement_token1, - ACTIONS(2764), 1, - aux_sym_insert_conflict_token1, - STATE(1724), 1, - sym_if_not_exists, - STATE(2145), 1, - sym_identifier, - [76526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2766), 1, - aux_sym_returning_token1, - STATE(1968), 1, - sym_into, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76543] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - aux_sym_update_statement_token3, - ACTIONS(2772), 1, - aux_sym_fk_ref_action_token1, - STATE(1079), 1, - sym_fk_ref_action, - ACTIONS(2768), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76560] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2671), 1, - aux_sym_index_includes_token1, - ACTIONS(2774), 1, - anon_sym_SEMI, - STATE(1776), 1, - sym_index_includes, - STATE(2301), 1, - sym_where_filter, - [76579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1398), 1, - sym_dollar_quote, - STATE(2193), 2, - sym_block, - sym_string, - [76607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - ACTIONS(2363), 1, - aux_sym_returning_token1, - STATE(1877), 1, - sym_into, - ACTIONS(2216), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76635] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1193), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76654] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2778), 1, + ACTIONS(3145), 1, aux_sym_alter_table_action_token2, - ACTIONS(2780), 1, + ACTIONS(3147), 1, aux_sym_alter_table_rename_column_token2, - ACTIONS(2782), 1, + ACTIONS(3149), 1, sym__constraint, - STATE(2199), 1, + STATE(1909), 1, sym_identifier, - [76673] = 6, + [63137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, + aux_sym_create_index_statement_token1, + ACTIONS(3153), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(3155), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(3157), 1, + aux_sym_table_constraint_ty_token4, + STATE(1273), 1, + sym_table_constraint_ty, + [63156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(3115), 1, + anon_sym_DOLLAR, + STATE(1256), 1, + sym_dollar_quote, + STATE(1997), 2, + sym_block, + sym_string, + [63173] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2784), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2786), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2788), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2790), 1, - aux_sym_table_constraint_ty_token4, - STATE(1403), 1, - sym_table_constraint_ty, - [76692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 1, - aux_sym_constraint_when_token1, - STATE(1762), 1, - sym_constraint_when, - ACTIONS(2792), 3, + aux_sym_where_filter_token1, + ACTIONS(3159), 1, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [76707] = 4, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + STATE(1457), 1, + sym_index_includes, + STATE(2169), 1, + sym_where_filter, + [63192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1399), 1, - aux_sym_returning_repeat1, - ACTIONS(2794), 3, + ACTIONS(2920), 5, anon_sym_SEMI, anon_sym_RPAREN, aux_sym_insert_statement_token2, - [76722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2526), 1, - anon_sym_COMMA, - STATE(1448), 1, - aux_sym_returning_repeat1, - ACTIONS(2796), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [76737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_COMMA, - STATE(1450), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1924), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76751] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - aux_sym_index_col_nulls_token1, - STATE(1817), 1, - sym_index_col_nulls, - ACTIONS(2801), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [76765] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2803), 1, - aux_sym_grant_privileges_token1, - STATE(1598), 1, - sym_identifier, - STATE(2302), 1, - sym_grant_privileges, - [76781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2805), 1, - aux_sym_update_statement_token1, - ACTIONS(2807), 1, - aux_sym_insert_statement_token1, - ACTIONS(2809), 1, - aux_sym_delete_statement_token1, - ACTIONS(2811), 1, - aux_sym_select_statement_token1, - [76797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2534), 1, - aux_sym_if_statement_token1, - STATE(1423), 1, - sym_identifier, - STATE(1821), 1, - sym_if_exists, - [76813] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2813), 1, - aux_sym_update_statement_token2, - ACTIONS(2815), 1, - aux_sym_update_statement_token3, - STATE(2262), 1, - sym_identifier, - [76829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - STATE(1840), 1, - sym_if_not_exists, - STATE(2246), 1, - sym_identifier, - [76845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - STATE(941), 1, - sym_identifier, - STATE(1861), 1, - sym_if_not_exists, - [76861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2534), 1, - aux_sym_if_statement_token1, - STATE(1152), 1, - sym_identifier, - STATE(1895), 1, - sym_if_exists, - [76877] = 4, - ACTIONS(2817), 1, - aux_sym_psql_statement_token1, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2821), 1, - sym__identifier, - STATE(1488), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [76891] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2823), 1, - anon_sym_SQUOTE, - STATE(1493), 1, - aux_sym_string_repeat1, - ACTIONS(2825), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76905] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1353), 1, - sym_into, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76919] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2827), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76933] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2831), 1, - anon_sym_SQUOTE, - STATE(1462), 1, - aux_sym_string_repeat1, - ACTIONS(2833), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76947] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2835), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76961] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2837), 1, - anon_sym_SQUOTE, - STATE(1464), 1, - aux_sym_string_repeat1, - ACTIONS(2839), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76975] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [76989] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2843), 1, - anon_sym_SQUOTE, - STATE(1466), 1, - aux_sym_string_repeat1, - ACTIONS(2845), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - STATE(1450), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1988), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - STATE(2055), 1, - sym_identifier, - ACTIONS(2849), 2, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - [77031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - STATE(1450), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1992), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - STATE(1468), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1992), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77059] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2851), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77073] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2853), 1, - anon_sym_SQUOTE, - STATE(1472), 1, - aux_sym_string_repeat1, - ACTIONS(2855), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77087] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - STATE(1470), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1998), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77101] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2573), 1, - aux_sym_schema_role_token1, - STATE(1681), 1, - sym_identifier, - STATE(2054), 1, - sym_schema_role, - [77117] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2857), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77131] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2859), 1, - anon_sym_SQUOTE, - STATE(1476), 1, - aux_sym_string_repeat1, - ACTIONS(2861), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77145] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1400), 1, - sym_trigger_when, - ACTIONS(2863), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [77157] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2865), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77171] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2867), 1, - anon_sym_SQUOTE, - STATE(1479), 1, - aux_sym_string_repeat1, - ACTIONS(2869), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77185] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - STATE(1992), 1, - sym_if_not_exists, - STATE(2059), 1, - sym_identifier, - [77201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - STATE(938), 1, - sym_identifier, - STATE(1982), 1, - sym_if_not_exists, - [77217] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2871), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2873), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [77241] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2875), 1, - anon_sym_SQUOTE, - STATE(1483), 1, - aux_sym_string_repeat1, - ACTIONS(2877), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77255] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77269] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_SQUOTE, - STATE(1486), 1, - aux_sym_string_repeat1, - ACTIONS(2883), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77283] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2885), 1, - aux_sym_psql_statement_token1, - ACTIONS(2887), 1, - sym__identifier, - STATE(1488), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [77297] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2890), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77311] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(2089), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - [77327] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2892), 1, - anon_sym_SQUOTE, - STATE(1489), 1, - aux_sym_string_repeat1, - ACTIONS(2894), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [77351] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2898), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77365] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2900), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1368), 1, - sym_into, - ACTIONS(1783), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1905), 1, - sym_returning, - ACTIONS(2902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77407] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2904), 1, - anon_sym_SQUOTE, - STATE(1494), 1, - aux_sym_string_repeat1, - ACTIONS(2906), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2908), 1, - aux_sym_update_statement_token2, - ACTIONS(2910), 1, - aux_sym_update_statement_token3, - STATE(2070), 1, - sym_identifier, - [77437] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2912), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [77461] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2914), 1, - anon_sym_SQUOTE, - STATE(1499), 1, - aux_sym_string_repeat1, - ACTIONS(2916), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77475] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77489] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_SQUOTE, - STATE(1502), 1, - aux_sym_string_repeat1, - ACTIONS(2922), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77503] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1380), 1, - sym_into, - ACTIONS(2530), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77531] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_SQUOTE, - STATE(1504), 1, - aux_sym_string_repeat1, - ACTIONS(2928), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2930), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [77555] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1426), 1, - sym_trigger_when, - ACTIONS(2863), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [77567] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2157), 1, - aux_sym_if_statement_token1, - STATE(1894), 1, - sym_if_not_exists, - STATE(2163), 1, - sym_identifier, - [77583] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2932), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77597] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2934), 1, - anon_sym_SQUOTE, - STATE(1510), 1, - aux_sym_string_repeat1, - ACTIONS(2936), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2938), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [77621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2940), 1, - anon_sym_COMMA, - STATE(1513), 1, - aux_sym_returning_repeat1, - ACTIONS(2122), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 1, - aux_sym_body_token1, - ACTIONS(2945), 1, - aux_sym_declarations_token1, - STATE(1514), 2, - sym_declarations, - aux_sym_block_repeat1, - [77649] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2948), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77663] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2950), 1, - anon_sym_SQUOTE, - STATE(1515), 1, - aux_sym_string_repeat1, - ACTIONS(2952), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77677] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(2954), 1, - sym__identifier, - STATE(881), 1, - sym_identifier, - STATE(914), 1, - sym__list_of_identifiers, - [77693] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2956), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2958), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1340), 1, - sym_into, - ACTIONS(1801), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [77731] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1958), 1, - sym_returning, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2961), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [77755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1834), 1, - sym_returning, - ACTIONS(2353), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1367), 1, - sym_into, - ACTIONS(2295), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77783] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - anon_sym_COMMA, - ACTIONS(2965), 1, - anon_sym_RPAREN, - ACTIONS(2967), 1, - aux_sym_insert_items_token1, - STATE(1535), 1, - aux_sym_create_type_statement_repeat2, - [77799] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1774), 1, - sym_index_col, - [77815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1811), 1, - sym_into, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - STATE(2117), 1, - sym_with_query, - STATE(2165), 1, - sym_select_statement, - [77845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2534), 1, - aux_sym_if_statement_token1, - STATE(1416), 1, - sym_identifier, - STATE(1801), 1, - sym_if_exists, - [77861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2287), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2289), 1, - aux_sym_alter_table_action_token1, - STATE(1792), 1, - sym_alter_table_action, - [77877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1346), 1, - sym_into, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [77901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - STATE(1546), 1, - aux_sym_returning_repeat1, - ACTIONS(2796), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1846), 1, - sym_returning, - ACTIONS(2365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77929] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - anon_sym_COMMA, - ACTIONS(2977), 1, - anon_sym_RPAREN, - ACTIONS(2979), 1, - aux_sym_insert_items_token1, - STATE(1549), 1, - aux_sym_create_type_statement_repeat2, - [77945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [77955] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1723), 1, - sym_index_col, - [77971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [77981] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, aux_sym_insert_conflict_token1, - ACTIONS(2989), 1, - aux_sym_insert_conflict_token3, - STATE(2056), 1, - sym_conflict_target, - [77997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1699), 1, - sym_index_col, - [78013] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1961), 1, - sym_into, - ACTIONS(2395), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1980), 1, - sym_into, - ACTIONS(2548), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(910), 1, - aux_sym_index_using_token1, - STATE(1985), 1, - sym_execute_using, - ACTIONS(2991), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [78055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1375), 1, - sym_into, - ACTIONS(1902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, aux_sym_returning_token1, - STATE(1949), 1, - sym_returning, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78083] = 4, + [63203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - STATE(1513), 1, - aux_sym_returning_repeat1, - ACTIONS(2794), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1931), 1, - sym_returning, - ACTIONS(2419), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2954), 1, - sym__identifier, - STATE(1296), 2, - sym_string, - sym_identifier, - [78125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 1, - anon_sym_COMMA, - STATE(1549), 1, - aux_sym_create_type_statement_repeat2, - ACTIONS(2996), 2, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - [78139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1929), 1, + ACTIONS(2812), 1, + aux_sym_returning_token1, + STATE(1634), 1, sym_into, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63220] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1633), 1, + sym_alter_table_fk_ref_action, ACTIONS(2998), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3000), 4, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [78163] = 4, + ACTIONS(3139), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3163), 1, + anon_sym_SEMI, + STATE(1462), 1, + sym_index_includes, + STATE(2161), 1, + sym_where_filter, + [63254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + ACTIONS(3108), 1, + sym__identifier, + ACTIONS(3165), 1, + anon_sym_SEMI, + STATE(1795), 1, + sym_identifier, + STATE(1796), 1, + sym_string, + [63273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3167), 5, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(1349), 1, + aux_sym_insert_conflict_token1, + aux_sym_returning_token1, + [63284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3169), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [63295] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1882), 1, + sym_trigger_event, + ACTIONS(3135), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [63308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(1469), 1, + sym_index_includes, + STATE(2233), 1, + sym_where_filter, + [63327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1046), 1, + sym_update_set, + STATE(2035), 1, + sym_identifier, + STATE(2037), 1, + sym__list_of_identifiers, + [63346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + ACTIONS(2794), 1, + aux_sym_returning_token1, + STATE(1790), 1, sym_into, - ACTIONS(2187), 2, + ACTIONS(2656), 2, anon_sym_SEMI, anon_sym_RPAREN, - [78177] = 5, + [63363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1657), 1, - sym_index_col, - [78193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1918), 1, - sym_index_col, - [78209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - aux_sym_index_col_nulls_token1, - STATE(1909), 1, - sym_index_col_nulls, - ACTIONS(3002), 2, + ACTIONS(2577), 1, + aux_sym_constraint_when_token1, + STATE(1605), 1, + sym_constraint_when, + ACTIONS(3173), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [78223] = 2, + [63378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 4, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3175), 1, + anon_sym_SEMI, + STATE(1578), 1, + sym_index_includes, + STATE(2039), 1, + sym_where_filter, + [63397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1091), 1, + sym_update_set, + STATE(2037), 1, + sym__list_of_identifiers, + STATE(2117), 1, + sym_identifier, + [63416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2967), 1, + aux_sym_if_statement_token1, + ACTIONS(3177), 1, + aux_sym_insert_conflict_token1, + STATE(1440), 1, + sym_if_not_exists, + STATE(1871), 1, + sym_identifier, + [63435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(1482), 1, + sym_index_includes, + STATE(2123), 1, + sym_where_filter, + [63454] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3183), 1, + aux_sym_update_statement_token3, + ACTIONS(3185), 1, + aux_sym_fk_ref_action_token1, + STATE(923), 1, + sym_fk_ref_action, + ACTIONS(3181), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3187), 1, + aux_sym_for_statement_token3, + ACTIONS(3191), 1, + aux_sym_if_statement_token5, + STATE(1283), 1, + aux_sym_if_statement_repeat1, + ACTIONS(3189), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [63488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(1241), 1, + sym_identifier, + STATE(1419), 1, + sym_drop_function_item, + STATE(1794), 1, + sym_if_exists, + [63507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + sym__identifier, + ACTIONS(3193), 1, + anon_sym_RPAREN, + ACTIONS(3195), 1, + aux_sym_insert_items_token1, + STATE(1187), 1, + sym_identifier, + STATE(1409), 1, + sym_var_declaration, + [63526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [63537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3199), 1, + aux_sym_for_statement_token3, + ACTIONS(3204), 1, + aux_sym_if_statement_token5, + STATE(1283), 1, + aux_sym_if_statement_repeat1, + ACTIONS(3201), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [63554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3123), 1, + anon_sym_COMMA, + ACTIONS(3206), 1, + anon_sym_SEMI, + STATE(1234), 1, + aux_sym_drop_function_statement_repeat1, + ACTIONS(3208), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(889), 1, + sym_identifier, + ACTIONS(2503), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [63586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 1, + anon_sym_LPAREN, + ACTIONS(3210), 4, anon_sym_SEMI, anon_sym_COMMA, aux_sym_drop_type_statement_token3, aux_sym_drop_type_statement_token4, - [78233] = 4, + [63599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + STATE(1679), 1, + sym_alter_table_fk_ref_action, + ACTIONS(3139), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + ACTIONS(3214), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [63614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3216), 1, + anon_sym_SEMI, + STATE(1544), 1, + sym_index_includes, + STATE(2070), 1, + sym_where_filter, + [63633] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3161), 1, + aux_sym_index_includes_token1, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(1506), 1, + sym_index_includes, + STATE(2101), 1, + sym_where_filter, + [63652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1876), 1, + ACTIONS(2943), 1, + aux_sym_returning_token1, + STATE(1677), 1, sym_into, - ACTIONS(2616), 2, + ACTIONS(2941), 2, anon_sym_SEMI, anon_sym_RPAREN, - [78247] = 4, + [63669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(3220), 5, + anon_sym_COMMA, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [63680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, aux_sym_insert_statement_token2, - STATE(1875), 1, + ACTIONS(3222), 1, + aux_sym_returning_token1, + STATE(1747), 1, sym_into, - ACTIONS(2559), 2, + ACTIONS(3055), 2, anon_sym_SEMI, anon_sym_RPAREN, - [78261] = 4, + [63697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, + anon_sym_SEMI, + STATE(1233), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(3226), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63714] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, + anon_sym_SEMI, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(3226), 2, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [63731] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1033), 1, + sym_update_set, + STATE(2035), 1, + sym_identifier, + STATE(2037), 1, + sym__list_of_identifiers, + [63750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1777), 1, + sym_returning, + ACTIONS(2848), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 4, + anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - STATE(1865), 1, + aux_sym_returning_token1, + [63774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1776), 1, + sym_into, + ACTIONS(3228), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1210), 1, + sym_into, + ACTIONS(2604), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63802] = 4, + ACTIONS(3230), 1, + anon_sym_SQUOTE, + ACTIONS(3234), 1, + sym_comment, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [63816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3236), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [63826] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2832), 1, + aux_sym_trigger_cond_token1, + STATE(1767), 1, + sym_trigger_cond, + STATE(2104), 1, + sym_trigger_exec, + [63842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 1, + aux_sym_index_col_nulls_token1, + STATE(1764), 1, + sym_index_col_nulls, + ACTIONS(3238), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [63856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1179), 1, + sym_into, + ACTIONS(2446), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1157), 1, + sym_into, + ACTIONS(2112), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1809), 1, + sym_returning, + ACTIONS(2820), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1757), 1, + sym_into, + ACTIONS(3062), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1756), 1, + sym_into, + ACTIONS(3240), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(3242), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [63940] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1744), 1, + sym_into, + ACTIONS(3244), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [63954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3246), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [63964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3248), 1, + aux_sym_update_statement_token2, + ACTIONS(3250), 1, + aux_sym_update_statement_token3, + STATE(2050), 1, + sym_identifier, + [63980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(3252), 1, + sym__identifier, + STATE(1121), 2, + sym_string, + sym_identifier, + [63994] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3254), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + ACTIONS(2832), 1, + aux_sym_trigger_cond_token1, + STATE(1739), 1, + sym_trigger_cond, + STATE(2085), 1, + sym_trigger_exec, + [64024] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3256), 1, + anon_sym_SQUOTE, + STATE(1300), 1, + aux_sym_string_repeat1, + ACTIONS(3258), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64038] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3260), 1, + anon_sym_SQUOTE, + STATE(1314), 1, + aux_sym_string_repeat1, + ACTIONS(3262), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1541), 1, + sym_index_col, + [64068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3268), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [64078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3270), 1, + anon_sym_COMMA, + STATE(1320), 1, + aux_sym_create_type_statement_repeat2, + ACTIONS(3273), 2, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [64092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1699), 1, + sym_returning, + ACTIONS(2790), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3275), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [64116] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3277), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1196), 1, + sym_into, + ACTIONS(2361), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64144] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3279), 1, + anon_sym_SQUOTE, + STATE(1323), 1, + aux_sym_string_repeat1, + ACTIONS(3281), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1675), 1, + sym_into, + ACTIONS(3283), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1673), 1, + sym_into, + ACTIONS(3073), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64186] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1670), 1, sym_into, ACTIONS(3006), 2, anon_sym_SEMI, anon_sym_RPAREN, - [78275] = 4, + [64200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1326), 1, - sym_into, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 4, - anon_sym_SEMI, + ACTIONS(2918), 1, + aux_sym_index_col_nulls_token1, + STATE(1655), 1, + sym_index_col_nulls, + ACTIONS(3285), 2, anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [78299] = 4, + anon_sym_RPAREN, + [64214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1814), 1, - sym_returning, - ACTIONS(2369), 2, + ACTIONS(3287), 1, + anon_sym_COMMA, + STATE(1413), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2384), 2, anon_sym_SEMI, anon_sym_RPAREN, - [78313] = 2, + [64228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 4, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1480), 1, + sym_index_col, + [64244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1646), 1, + sym_index_col, + [64260] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1603), 1, + sym_index_col, + [64276] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64290] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3291), 1, + anon_sym_SQUOTE, + STATE(1334), 1, + aux_sym_string_repeat1, + ACTIONS(3293), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64304] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3295), 1, + anon_sym_SQUOTE, + STATE(1338), 1, + aux_sym_string_repeat1, + ACTIONS(3297), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_constraint_when_token1, - [78323] = 5, - ACTIONS(3), 1, + [64328] = 4, + ACTIONS(3234), 1, sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1585), 1, - sym_index_col, - [78339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [78349] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2441), 1, - aux_sym_trigger_cond_token1, - STATE(1913), 1, - sym_trigger_cond, - STATE(2280), 1, - sym_trigger_exec, - [78365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, + ACTIONS(3301), 1, anon_sym_SQUOTE, - ACTIONS(2954), 1, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64342] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + ACTIONS(3252), 1, sym__identifier, - STATE(1295), 2, + STATE(1123), 2, sym_string, sym_identifier, - [78379] = 2, - ACTIONS(3), 1, + [64356] = 4, + ACTIONS(3234), 1, sym_comment, - ACTIONS(3014), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [78389] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1922), 1, - sym_into, - ACTIONS(3016), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(3018), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [78417] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2441), 1, - aux_sym_trigger_cond_token1, - STATE(1833), 1, - sym_trigger_cond, - STATE(2143), 1, - sym_trigger_exec, - [78433] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1318), 1, - sym_into, - ACTIONS(2026), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1863), 1, - sym_into, - ACTIONS(3020), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 1, - aux_sym_insert_statement_token2, - STATE(1854), 1, - sym_into, - ACTIONS(2544), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1860), 1, - sym_returning, - ACTIONS(2421), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78489] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1275), 1, - sym_identifier, - STATE(1755), 1, - sym_index_col, - [78505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [78518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3024), 1, - aux_sym_insert_items_token1, - ACTIONS(3026), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3028), 1, - aux_sym_alter_column_action_token3, - [78531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1398), 1, - sym_dollar_quote, - STATE(2313), 1, - sym_block, - [78544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 1, - sym__identifier, - STATE(1459), 2, - sym_identifier, - aux_sym_psql_statement_repeat1, - [78555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1363), 1, - sym_with_query_item, - STATE(1602), 1, - sym_identifier, - [78568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(2530), 1, - aux_sym_for_statement_token2, - STATE(1380), 1, - sym_into, - [78581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1902), 1, - aux_sym_for_statement_token2, - STATE(1375), 1, - sym_into, - [78594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2269), 1, - sym_function_call, - STATE(2285), 1, - sym_identifier, - [78607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RPAREN, - STATE(1754), 1, - aux_sym_create_index_statement_repeat1, - [78620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [78633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(2187), 1, - aux_sym_for_statement_token2, - STATE(1349), 1, - sym_into, - [78646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2774), 1, - anon_sym_SEMI, - STATE(2301), 1, - sym_where_filter, - [78659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1829), 1, - sym_function_signature, - STATE(1837), 1, - sym_identifier, - [78672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1346), 1, - sym_into, - [78685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_SEMI, - ACTIONS(2498), 1, - aux_sym_function_run_as_token1, - STATE(2392), 1, - sym_function_run_as, - [78698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(2026), 1, - aux_sym_for_statement_token2, - STATE(1318), 1, - sym_into, - [78711] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3036), 3, - aux_sym_create_table_statement_token1, - aux_sym_grant_targets_token5, - sym_unlogged, - [78720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - aux_sym_create_table_statement_token1, - ACTIONS(3040), 1, - aux_sym_grant_targets_token5, - ACTIONS(3042), 1, - sym_unlogged, - [78733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - STATE(2167), 1, - sym_identifier, - [78746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_create_type_statement_repeat1, - [78759] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1326), 1, - sym_into, - [78772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, - aux_sym_insert_conflict_token1, - STATE(1641), 1, - aux_sym_drop_type_statement_repeat1, - [78785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3055), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_update_set_repeat1, - [78798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_COMMA, - ACTIONS(3060), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_update_set_repeat1, - [78811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3064), 1, - aux_sym_index_using_token1, - STATE(900), 1, - sym_join_condition, - [78824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - ACTIONS(3066), 1, - aux_sym_update_statement_token2, - STATE(2020), 1, - sym__list_of_identifiers, - [78837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3068), 1, - aux_sym_into_token1, - STATE(986), 1, - sym_identifier, - [78850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1340), 1, - sym_into, - [78863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - aux_sym_grant_targets_token4, - ACTIONS(3070), 1, - anon_sym_COMMA, - STATE(1605), 1, - aux_sym_drop_type_statement_repeat1, - [78876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3064), 1, - aux_sym_index_using_token1, - ACTIONS(3073), 1, - aux_sym_insert_conflict_token1, - STATE(900), 1, - sym_join_condition, - [78889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3075), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [78902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3077), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [78915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(1783), 1, - aux_sym_for_statement_token2, - STATE(1368), 1, - sym_into, - [78928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_SEMI, - ACTIONS(3081), 1, - anon_sym_COMMA, - STATE(1611), 1, - aux_sym_grant_roles_repeat1, - [78941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_SEMI, - ACTIONS(3085), 1, - anon_sym_COMMA, - STATE(1611), 1, - aux_sym_grant_roles_repeat1, - [78954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3088), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [78967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - STATE(1353), 1, - sym_into, - [78980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3090), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [78993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3094), 1, - anon_sym_RPAREN, - STATE(1722), 1, - aux_sym_grant_function_repeat1, - [79006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3094), 1, - anon_sym_RPAREN, - STATE(1718), 1, - aux_sym_grant_function_repeat1, - [79019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3096), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3100), 1, - anon_sym_SEMI, - ACTIONS(3102), 1, - aux_sym_schema_role_token1, - STATE(2054), 1, - sym_schema_role, - [79058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(3104), 1, - aux_sym_into_token1, - STATE(1474), 1, - sym_identifier, - [79071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79093] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3110), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2577), 1, - aux_sym_insert_conflict_token1, - STATE(2037), 1, - sym_identifier, - [79119] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_COMMA, - ACTIONS(3114), 1, - anon_sym_RPAREN, - STATE(1630), 1, - aux_sym_create_table_statement_repeat1, - [79132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3116), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3118), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79167] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3122), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79180] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_COMMA, - ACTIONS(3124), 1, - anon_sym_RPAREN, - STATE(1730), 1, - aux_sym_create_table_statement_repeat1, - [79193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3126), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1837), 1, - sym_identifier, - STATE(1984), 1, - sym_function_signature, - [79219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3134), 1, - anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RPAREN, - STATE(1636), 1, - aux_sym_insert_values_repeat1, - [79267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3139), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(3141), 1, - anon_sym_SEMI, - STATE(2245), 1, - sym_where_filter, - [79293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3112), 1, - anon_sym_COMMA, - ACTIONS(3114), 1, - anon_sym_RPAREN, - STATE(1730), 1, - aux_sym_create_table_statement_repeat1, - [79319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, - aux_sym_insert_conflict_token1, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - [79332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79354] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3151), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 1, - aux_sym_trigger_scope_token2, - ACTIONS(3153), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [79378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1429), 1, - sym_with_query_item, - STATE(1602), 1, - sym_identifier, - [79391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3157), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3163), 1, - aux_sym_with_query_item_token1, - [79417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 1, - anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [79430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, - anon_sym_RPAREN, - ACTIONS(2677), 1, - sym__identifier, - STATE(1709), 1, - sym_identifier, - [79443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2723), 1, - anon_sym_SEMI, - STATE(2376), 1, - sym_where_filter, - [79456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_LPAREN, - ACTIONS(3176), 1, - aux_sym_index_using_token1, - STATE(2377), 1, - sym_index_using, - [79491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3178), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RPAREN, - STATE(1586), 1, - aux_sym_create_index_statement_repeat1, - [79530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [79543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3184), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [79552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3190), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym_COMMA, - ACTIONS(3194), 1, - anon_sym_RPAREN, - STATE(1694), 1, - aux_sym_create_type_statement_repeat2, - [79600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3196), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3198), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_create_type_statement_repeat1, - [79626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3202), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [79639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2687), 1, - anon_sym_SEMI, - STATE(2113), 1, - sym_where_filter, - [79652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_RPAREN, - STATE(1599), 1, - aux_sym_update_set_repeat1, - [79665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_update_set_repeat1, - [79678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3208), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3210), 1, - anon_sym_SEMI, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3214), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3218), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79761] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_SEMI, - STATE(1610), 1, - aux_sym_grant_roles_repeat1, - [79774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3220), 1, - anon_sym_SEMI, - STATE(1611), 1, - aux_sym_grant_roles_repeat1, - [79787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3224), 1, - anon_sym_RPAREN, - STATE(1616), 1, - aux_sym_grant_function_repeat1, - [79813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3102), 1, - aux_sym_schema_role_token1, - ACTIONS(3226), 1, - anon_sym_SEMI, - STATE(2138), 1, - sym_schema_role, - [79826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3228), 1, - anon_sym_COMMA, - ACTIONS(3231), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1682), 1, - aux_sym_grant_targets_repeat1, - [79839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2764), 1, - aux_sym_insert_conflict_token1, - STATE(2145), 1, - sym_identifier, - [79852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - aux_sym_index_using_token1, - ACTIONS(3235), 1, - anon_sym_LPAREN, - STATE(2148), 1, - sym_index_using, - [79878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 1, - aux_sym_sequence_min_token1, - ACTIONS(3239), 1, - aux_sym_sequence_max_token1, - ACTIONS(3241), 1, - aux_sym_sequence_cycle_token1, - [79891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3247), 1, - aux_sym_index_using_token1, - ACTIONS(3245), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [79915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79924] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3251), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3253), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2669), 1, - anon_sym_SEMI, - STATE(2156), 1, - sym_where_filter, - [79963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3255), 3, - aux_sym_body_token1, - aux_sym_declarations_token1, - sym__identifier, - [79972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2996), 1, - anon_sym_RPAREN, - ACTIONS(3257), 1, - anon_sym_COMMA, - STATE(1694), 1, - aux_sym_create_type_statement_repeat2, - [79985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1739), 1, - sym_var_declaration, - [79998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3262), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80020] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3266), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80033] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, - anon_sym_RPAREN, - STATE(1666), 1, - aux_sym_create_index_statement_repeat1, - [80046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3272), 1, - aux_sym_alter_table_action_token2, - STATE(1373), 1, - sym_identifier, - [80072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3276), 1, - anon_sym_COMMA, - STATE(1733), 1, - aux_sym_alter_table_change_repeat1, - [80085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [80098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1735), 1, - sym_grant_function, - STATE(2210), 1, - sym_identifier, - [80111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2719), 1, - anon_sym_SEMI, - STATE(2060), 1, - sym_where_filter, - [80124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 3, - aux_sym_grant_targets_token1, - aux_sym_grant_targets_token2, - aux_sym_grant_targets_token3, - [80133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 1, - anon_sym_COMMA, - ACTIONS(3282), 1, - anon_sym_RPAREN, - STATE(1636), 1, - aux_sym_insert_values_repeat1, - [80146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3284), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1737), 1, - aux_sym_drop_type_statement_repeat1, - [80159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - ACTIONS(3286), 1, - anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_drop_type_statement_repeat1, - [80172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_RPAREN, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1640), 1, - aux_sym_create_table_statement_repeat1, - [80185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3290), 1, - aux_sym_trigger_event_token2, - STATE(1711), 1, - aux_sym_trigger_event_repeat1, - [80198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_LPAREN, - ACTIONS(3295), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3297), 1, - aux_sym_with_query_item_token1, - [80211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - aux_sym_insert_statement_token2, - ACTIONS(2295), 1, - aux_sym_for_statement_token2, - STATE(1367), 1, - sym_into, - [80224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(968), 1, - anon_sym_SEMI, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_RPAREN, - ACTIONS(3299), 1, - anon_sym_COMMA, - STATE(1759), 1, - aux_sym_drop_function_item_repeat1, - [80250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3301), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_index_col_nulls_token1, - [80259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, ACTIONS(3303), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [80272] = 4, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64370] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3305), 1, anon_sym_COMMA, - ACTIONS(3308), 1, + STATE(1404), 1, + aux_sym_returning_repeat1, + ACTIONS(3131), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1718), 1, - aux_sym_grant_function_repeat1, - [80285] = 4, + [64384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1630), 1, + sym_returning, + ACTIONS(2804), 2, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3112), 1, + [64398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3307), 4, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1763), 1, - aux_sym_create_table_statement_repeat1, - [80298] = 4, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [64408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 1, - aux_sym_index_using_token1, - ACTIONS(3310), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1192), 1, + sym_into, + ACTIONS(2683), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [64432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1807), 1, + sym_returning, + ACTIONS(2866), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64446] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_SQUOTE, + STATE(1340), 1, + aux_sym_string_repeat1, + ACTIONS(3313), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1227), 1, + sym_into, + ACTIONS(2242), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64474] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1248), 1, + sym_trigger_when, + ACTIONS(3315), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [64486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + STATE(1808), 1, + sym_if_not_exists, + STATE(1885), 1, + sym_identifier, + [64502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1902), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + [64518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, anon_sym_LPAREN, - STATE(2123), 1, - sym_index_using, - [80311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - aux_sym_index_using_token1, - ACTIONS(3312), 1, - anon_sym_LPAREN, - STATE(2277), 1, - sym_index_using, - [80324] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3314), 1, - anon_sym_RPAREN, - STATE(1718), 1, - aux_sym_grant_function_repeat1, - [80337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3303), 1, - anon_sym_RPAREN, - STATE(1658), 1, - aux_sym_create_index_statement_repeat1, - [80350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, + ACTIONS(3266), 1, sym__identifier, - ACTIONS(3316), 1, - aux_sym_insert_conflict_token1, - STATE(2281), 1, + STATE(1137), 1, sym_identifier, - [80363] = 4, + STATE(1504), 1, + sym_index_col, + [64534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3318), 1, - aux_sym_sequence_owned_token2, - STATE(1160), 1, - sym_identifier, - [80376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3320), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3322), 1, - aux_sym_trigger_event_token2, - STATE(1764), 1, - aux_sym_trigger_event_repeat1, - [80389] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3326), 1, - aux_sym_grant_targets_token4, - STATE(1773), 1, - aux_sym_drop_type_statement_repeat1, - [80402] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1975), 1, - sym_identifier, - STATE(2305), 1, - sym_assign_statement, - [80415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1775), 1, - sym_var_declaration, - [80428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - anon_sym_COMMA, - ACTIONS(3331), 1, - anon_sym_RPAREN, - STATE(1730), 1, - aux_sym_create_table_statement_repeat1, - [80441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 3, + ACTIONS(3317), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, aux_sym_body_token1, aux_sym_declarations_token1, - sym__identifier, - [80450] = 4, - ACTIONS(3), 1, + [64544] = 4, + ACTIONS(3234), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3319), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64558] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3321), 1, + anon_sym_SQUOTE, + STATE(1354), 1, + aux_sym_string_repeat1, + ACTIONS(3323), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64572] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3325), 1, + aux_sym_psql_statement_token1, + ACTIONS(3327), 1, sym__identifier, - STATE(1316), 1, + STATE(1365), 2, sym_identifier, - STATE(1799), 1, - sym_table_column_item, - [80463] = 4, + aux_sym_psql_statement_repeat1, + [64586] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3329), 1, + anon_sym_SQUOTE, + STATE(1358), 1, + aux_sym_string_repeat1, + ACTIONS(3331), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64600] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3333), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3276), 1, - anon_sym_COMMA, - ACTIONS(3335), 1, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2981), 1, + aux_sym_schema_role_token1, + STATE(1619), 1, + sym_identifier, + STATE(2013), 1, + sym_schema_role, + [64630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1285), 1, + aux_sym_index_using_token1, + STATE(1638), 1, + sym_execute_using, + ACTIONS(3335), 2, anon_sym_SEMI, - STATE(1771), 1, - aux_sym_alter_table_change_repeat1, - [80476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_RPAREN, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_create_table_statement_repeat1, - [80489] = 4, + aux_sym_for_statement_token2, + [64644] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3337), 1, - anon_sym_COMMA, + aux_sym_body_token1, ACTIONS(3339), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1769), 1, - aux_sym_grant_targets_repeat1, - [80502] = 4, + aux_sym_declarations_token1, + STATE(1361), 2, + sym_declarations, + aux_sym_block_repeat1, + [64658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3339), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1768), 1, - aux_sym_drop_type_statement_repeat1, - [80515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3339), 1, - aux_sym_alter_table_rename_column_token2, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - [80528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - ACTIONS(3341), 1, - anon_sym_RPAREN, - STATE(1450), 1, - aux_sym_drop_type_statement_repeat1, - [80541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2996), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - [80550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3343), 1, - aux_sym_update_statement_token2, - STATE(899), 1, - sym_identifier, - [80563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3064), 1, - aux_sym_index_using_token1, - ACTIONS(3345), 1, - aux_sym_insert_conflict_token1, - STATE(900), 1, - sym_join_condition, - [80576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym_COMMA, - ACTIONS(3347), 1, - anon_sym_RPAREN, - STATE(1663), 1, - aux_sym_create_type_statement_repeat2, - [80589] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3198), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RPAREN, - STATE(1665), 1, - aux_sym_create_type_statement_repeat1, - [80602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RPAREN, - STATE(1694), 1, - aux_sym_create_type_statement_repeat2, - [80615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - ACTIONS(3351), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1640), 1, + sym_into, + ACTIONS(3087), 2, anon_sym_SEMI, - STATE(1761), 1, - aux_sym_returning_repeat1, - [80628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - anon_sym_COMMA, - ACTIONS(3353), 1, anon_sym_RPAREN, - STATE(1669), 1, - aux_sym_update_set_repeat1, - [80641] = 4, + [64672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3355), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3357), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3359), 1, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1642), 1, + sym_into, + ACTIONS(2870), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80676] = 4, + [64686] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(3342), 1, + anon_sym_LPAREN, + ACTIONS(3344), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3346), 1, + aux_sym_insert_conflict_token3, + STATE(2003), 1, + sym_conflict_target, + [64702] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_psql_statement_token1, + ACTIONS(3350), 1, + sym__identifier, + STATE(1365), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [64716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1815), 1, + sym_returning, + ACTIONS(3353), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 4, + aux_sym_update_statement_token1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [64740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(1264), 1, + sym_identifier, + STATE(1713), 1, + sym_if_exists, + [64756] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(997), 1, + sym_identifier, + STATE(1759), 1, + sym_if_exists, + [64786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1586), 1, + sym_index_col, + [64802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1214), 1, + sym_into, + ACTIONS(1153), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3359), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_returning_token1, + [64826] = 4, + ACTIONS(3234), 1, + sym_comment, ACTIONS(3361), 1, - anon_sym_COMMA, - ACTIONS(3364), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_drop_function_item_repeat1, - [80689] = 4, + anon_sym_SQUOTE, + STATE(1380), 1, + aux_sym_string_repeat1, + ACTIONS(3363), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64840] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3365), 1, + anon_sym_SQUOTE, + STATE(1369), 1, + aux_sym_string_repeat1, + ACTIONS(3367), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RPAREN, - STATE(1752), 1, - aux_sym_drop_function_item_repeat1, - [80702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_COMMA, - ACTIONS(3368), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_drop_function_item_repeat1, - [80715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2228), 1, - anon_sym_RPAREN, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1734), 1, - aux_sym_create_table_statement_repeat1, - [80728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [80741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RPAREN, - STATE(1703), 1, - aux_sym_create_index_statement_repeat1, - [80754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - aux_sym_index_using_token1, - ACTIONS(3372), 1, - anon_sym_LPAREN, - STATE(2141), 1, - sym_index_using, - [80767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 1, - anon_sym_COMMA, - ACTIONS(3374), 1, - anon_sym_RPAREN, - STATE(1707), 1, - aux_sym_insert_values_repeat1, - [80780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(958), 1, - anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_drop_function_item_repeat1, - [80806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1742), 1, - sym_var_declaration, - [80819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_SEMI, - STATE(1513), 1, - aux_sym_returning_repeat1, - [80832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 3, + ACTIONS(3369), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [80841] = 4, + aux_sym_constraint_when_token1, + [64864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, + ACTIONS(3371), 1, + anon_sym_COMMA, + ACTIONS(3373), 1, anon_sym_RPAREN, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1730), 1, - aux_sym_create_table_statement_repeat1, - [80854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - aux_sym_trigger_event_token2, - ACTIONS(3382), 1, - aux_sym_insert_conflict_token1, - STATE(1711), 1, - aux_sym_trigger_event_repeat1, - [80867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1975), 1, - sym_identifier, - STATE(2016), 1, - sym_assign_statement, - [80880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3384), 1, - anon_sym_SEMI, - STATE(1678), 1, - aux_sym_grant_roles_repeat1, - [80893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - aux_sym_function_run_as_token1, - ACTIONS(3386), 1, - anon_sym_SEMI, - STATE(2012), 1, - sym_function_run_as, - [80906] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - aux_sym_alter_table_rename_column_token2, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - [80919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3337), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1682), 1, - aux_sym_grant_targets_repeat1, - [80932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1964), 1, - sym_grant_function, - STATE(2210), 1, - sym_identifier, - [80945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_SEMI, - ACTIONS(3392), 1, - anon_sym_COMMA, - STATE(1771), 1, - aux_sym_alter_table_change_repeat1, - [80958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - sym__identifier, - STATE(1345), 1, - sym_identifier, - STATE(1739), 1, - sym_var_declaration, - [80971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3395), 1, - aux_sym_grant_targets_token4, - STATE(1605), 1, - aux_sym_drop_type_statement_repeat1, - [80984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1717), 1, - aux_sym_create_index_statement_repeat1, - [80997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, - anon_sym_COMMA, - ACTIONS(3399), 1, - anon_sym_RPAREN, - STATE(1744), 1, - aux_sym_create_type_statement_repeat2, - [81010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2762), 1, - anon_sym_SEMI, - STATE(1998), 1, - sym_where_filter, - [81023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3260), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1779), 1, - sym_table_column_item, - [81036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1685), 1, - sym_identifier, - [81046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2673), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1455), 1, - sym_identifier, - [81064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RPAREN, - [81074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 2, - anon_sym_SEMI, - aux_sym_where_filter_token1, - [81082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(317), 1, - sym_star, - [81092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - STATE(910), 1, - sym__list_of_identifiers, - [81102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3407), 2, - anon_sym_LPAREN, - sym__identifier, - [81110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(911), 1, - sym_identifier, - [81120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 2, - aux_sym_update_statement_token1, - aux_sym_delete_statement_token1, - [81136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1828), 1, - sym_identifier, - [81146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1677), 1, - sym_identifier, - [81156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 2, - anon_sym_SEMI, - aux_sym_function_run_as_token1, - [81164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2039), 1, - sym_identifier, - [81182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1478), 1, - sym_identifier, - [81192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 2, - aux_sym_function_run_as_token2, - aux_sym_function_run_as_token3, - [81200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1158), 1, - sym_identifier, - [81210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3415), 1, + ACTIONS(3375), 1, aux_sym_insert_items_token1, - [81220] = 3, + STATE(1320), 1, + aux_sym_create_type_statement_repeat2, + [64880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1680), 1, + sym_returning, + ACTIONS(2800), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COMMA, + STATE(1341), 1, + aux_sym_returning_repeat1, + ACTIONS(3110), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64908] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3377), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3379), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [64932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1156), 1, + sym_into, + ACTIONS(2205), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [64946] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3381), 1, + anon_sym_SQUOTE, + STATE(1391), 1, + aux_sym_string_repeat1, + ACTIONS(3383), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [64960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 1, + aux_sym_drop_type_statement_token1, + ACTIONS(2704), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(2706), 1, + aux_sym_alter_table_action_token1, + STATE(1701), 1, + sym_alter_table_action, + [64976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + ACTIONS(3252), 1, + sym__identifier, + STATE(725), 1, + sym_identifier, + STATE(759), 1, + sym__list_of_identifiers, + [64992] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_SQUOTE, + STATE(1389), 1, + aux_sym_string_repeat1, + ACTIONS(3387), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3389), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + aux_sym_body_token1, + aux_sym_declarations_token1, + [65016] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3393), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65030] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65044] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + STATE(783), 1, + sym_identifier, + STATE(1703), 1, + sym_if_not_exists, + [65060] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3398), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + STATE(778), 1, + sym_identifier, + STATE(1769), 1, + sym_if_not_exists, + [65090] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3400), 1, + anon_sym_SQUOTE, + STATE(1397), 1, + aux_sym_string_repeat1, + ACTIONS(3402), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + aux_sym_sequence_start_token2, + ACTIONS(27), 1, + aux_sym_select_statement_token1, + STATE(1892), 1, + sym_select_statement, + STATE(2076), 1, + sym_with_query, + [65120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1724), 1, + sym_into, + ACTIONS(2858), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + STATE(1779), 1, + sym_if_not_exists, + STATE(2118), 1, + sym_identifier, + [65150] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3404), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(2589), 1, + aux_sym_if_statement_token1, + STATE(1674), 1, + sym_if_not_exists, + STATE(2029), 1, + sym_identifier, + [65180] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3406), 1, + aux_sym_update_statement_token2, + ACTIONS(3408), 1, + aux_sym_update_statement_token3, + STATE(2129), 1, + sym_identifier, + [65196] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_SQUOTE, + STATE(1406), 1, + aux_sym_string_repeat1, + ACTIONS(3412), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65210] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1269), 1, + sym_trigger_when, + ACTIONS(3315), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [65222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + anon_sym_LPAREN, + ACTIONS(3266), 1, + sym__identifier, + STATE(1137), 1, + sym_identifier, + STATE(1537), 1, + sym_index_col, + [65238] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3066), 1, + aux_sym_if_statement_token1, + STATE(1244), 1, + sym_identifier, + STATE(1798), 1, + sym_if_exists, + [65254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3414), 1, + anon_sym_COMMA, + STATE(1404), 1, + aux_sym_returning_repeat1, + ACTIONS(2521), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65268] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3417), 1, - sym__identifier, - STATE(1108), 1, - sym_identifier, - [81230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2586), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1388), 1, - sym_identifier, - [81256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2373), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 1, - aux_sym_insert_conflict_token1, + aux_sym_update_statement_token1, + ACTIONS(3419), 1, + aux_sym_insert_statement_token1, ACTIONS(3421), 1, - aux_sym_grant_privileges_token2, - [81282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_SEMI, + aux_sym_delete_statement_token1, ACTIONS(3423), 1, - anon_sym_COMMA, - [81292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81300] = 3, - ACTIONS(29), 1, - aux_sym_psql_statement_token1, - ACTIONS(31), 1, - sym__identifier, - ACTIONS(2819), 1, - sym_comment, - [81310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2991), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [81318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2548), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_STAR, - STATE(415), 1, - sym_star, - [81336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81344] = 3, - ACTIONS(3), 1, + aux_sym_select_statement_token1, + [65284] = 4, + ACTIONS(3234), 1, sym_comment, ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_insert_values, - [81354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2421), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1265), 1, - sym_identifier, - [81388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, anon_sym_SQUOTE, - STATE(131), 1, - sym_string, - [81406] = 3, - ACTIONS(3), 1, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65298] = 4, + ACTIONS(3234), 1, sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1498), 1, - sym_identifier, - [81416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1720), 1, - sym_identifier, - [81426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, + ACTIONS(3427), 1, + anon_sym_SQUOTE, STATE(1408), 1, - sym_identifier, - [81436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [81444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - STATE(1835), 1, - sym__list_of_identifiers, - [81454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym__list_of_identifiers, - [81464] = 3, + aux_sym_string_repeat1, + ACTIONS(3429), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65312] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3431), 1, + anon_sym_SQUOTE, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65326] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(3371), 1, + anon_sym_COMMA, ACTIONS(3433), 1, - aux_sym_drop_type_statement_token2, + anon_sym_RPAREN, ACTIONS(3435), 1, - aux_sym_drop_function_statement_token1, - [81474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [81482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2070), 1, - sym_identifier, - [81492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3439), 1, - anon_sym_SEMI, - ACTIONS(3441), 1, - aux_sym_update_statement_token2, - [81502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - aux_sym_function_return_token1, - STATE(2063), 1, - sym_function_return, - [81512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3445), 2, - aux_sym_insert_conflict_token1, - sym__identifier, - [81520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_SQUOTE, - STATE(1743), 1, - sym_string, - [81530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1870), 1, - sym_identifier, - [81540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - STATE(2011), 1, - sym_trigger_exec, - [81550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1563), 1, - sym_constraint_foreign_key, - [81568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 1, - anon_sym_LPAREN, - STATE(2062), 1, - sym_function_parameters, - [81586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [81594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2059), 1, - sym_identifier, - [81612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3445), 2, - aux_sym_schema_role_token1, - sym__identifier, - [81620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 2, - anon_sym_COMMA, - aux_sym_grant_targets_token4, - [81628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(109), 1, - sym_star, - [81638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(1471), 1, - sym_identifier, - [81648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3357), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 1, - anon_sym_COMMA, - ACTIONS(3453), 1, - anon_sym_RPAREN, - [81674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1065), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - [81692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3457), 1, - anon_sym_COMMA, - ACTIONS(3459), 1, - anon_sym_RPAREN, - [81710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1443), 1, - anon_sym_STAR, - STATE(385), 1, - sym_star, - [81720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 2, - anon_sym_LPAREN, - sym__identifier, - [81728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1359), 1, - anon_sym_STAR, - STATE(629), 1, - sym_star, - [81762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [81770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(900), 1, - anon_sym_STAR, - STATE(474), 1, - sym_star, - [81780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2419), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(938), 1, - sym_identifier, - [81798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - STATE(74), 1, - sym_string, - [81808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3465), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, - anon_sym_COMMA, - ACTIONS(3469), 1, - anon_sym_RPAREN, - [81826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3471), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2337), 1, - sym_identifier, - [81852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2332), 1, - sym_identifier, - [81862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2329), 1, - sym_identifier, - [81872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1351), 1, - sym_identifier, - [81898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2317), 1, - sym_identifier, - [81908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1416), 1, - sym_identifier, - [81918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3016), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81926] = 2, + aux_sym_insert_items_token1, + STATE(1377), 1, + aux_sym_create_type_statement_repeat2, + [65342] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1176), 1, + sym_into, ACTIONS(3020), 2, anon_sym_SEMI, anon_sym_RPAREN, - [81934] = 2, + [65356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2782), 1, + aux_sym_returning_token1, + STATE(1751), 1, + sym_returning, + ACTIONS(2776), 2, anon_sym_SEMI, anon_sym_RPAREN, - [81942] = 2, + [65370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [81950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, + ACTIONS(460), 1, sym__identifier, - STATE(1508), 1, + STATE(2026), 1, sym_identifier, - [81960] = 3, + ACTIONS(3437), 2, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + [65384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_SEMI, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - [81970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 2, + ACTIONS(3287), 1, anon_sym_COMMA, + STATE(1418), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2370), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [81978] = 3, + [65398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(832), 1, + ACTIONS(3287), 1, + anon_sym_COMMA, + STATE(1420), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2392), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3439), 1, + aux_sym_grant_privileges_token1, + STATE(1461), 1, + sym_identifier, + STATE(2162), 1, + sym_grant_privileges, + [65428] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3441), 1, anon_sym_SQUOTE, - STATE(1805), 1, - sym_string, - [81988] = 3, + STATE(1421), 1, + aux_sym_string_repeat1, + ACTIONS(3443), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3445), 4, anon_sym_SEMI, - ACTIONS(3483), 1, anon_sym_COMMA, - [81998] = 3, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [65452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3485), 1, - aux_sym_update_statement_token1, - ACTIONS(3487), 1, - aux_sym_insert_conflict_token4, - [82008] = 2, + ACTIONS(3447), 1, + anon_sym_COMMA, + STATE(1418), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2303), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 2, - aux_sym_constraint_when_token3, - aux_sym_constraint_when_token4, - [82016] = 3, + ACTIONS(3103), 4, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_drop_type_statement_token3, + aux_sym_drop_type_statement_token4, + [65476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, + ACTIONS(3287), 1, + anon_sym_COMMA, + STATE(1418), 1, + aux_sym_drop_type_statement_repeat1, + ACTIONS(2384), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [65490] = 4, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(3450), 1, anon_sym_SQUOTE, - STATE(124), 1, - sym_string, - [82026] = 3, + STATE(1388), 1, + aux_sym_string_repeat1, + ACTIONS(3232), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [65504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3491), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_RPAREN, - [82036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2187), 1, - sym_identifier, - [82046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 2, + ACTIONS(2247), 1, + aux_sym_insert_statement_token2, + STATE(1181), 1, + sym_into, + ACTIONS(2121), 2, anon_sym_SEMI, anon_sym_RPAREN, - [82062] = 2, + [65518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 2, + ACTIONS(2644), 1, + anon_sym_RPAREN, + ACTIONS(3452), 1, anon_sym_COMMA, + STATE(1581), 1, + aux_sym_create_table_statement_repeat1, + [65531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2644), 1, anon_sym_RPAREN, - [82070] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1973), 1, - sym_dollar_quote, - [82080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1261), 1, - sym_identifier, - [82090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2296), 1, - sym_identifier, - [82100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1145), 1, - sym_identifier, - [82110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1401), 1, - sym_identifier, - [82120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(962), 1, - sym_identifier, - [82130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - STATE(2280), 1, - sym_trigger_exec, - [82140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 1, - anon_sym_SQUOTE, - STATE(170), 1, - sym_string, - [82150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, + ACTIONS(3452), 1, anon_sym_COMMA, - ACTIONS(3499), 1, - anon_sym_RPAREN, - [82160] = 2, + STATE(1582), 1, + aux_sym_create_table_statement_repeat1, + [65544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82168] = 2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(3020), 1, + aux_sym_for_statement_token2, + STATE(1176), 1, + sym_into, + [65557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [82176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2292), 1, - sym_identifier, - [82186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3503), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(967), 1, - sym_identifier, - [82212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1756), 1, - sym_identifier, - [82222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2361), 1, + aux_sym_for_statement_token2, STATE(1196), 1, - sym_identifier, - [82232] = 2, + sym_into, + [65570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 2, - anon_sym_COMMA, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2242), 1, + aux_sym_for_statement_token2, + STATE(1227), 1, + sym_into, + [65583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2446), 1, + aux_sym_for_statement_token2, + STATE(1179), 1, + sym_into, + [65596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2646), 1, anon_sym_RPAREN, - [82240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3505), 2, + ACTIONS(3452), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [82248] = 2, + STATE(1424), 1, + aux_sym_create_table_statement_repeat1, + [65609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82256] = 3, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2683), 1, + aux_sym_for_statement_token2, + STATE(1192), 1, + sym_into, + [65622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - sym__identifier, - STATE(1446), 1, - sym_identifier, - [82266] = 3, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2604), 1, + aux_sym_for_statement_token2, + STATE(1210), 1, + sym_into, + [65635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - aux_sym_trigger_exec_token1, - STATE(2143), 1, - sym_trigger_exec, - [82276] = 3, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2205), 1, + aux_sym_for_statement_token2, + STATE(1156), 1, + sym_into, + [65648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - STATE(5), 1, - sym_string, - [82286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 1, - anon_sym_STAR, - STATE(465), 1, - sym_star, - [82296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, + ACTIONS(3454), 1, anon_sym_LPAREN, - STATE(1536), 1, - sym__list_of_identifiers, - [82306] = 3, + ACTIONS(3456), 1, + aux_sym_index_using_token1, + STATE(1945), 1, + sym_index_using, + [65661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2121), 1, + aux_sym_for_statement_token2, + STATE(1181), 1, + sym_into, + [65674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2303), 1, + aux_sym_grant_targets_token4, + ACTIONS(3458), 1, anon_sym_COMMA, - ACTIONS(3511), 1, - anon_sym_RPAREN, - [82316] = 2, + STATE(1435), 1, + aux_sym_drop_type_statement_repeat1, + [65687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 2, + ACTIONS(3273), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [82324] = 2, + STATE(1436), 1, + aux_sym_create_type_statement_repeat2, + [65700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3513), 2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + ACTIONS(2112), 1, + aux_sym_for_statement_token2, + STATE(1157), 1, + sym_into, + [65713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [82332] = 2, + ACTIONS(3464), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [65726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3172), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82340] = 3, + ACTIONS(1153), 1, + aux_sym_for_statement_token2, + ACTIONS(1283), 1, + aux_sym_insert_statement_token2, + STATE(1214), 1, + sym_into, + [65739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 1, - anon_sym_STAR, - STATE(646), 1, - sym_star, - [82350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, + ACTIONS(362), 1, sym__identifier, - STATE(983), 1, - sym_identifier, - [82368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2181), 1, - sym_identifier, - [82378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 1, - anon_sym_LPAREN, - ACTIONS(3519), 1, - aux_sym_update_set_token1, - [82388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [82396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2353), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1654), 1, - sym_identifier, - [82414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3525), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [82446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2254), 1, - sym_identifier, - [82456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_SQUOTE, - STATE(423), 1, - sym_string, - [82466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 1, - anon_sym_COMMA, - ACTIONS(3533), 1, - anon_sym_RPAREN, - [82476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 2, - aux_sym_insert_items_token1, - aux_sym_alter_column_action_token2, - [82484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_STAR, - STATE(395), 1, - sym_star, - [82502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 2, - aux_sym_index_col_nulls_token2, - aux_sym_index_col_nulls_token3, - [82510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 1, - anon_sym_SQUOTE, - STATE(1803), 1, - sym_string, - [82520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 1, - aux_sym_join_item_token3, - ACTIONS(3541), 1, - aux_sym_join_type_token3, - [82530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1136), 1, - sym_identifier, - [82540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 2, - anon_sym_LPAREN, - sym__identifier, - [82548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - sym__identifier, - STATE(1095), 1, - sym_identifier, - [82558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3545), 1, - anon_sym_SQUOTE, - STATE(472), 1, - sym_string, - [82568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3002), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3288), 2, + ACTIONS(3466), 1, aux_sym_insert_conflict_token1, + STATE(1946), 1, + sym_identifier, + [65752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1580), 1, + sym_var_declaration, + [65765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3470), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [65778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [65787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [65796] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [65809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 1, + anon_sym_DOLLAR, + STATE(1256), 1, + sym_dollar_quote, + STATE(2168), 1, + sym_block, + [65822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 1, + sym__identifier, + STATE(1356), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [65833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + sym__identifier, + ACTIONS(3480), 1, + aux_sym_into_token1, + STATE(1414), 1, + sym_identifier, + [65846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1182), 1, + sym_with_query_item, + STATE(1463), 1, + sym_identifier, + [65859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3482), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [65872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1780), 1, + sym_identifier, + STATE(1784), 1, + sym_function_signature, + [65885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1518), 1, + sym_var_declaration, + [65898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3484), 3, + aux_sym_create_table_statement_token1, + aux_sym_grant_targets_token5, + sym_unlogged, + [65907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3486), 1, + aux_sym_create_table_statement_token1, + ACTIONS(3488), 1, + aux_sym_grant_targets_token5, + ACTIONS(3490), 1, + sym_unlogged, + [65920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3492), 1, + aux_sym_sequence_owned_token2, + STATE(1010), 1, + sym_identifier, + [65933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + ACTIONS(3494), 1, + anon_sym_DOLLAR, + STATE(2097), 1, + sym_identifier, + [65946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3496), 1, + anon_sym_SEMI, + STATE(2182), 1, + sym_where_filter, + [65959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 1, + anon_sym_RPAREN, + ACTIONS(3498), 1, + anon_sym_COMMA, + STATE(1517), 1, + aux_sym_drop_function_item_repeat1, + [65972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3500), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3502), 1, aux_sym_trigger_event_token2, - [82584] = 3, + STATE(1538), 1, + aux_sym_trigger_event_repeat1, + [65985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3547), 1, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(3549), 1, + ACTIONS(3504), 1, anon_sym_RPAREN, - [82594] = 2, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [65998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3308), 2, + ACTIONS(2372), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [82610] = 2, + ACTIONS(3506), 1, + aux_sym_insert_conflict_token1, + STATE(1521), 1, + aux_sym_drop_type_statement_repeat1, + [66011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 2, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3159), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [82626] = 3, + STATE(2169), 1, + sym_where_filter, + [66024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(2128), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, - aux_sym_create_type_statement_token2, - [82636] = 3, + ACTIONS(3508), 1, + aux_sym_update_statement_token2, + STATE(2084), 1, + sym__list_of_identifiers, + [66037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - STATE(7), 1, - sym_string, - [82646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1736), 1, - sym_identifier, - [82656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym__identifier, - STATE(1842), 1, - sym_identifier, - [82666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, - anon_sym_SQUOTE, - STATE(59), 1, - sym_string, - [82676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, + ACTIONS(1420), 1, anon_sym_COMMA, - ACTIONS(3561), 1, + ACTIONS(3510), 1, anon_sym_RPAREN, - [82694] = 2, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 2, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3512), 1, + aux_sym_into_token1, + STATE(833), 1, + sym_identifier, + [66063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3514), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3516), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3518), 1, + aux_sym_index_using_token1, + STATE(747), 1, + sym_join_condition, + [66089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [66102] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3163), 1, + anon_sym_SEMI, + STATE(2161), 1, + sym_where_filter, + [66115] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 3, + aux_sym__interval_fields_token4, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [82702] = 2, + [66137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2616), 2, - anon_sym_SEMI, + ACTIONS(3528), 1, + anon_sym_COMMA, + ACTIONS(3530), 1, + aux_sym_grant_targets_token4, + STATE(1540), 1, + aux_sym_drop_type_statement_repeat1, + [66150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3532), 1, anon_sym_RPAREN, - [82710] = 3, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(3108), 1, sym__identifier, - STATE(2250), 1, + STATE(1836), 1, sym_identifier, - [82720] = 3, + STATE(1958), 1, + sym_assign_statement, + [66176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1585), 1, - anon_sym_STAR, - STATE(137), 1, - sym_star, - [82730] = 2, + ACTIONS(3305), 1, + anon_sym_COMMA, + ACTIONS(3534), 1, + anon_sym_SEMI, + STATE(1546), 1, + aux_sym_returning_repeat1, + [66189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 2, + ACTIONS(3536), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + sym__identifier, + [66198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3542), 1, + aux_sym_with_query_item_token1, + [66211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1190), 1, + sym_identifier, + STATE(1711), 1, + sym_table_column_item, + [66224] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3287), 1, + anon_sym_COMMA, + ACTIONS(3544), 1, + anon_sym_RPAREN, + STATE(1491), 1, + aux_sym_drop_type_statement_repeat1, + [66237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3546), 1, + anon_sym_RPAREN, + STATE(1468), 1, + aux_sym_create_index_statement_repeat1, + [66250] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3546), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [66263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3171), 1, + anon_sym_SEMI, + STATE(2233), 1, + sym_where_filter, + [66276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + aux_sym_index_using_token1, + ACTIONS(3548), 1, + aux_sym_insert_conflict_token1, + STATE(747), 1, + sym_join_condition, + [66289] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3550), 1, + anon_sym_SEMI, + ACTIONS(3552), 1, + anon_sym_COMMA, + STATE(1557), 1, + aux_sym_alter_table_change_repeat1, + [66302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1559), 1, + aux_sym_grant_targets_repeat1, + [66315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1489), 1, + aux_sym_drop_type_statement_repeat1, + [66328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1561), 1, + aux_sym_drop_type_statement_repeat1, + [66341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3560), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66354] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3556), 1, + aux_sym_alter_table_rename_column_token2, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + [66367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3562), 3, + aux_sym_grant_targets_token1, + aux_sym_grant_targets_token2, + aux_sym_grant_targets_token3, + [66376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3287), 1, + anon_sym_COMMA, + ACTIONS(3564), 1, + anon_sym_RPAREN, + STATE(1418), 1, + aux_sym_drop_type_statement_repeat1, + [66389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3566), 1, + anon_sym_SEMI, + ACTIONS(3568), 1, + aux_sym_schema_role_token1, + STATE(2013), 1, + sym_schema_role, + [66402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1485), 1, + sym_grant_function, + STATE(1911), 1, + sym_identifier, + [66428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(2985), 1, + aux_sym_insert_conflict_token1, + STATE(2007), 1, + sym_identifier, + [66441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3574), 1, + aux_sym_update_statement_token2, + STATE(748), 1, + sym_identifier, + [66467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + aux_sym_function_run_as_token1, + ACTIONS(3576), 1, + anon_sym_SEMI, + STATE(2131), 1, + sym_function_run_as, + [66480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3578), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66493] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + aux_sym_index_using_token1, + ACTIONS(3580), 1, + aux_sym_insert_conflict_token1, + STATE(747), 1, + sym_join_condition, + [66506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3582), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [66528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3588), 1, + anon_sym_RPAREN, + STATE(1481), 1, + aux_sym_create_index_statement_repeat1, + [66554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3588), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [66567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(2123), 1, + sym_where_filter, + [66580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1684), 1, + sym_function_signature, + STATE(1780), 1, + sym_identifier, + [66593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [66602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3592), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_COMMA, + ACTIONS(3596), 1, + anon_sym_SEMI, + STATE(1484), 1, + aux_sym_alter_table_change_repeat1, + [66641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3598), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3600), 1, + aux_sym_alter_table_action_token2, + STATE(1155), 1, + sym_identifier, + [66667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_COMMA, + ACTIONS(3604), 1, + anon_sym_RPAREN, + STATE(1515), 1, + aux_sym_grant_function_repeat1, + [66680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_COMMA, + ACTIONS(3609), 1, + anon_sym_RPAREN, + STATE(1515), 1, + aux_sym_grant_function_repeat1, + [66693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_COMMA, + ACTIONS(3611), 1, + anon_sym_RPAREN, + STATE(1571), 1, + aux_sym_drop_function_item_repeat1, + [66706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_COMMA, + ACTIONS(3611), 1, + anon_sym_RPAREN, + STATE(1572), 1, + aux_sym_drop_function_item_repeat1, + [66719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + ACTIONS(3615), 1, + anon_sym_RPAREN, + STATE(1574), 1, + aux_sym_create_type_statement_repeat2, + [66732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1193), 1, + sym_identifier, + STATE(1579), 1, + sym_var_declaration, + [66745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3617), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3619), 1, + aux_sym_insert_conflict_token1, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + [66771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3621), 1, + anon_sym_SEMI, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3623), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66797] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1187), 1, + sym_identifier, + STATE(1580), 1, + sym_var_declaration, + [66810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1254), 1, + sym_with_query_item, + STATE(1463), 1, + sym_identifier, + [66823] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3625), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3627), 1, + anon_sym_LPAREN, + ACTIONS(3629), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3631), 1, + aux_sym_with_query_item_token1, + [66849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3633), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_create_table_statement_repeat1, + [66862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2937), 1, + anon_sym_RPAREN, + ACTIONS(3108), 1, + sym__identifier, + STATE(1479), 1, + sym_identifier, + [66875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3635), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3637), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [66897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3639), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3641), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_index_using_token1, + ACTIONS(3643), 1, + anon_sym_LPAREN, + STATE(1994), 1, + sym_index_using, + [66936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(2081), 1, + sym_identifier, + STATE(2102), 1, + sym_function_call, + [66949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3645), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [66958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3647), 1, + anon_sym_RPAREN, + STATE(1594), 1, + aux_sym_create_index_statement_repeat1, + [66971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3502), 1, + aux_sym_trigger_event_token2, + ACTIONS(3649), 1, + aux_sym_insert_conflict_token1, + STATE(1598), 1, + aux_sym_trigger_event_repeat1, + [66984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3651), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [66997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3528), 1, + anon_sym_COMMA, + ACTIONS(3653), 1, + aux_sym_grant_targets_token4, + STATE(1435), 1, + aux_sym_drop_type_statement_repeat1, + [67010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3655), 1, + anon_sym_RPAREN, + STATE(1505), 1, + aux_sym_create_index_statement_repeat1, + [67023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3655), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [67036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3657), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3218), 1, + anon_sym_SEMI, + STATE(2101), 1, + sym_where_filter, + [67062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1836), 1, + sym_identifier, + STATE(2008), 1, + sym_assign_statement, + [67075] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COMMA, + ACTIONS(3659), 1, + anon_sym_SEMI, + STATE(1404), 1, + aux_sym_returning_repeat1, + [67088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_SEMI, + ACTIONS(2882), 1, + aux_sym_function_run_as_token1, + STATE(2100), 1, + sym_function_run_as, + [67101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [67110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + anon_sym_COMMA, + ACTIONS(3665), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_insert_values_repeat1, + [67123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3667), 1, + aux_sym_insert_items_token1, + ACTIONS(3669), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3671), 1, + aux_sym_alter_column_action_token3, + [67136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3675), 1, + anon_sym_COMMA, + ACTIONS(3678), 1, + anon_sym_RPAREN, + STATE(1552), 1, + aux_sym_create_type_statement_repeat1, + [67162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3468), 1, + sym__identifier, + STATE(1190), 1, + sym_identifier, + STATE(1633), 1, + sym_table_column_item, + [67175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3680), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67188] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3684), 1, + anon_sym_RPAREN, + STATE(1556), 1, + aux_sym_update_set_repeat1, + [67201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3686), 1, + anon_sym_COMMA, + ACTIONS(3689), 1, + anon_sym_RPAREN, + STATE(1556), 1, + aux_sym_update_set_repeat1, + [67214] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 1, + anon_sym_SEMI, + ACTIONS(3693), 1, + anon_sym_COMMA, + STATE(1557), 1, + aux_sym_alter_table_change_repeat1, + [67227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1625), 1, + sym_grant_function, + STATE(1911), 1, + sym_identifier, + [67240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_COMMA, + ACTIONS(3696), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1622), 1, + aux_sym_grant_targets_repeat1, + [67253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3698), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_COMMA, + ACTIONS(3696), 1, + aux_sym_alter_table_rename_column_token2, + STATE(788), 1, + aux_sym_drop_type_statement_repeat1, + [67279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3700), 1, + anon_sym_SEMI, + ACTIONS(3702), 1, + anon_sym_COMMA, + STATE(1563), 1, + aux_sym_grant_roles_repeat1, + [67292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 1, + anon_sym_SEMI, + ACTIONS(3706), 1, + anon_sym_COMMA, + STATE(1563), 1, + aux_sym_grant_roles_repeat1, + [67305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3709), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 1, + anon_sym_COMMA, + ACTIONS(3711), 1, + anon_sym_SEMI, + STATE(1621), 1, + aux_sym_grant_roles_repeat1, + [67331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [67340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_COMMA, + ACTIONS(3715), 1, + anon_sym_RPAREN, + STATE(1514), 1, + aux_sym_grant_function_repeat1, + [67353] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_COMMA, + ACTIONS(3715), 1, + anon_sym_RPAREN, + STATE(1515), 1, + aux_sym_grant_function_repeat1, + [67366] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3717), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3719), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67392] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_COMMA, + ACTIONS(3721), 1, + anon_sym_RPAREN, + STATE(1572), 1, + aux_sym_drop_function_item_repeat1, + [67405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_COMMA, + ACTIONS(3726), 1, + anon_sym_RPAREN, + STATE(1572), 1, + aux_sym_drop_function_item_repeat1, + [67418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3728), 1, + anon_sym_RPAREN, + STATE(1614), 1, + aux_sym_update_set_repeat1, + [67431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + ACTIONS(3730), 1, + anon_sym_RPAREN, + STATE(1436), 1, + aux_sym_create_type_statement_repeat2, + [67444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3730), 1, + anon_sym_RPAREN, + ACTIONS(3732), 1, + anon_sym_COMMA, + STATE(1610), 1, + aux_sym_create_type_statement_repeat1, + [67457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3734), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67470] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(1432), 1, + anon_sym_SEMI, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, + aux_sym_where_filter_token1, + ACTIONS(3216), 1, + anon_sym_SEMI, + STATE(2070), 1, + sym_where_filter, + [67496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + ACTIONS(3736), 1, + anon_sym_RPAREN, + STATE(1608), 1, + aux_sym_create_type_statement_repeat2, + [67509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3273), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [67518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, + anon_sym_RPAREN, + ACTIONS(3452), 1, + anon_sym_COMMA, + STATE(1582), 1, + aux_sym_create_table_statement_repeat1, + [67531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3738), 1, + anon_sym_COMMA, + ACTIONS(3741), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_create_table_statement_repeat1, + [67544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3743), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3745), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + anon_sym_COMMA, + ACTIONS(3750), 1, + anon_sym_RPAREN, + STATE(1585), 1, + aux_sym_insert_values_repeat1, + [67583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3752), 1, + anon_sym_RPAREN, + STATE(1604), 1, + aux_sym_create_index_statement_repeat1, + [67596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3754), 1, + anon_sym_RPAREN, + STATE(1528), 1, + aux_sym_create_table_statement_repeat1, + [67609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3452), 1, + anon_sym_COMMA, + ACTIONS(3754), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_create_table_statement_repeat1, + [67622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [67631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [67640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3760), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 1, + aux_sym_trigger_scope_token2, + ACTIONS(3762), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [67664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_index_using_token1, + ACTIONS(3766), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_index_using, + [67677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3752), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [67690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3768), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_index_col_nulls_token1, + [67699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3770), 1, + anon_sym_COMMA, + ACTIONS(3773), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [67712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3775), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 1, + aux_sym_insert_conflict_token1, + ACTIONS(3779), 1, + aux_sym_trigger_event_token2, + STATE(1598), 1, + aux_sym_trigger_event_repeat1, + [67738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, + anon_sym_RPAREN, + ACTIONS(3452), 1, + anon_sym_COMMA, + STATE(1588), 1, + aux_sym_create_table_statement_repeat1, + [67751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3663), 1, + anon_sym_COMMA, + ACTIONS(3782), 1, + anon_sym_RPAREN, + STATE(1585), 1, + aux_sym_insert_values_repeat1, + [67764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_index_using_token1, + ACTIONS(3784), 1, + anon_sym_LPAREN, + STATE(2075), 1, + sym_index_using, + [67777] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3786), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1542), 1, + aux_sym_create_index_statement_repeat1, + [67803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_create_index_statement_repeat1, + [67816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [67825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + aux_sym_sequence_min_token1, + ACTIONS(3794), 1, + aux_sym_sequence_max_token1, + ACTIONS(3796), 1, + aux_sym_sequence_cycle_token1, + [67838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3456), 1, + aux_sym_index_using_token1, + ACTIONS(3798), 1, + anon_sym_LPAREN, + STATE(1872), 1, + sym_index_using, + [67851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RPAREN, + STATE(1436), 1, + aux_sym_create_type_statement_repeat2, + [67864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3802), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 1, + anon_sym_COMMA, + ACTIONS(3804), 1, + anon_sym_RPAREN, + STATE(1552), 1, + aux_sym_create_type_statement_repeat1, + [67890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + sym__identifier, + [67899] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym__identifier, + ACTIONS(3177), 1, + aux_sym_insert_conflict_token1, + STATE(1871), 1, + sym_identifier, + [67912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_RPAREN, + STATE(1555), 1, + aux_sym_update_set_repeat1, + [67925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_RPAREN, + STATE(1556), 1, + aux_sym_update_set_repeat1, + [67938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3812), 1, + aux_sym_index_using_token1, + ACTIONS(3810), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [67949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 3, + aux_sym__interval_fields_token4, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [67958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_RBRACK, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + anon_sym_COMMA, + ACTIONS(3818), 1, + anon_sym_RPAREN, + STATE(1173), 1, + aux_sym_conflict_target_repeat1, + [67984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, + aux_sym_schema_role_token1, + ACTIONS(3820), 1, + anon_sym_SEMI, + STATE(1846), 1, + sym_schema_role, + [67997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 1, + anon_sym_COMMA, + ACTIONS(3822), 1, + anon_sym_SEMI, + STATE(1562), 1, + aux_sym_grant_roles_repeat1, + [68010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3702), 1, + anon_sym_COMMA, + ACTIONS(3822), 1, + anon_sym_SEMI, + STATE(1563), 1, + aux_sym_grant_roles_repeat1, + [68023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(3827), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1622), 1, + aux_sym_grant_targets_repeat1, + [68036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3602), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_RPAREN, + STATE(1568), 1, + aux_sym_grant_function_repeat1, + [68049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(2057), 1, + sym_identifier, + [68059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 2, anon_sym_COMMA, aux_sym_alter_table_rename_column_token2, - [82738] = 2, + [68067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [82746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1721), 1, - sym_identifier, - [82756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2216), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2243), 1, - sym_identifier, - [82790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1878), 1, - sym_dollar_quote, - [82800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 1, - anon_sym_LPAREN, - STATE(1276), 1, - sym_insert_values, - [82810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [82818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, - anon_sym_SEMI, - ACTIONS(3569), 1, - anon_sym_COLON_EQ, - [82828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [82836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, + ACTIONS(1301), 1, anon_sym_STAR, - STATE(350), 1, + STATE(406), 1, sym_star, - [82846] = 3, + [68077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, + ACTIONS(3108), 1, + sym__identifier, + STATE(2056), 1, + sym_identifier, + [68087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(2051), 1, + sym_identifier, + [68097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1433), 1, + sym_identifier, + [68107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2790), 2, anon_sym_SEMI, - ACTIONS(3575), 1, - anon_sym_DOLLAR, - [82856] = 2, + anon_sym_RPAREN, + [68115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3577), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [82864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 2, + ACTIONS(3814), 2, aux_sym__interval_fields_token5, aux_sym__interval_fields_token6, - [82872] = 2, + [68123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3831), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2941), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + STATE(1705), 1, + sym_string, + [68157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3833), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RPAREN, + [68167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(865), 1, + sym_identifier, + [68177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3837), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [68185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_SQUOTE, + STATE(134), 1, + sym_string, + [68195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 1, + aux_sym_alter_column_action_token1, + ACTIONS(3841), 1, + aux_sym_insert_items_token1, + [68213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3006), 2, anon_sym_SEMI, anon_sym_RPAREN, - [82880] = 2, + [68221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(939), 1, - sym_identifier, - [82898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - aux_sym_sequence_start_token2, - ACTIONS(3581), 1, - sym_number, - [82908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - aux_sym_function_return_token1, - STATE(2164), 1, - sym_function_return, - [82918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [82926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 1, - aux_sym_get_diagnostics_statement_token2, - ACTIONS(3587), 1, - aux_sym_get_diagnostics_statement_token3, - [82936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3589), 1, - anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_RPAREN, - [82946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_LPAREN, - STATE(1782), 1, - sym__list_of_identifiers, - [82956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3593), 1, - aux_sym_sequence_increment_token2, - ACTIONS(3595), 1, - sym_number, - [82966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, + ACTIONS(1981), 1, anon_sym_SQUOTE, - STATE(57), 1, + STATE(110), 1, sym_string, - [82984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2163), 1, - sym_identifier, - [82994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - anon_sym_COMMA, - ACTIONS(3599), 1, - anon_sym_RPAREN, - [83004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym__identifier, - STATE(1727), 1, - sym_identifier, - [83014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym__identifier, - STATE(2234), 1, - sym_identifier, - [83024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1013), 1, - sym_identifier, - [83034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1543), 1, - anon_sym_SQUOTE, - STATE(166), 1, - sym_string, - [83044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_SEMI, - [83051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - aux_sym_function_return_token1, - [83058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 1, - anon_sym_SEMI, - [83065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3605), 1, - aux_sym_if_statement_token1, - [83072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym__interval_fields_token2, - [83079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym__interval_fields_token6, - [83086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3607), 1, - anon_sym_RBRACK, - [83093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3609), 1, - aux_sym_for_statement_token2, - [83100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3611), 1, - anon_sym_RPAREN, - [83107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3613), 1, - anon_sym_SEMI, - [83114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3615), 1, - anon_sym_DOLLAR, - [83121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - anon_sym_RPAREN, - [83128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3619), 1, - aux_sym_trigger_exec_token1, - [83135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 1, - anon_sym_SEMI, - [83142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_SEMI, - [83149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 1, - anon_sym_RPAREN, - [83156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - anon_sym_SEMI, - [83163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 1, - aux_sym_insert_items_token2, - [83170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3629), 1, - anon_sym_SEMI, - [83177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3631), 1, - aux_sym_if_not_exists_token1, - [83184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - anon_sym_SEMI, - [83191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1028), 1, - anon_sym_RPAREN, - [83198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 1, - aux_sym_update_statement_token2, - [83205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 1, - aux_sym_time_expression_token3, - [83212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 1, - aux_sym_if_statement_token1, - [83219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, - aux_sym_sequence_increment_token2, - [83226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 1, - aux_sym__interval_fields_token2, - [83233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 1, - aux_sym__interval_fields_token6, - [83240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_RBRACK, - [83247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, - aux_sym_alter_column_action_token2, - [83254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - sym_number, - [83261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_RPAREN, - [83268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 1, - anon_sym_DOLLAR, - [83275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - anon_sym_RPAREN, - [83282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 1, - sym_number, - [83289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 1, - anon_sym_RPAREN, - [83296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 1, - sym_number, - [83303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - aux_sym_drop_type_statement_token2, - [83310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 1, - aux_sym_table_constraint_ty_token3, - [83317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, - aux_sym_insert_conflict_token1, - [83324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1014), 1, - anon_sym_RPAREN, - [83331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 1, - anon_sym_SEMI, - [83338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 1, - aux_sym_time_expression_token3, - [83345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 1, - anon_sym_RPAREN, - [83352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3665), 1, - aux_sym_create_schema_statement_token1, - [83359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_SEMI, - [83366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3218), 1, - aux_sym__interval_fields_token2, - [83373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 1, - aux_sym_if_not_exists_token1, - [83380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 1, - anon_sym_SEMI, - [83387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3218), 1, - aux_sym__interval_fields_token6, - [83394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - anon_sym_RBRACK, - [83401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - anon_sym_RPAREN, - [83408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_SEMI, - [83415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 1, - anon_sym_RPAREN, - [83422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3679), 1, - anon_sym_DOLLAR, - [83429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 1, - anon_sym_RPAREN, - [83436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 1, - anon_sym_SEMI, - [83443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_SEMI, - [83450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - aux_sym_insert_conflict_token3, - [83457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - aux_sym_insert_conflict_token4, - [83464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_RPAREN, - [83471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 1, - anon_sym_LPAREN, - [83478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 1, - anon_sym_SEMI, - [83485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 1, - aux_sym_if_not_exists_token1, - [83492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 1, - aux_sym_function_return_token1, - [83499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3695), 1, - aux_sym_update_statement_token2, - [83506] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1056), 1, - anon_sym_RPAREN, - [83513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - [83520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, - anon_sym_EQ, - [83527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1038), 1, - anon_sym_RPAREN, - [83534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3701), 1, - anon_sym_EQ, - [83541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3703), 1, - aux_sym_time_expression_token3, - [83548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3705), 1, - aux_sym_update_statement_token3, - [83555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_SEMI, - [83562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - anon_sym_SEMI, - [83569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3208), 1, - aux_sym__interval_fields_token2, - [83576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3709), 1, - sym_number, - [83583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3711), 1, - sym__constraint, - [83590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3208), 1, - aux_sym__interval_fields_token6, - [83597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3713), 1, - anon_sym_RBRACK, - [83604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3715), 1, - aux_sym_alter_table_rename_column_token2, - [83611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 1, - aux_sym_with_query_item_token1, - [83618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3717), 1, - anon_sym_RPAREN, - [83625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 1, - anon_sym_DOLLAR, - [83632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3721), 1, - anon_sym_RPAREN, - [83639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, - aux_sym_for_statement_token2, - [83646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_LPAREN, - [83653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_RPAREN, - [83660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - anon_sym_SEMI, - [83667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3725), 1, - anon_sym_SEMI, - [83674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - sym__identifier, - [83681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_RPAREN, - [83688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3731), 1, - aux_sym_join_item_token3, - [83695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 1, - aux_sym_join_item_token3, - [83702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_for_statement_token2, - [83709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1030), 1, - anon_sym_RPAREN, - [83716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - aux_sym_time_expression_token2, - [83723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3737), 1, - aux_sym_time_expression_token3, - [83730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_DOLLAR, - [83737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 1, - aux_sym_update_statement_token2, - [83744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 1, - aux_sym__interval_fields_token2, - [83751] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3743), 1, - aux_sym_function_return_token1, - [83758] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(3745), 1, - aux_sym_dollar_quote_string_token1, - [83765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 1, - aux_sym__interval_fields_token6, - [83772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 1, - anon_sym_RBRACK, - [83779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_SEMI, - [83786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - aux_sym_fk_ref_action_token2, - [83793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - anon_sym_RPAREN, - [83800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3753), 1, - anon_sym_DOLLAR, - [83807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3755), 1, - anon_sym_RPAREN, - [83814] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3757), 1, - anon_sym_SEMI, - [83821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 1, - anon_sym_RPAREN, - [83828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 1, - anon_sym_RPAREN, - [83835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - aux_sym_time_expression_token3, - [83842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2731), 1, - anon_sym_SEMI, - [83849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_SEMI, - [83856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_DOLLAR, - [83863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_SEMI, - [83870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_LPAREN, - [83877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2811), 1, - aux_sym_select_statement_token1, - [83884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(974), 1, - anon_sym_RPAREN, - [83891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 1, - anon_sym_RPAREN, - [83898] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 1, - aux_sym_time_expression_token3, - [83905] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3769), 1, - anon_sym_LPAREN, - [83912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 1, - aux_sym__interval_fields_token2, - [83919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_LPAREN, - [83926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - aux_sym_update_statement_token2, - [83933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 1, - aux_sym__interval_fields_token6, - [83940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 1, - anon_sym_RBRACK, - [83947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 1, - aux_sym_function_return_token1, - [83954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3777), 1, - sym__identifier, - [83961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3779), 1, - anon_sym_RPAREN, - [83968] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3781), 1, - anon_sym_DOLLAR, - [83975] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3783), 1, - anon_sym_RPAREN, - [83982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_SEMI, - [83989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_LPAREN, - [83996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 1, - anon_sym_RPAREN, - [84003] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 1, - anon_sym_SEMI, - [84010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3791), 1, - aux_sym_for_statement_token2, - [84017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - aux_sym_insert_conflict_token1, - [84024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - anon_sym_SEMI, - [84031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_SEMI, - [84038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - aux_sym_table_constraint_ty_token3, - [84045] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_LPAREN, - [84052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1002), 1, - anon_sym_RPAREN, - [84059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 1, - anon_sym_SEMI, - [84066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 1, - aux_sym_time_expression_token3, - [84073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 1, - aux_sym_insert_conflict_token1, - [84080] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - aux_sym__interval_fields_token2, - [84087] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, - anon_sym_LPAREN, - [84094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3312), 1, - anon_sym_LPAREN, - [84101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 1, - aux_sym__interval_fields_token6, - [84108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_RBRACK, - [84115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - aux_sym_update_statement_token3, - [84122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - sym_number, - [84129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3811), 1, - anon_sym_RPAREN, - [84136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_DOLLAR, - [84143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3815), 1, - anon_sym_RPAREN, - [84150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 1, - anon_sym_SEMI, - [84157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 1, - sym_number, - [84164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_RPAREN, - [84171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3819), 1, - anon_sym_SEMI, - [84178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3821), 1, - aux_sym_table_constraint_ty_token3, - [84185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3823), 1, - anon_sym_LPAREN, - [84192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - aux_sym_insert_conflict_token1, - [84199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_LPAREN, - [84206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3829), 1, - aux_sym_update_statement_token2, - [84213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3831), 1, - anon_sym_RPAREN, - [84220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - anon_sym_RPAREN, - [84227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, - anon_sym_DOLLAR, - [84234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3835), 1, - aux_sym_time_expression_token3, - [84241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3837), 1, - aux_sym_insert_conflict_token2, - [84248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - aux_sym__interval_fields_token2, - [84255] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 1, - aux_sym_insert_conflict_token3, - [84262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 1, - anon_sym_SEMI, - [84269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - aux_sym__interval_fields_token6, - [84276] = 2, + [68231] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3843), 1, - anon_sym_RBRACK, - [84283] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3845), 1, - aux_sym_if_statement_token1, - [84290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3821), 1, - aux_sym_alter_column_action_token2, - [84297] = 2, + anon_sym_RPAREN, + [68241] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3847), 1, - anon_sym_RPAREN, - [84304] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(3849), 1, - anon_sym_DOLLAR, - [84311] = 2, + aux_sym_create_type_statement_token2, + [68251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(3773), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [84318] = 2, + [68259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - aux_sym_for_statement_token2, - [84325] = 2, + ACTIONS(3756), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [68267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, - aux_sym_trigger_scope_token1, - [84332] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1063), 1, + sym_identifier, + [68277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, + ACTIONS(2128), 1, + anon_sym_LPAREN, + STATE(1731), 1, + sym__list_of_identifiers, + [68287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [84339] = 2, + [68295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3777), 2, + aux_sym_insert_conflict_token1, + aux_sym_trigger_event_token2, + [68303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3851), 2, + aux_sym_index_col_nulls_token2, + aux_sym_index_col_nulls_token3, + [68319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3853), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1601), 1, + sym_identifier, + [68345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3855), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [68353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + STATE(2085), 1, + sym_trigger_exec, + [68363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3750), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1042), 1, + sym_identifier, + [68381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1987), 1, + anon_sym_STAR, + STATE(345), 1, + sym_star, + [68391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(820), 1, + sym_identifier, + [68401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [68409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3857), 1, - anon_sym_SEMI, - [84346] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_increment_token2, ACTIONS(3859), 1, - anon_sym_SEMI, - [84353] = 2, + sym_number, + [68419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 1, - aux_sym_create_table_statement_token1, - [84360] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(2088), 1, + sym_identifier, + [68429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3861), 2, + aux_sym_constraint_when_token3, + aux_sym_constraint_when_token4, + [68437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3863), 1, - anon_sym_SEMI, - [84367] = 2, + aux_sym_update_statement_token1, + ACTIONS(3865), 1, + aux_sym_insert_conflict_token4, + [68447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, - aux_sym_insert_conflict_token3, - [84374] = 2, + ACTIONS(3741), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2442), 1, + aux_sym_constraint_foreign_key_token1, + STATE(1319), 1, + sym_constraint_foreign_key, + [68465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3240), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68473] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3867), 1, - aux_sym_get_diagnostics_statement_token3, - [84381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - [84388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 1, - anon_sym_RPAREN, - [84395] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_start_token2, ACTIONS(3869), 1, - aux_sym_for_statement_token2, - [84402] = 2, + sym_number, + [68483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - aux_sym_time_expression_token3, - [84409] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(802), 1, + sym_identifier, + [68493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, - aux_sym_create_function_statement_token1, - [84416] = 2, + ACTIONS(3244), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, - aux_sym__interval_fields_token2, - [84423] = 2, + ACTIONS(3108), 1, + sym__identifier, + STATE(1885), 1, + sym_identifier, + [68511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3871), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_STAR, + STATE(97), 1, + sym_star, + [68529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1925), 1, + anon_sym_SQUOTE, + STATE(8), 1, + sym_string, + [68547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3873), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2804), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3726), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3875), 1, - anon_sym_SEMI, - [84430] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3877), 1, - aux_sym_for_statement_token2, - [84437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym__interval_fields_token6, - [84444] = 2, + anon_sym_RPAREN, + [68589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3879), 1, - anon_sym_RBRACK, - [84451] = 2, + aux_sym_function_return_token1, + STATE(1887), 1, + sym_function_return, + [68599] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3881), 1, - aux_sym_alter_table_rename_column_token2, - [84458] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3883), 1, - anon_sym_SEMI, - [84465] = 2, + anon_sym_RPAREN, + [68609] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3885), 1, - anon_sym_RPAREN, - [84472] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3887), 1, - anon_sym_DOLLAR, - [84479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 1, anon_sym_RPAREN, - [84486] = 2, + [68619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_SEMI, - [84493] = 2, + ACTIONS(1907), 1, + anon_sym_SQUOTE, + STATE(61), 1, + sym_string, + [68629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + STATE(749), 1, + sym__list_of_identifiers, + [68639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3889), 2, + anon_sym_LPAREN, + sym__identifier, + [68647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(751), 1, + sym_identifier, + [68657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3891), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [68665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [68673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3893), 1, - anon_sym_SEMI, - [84500] = 2, + sym__identifier, + STATE(948), 1, + sym_identifier, + [68683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 1, + ACTIONS(3108), 1, + sym__identifier, + STATE(1620), 1, + sym_identifier, + [68693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3704), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1754), 1, + sym_identifier, + [68711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(973), 1, + sym_identifier, + [68721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [84507] = 2, + [68729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3689), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(2011), 1, + sym_identifier, + [68763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(794), 1, + sym_identifier, + [68773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_STAR, + STATE(308), 1, + sym_star, + [68783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3678), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3895), 1, - aux_sym_drop_function_statement_token1, - [84514] = 2, + anon_sym_LPAREN, + STATE(1125), 1, + sym_insert_values, + [68801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - aux_sym_for_statement_token2, - [84521] = 2, + ACTIONS(1236), 1, + anon_sym_STAR, + STATE(337), 1, + sym_star, + [68811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3899), 1, + ACTIONS(3897), 2, + aux_sym_function_run_as_token2, + aux_sym_function_run_as_token3, + [68819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 2, anon_sym_SEMI, - [84528] = 2, + aux_sym_function_run_as_token1, + [68827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3901), 1, - anon_sym_LPAREN, - [84535] = 2, + sym__identifier, + STATE(1472), 1, + sym_identifier, + [68837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, - aux_sym_insert_conflict_token1, - [84542] = 2, + ACTIONS(2998), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [68853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1287), 1, + sym_identifier, + [68863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2810), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1900), 1, + sym_identifier, + [68881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [68889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3905), 1, - aux_sym_for_statement_token2, - [84549] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_get_diagnostics_statement_token2, ACTIONS(3907), 1, - aux_sym_time_expression_token3, - [84556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - anon_sym_RPAREN, - [84563] = 2, + aux_sym_get_diagnostics_statement_token3, + [68899] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1833), 1, + anon_sym_SEMI, ACTIONS(3909), 1, - aux_sym_grant_targets_token4, - [84570] = 2, + anon_sym_COMMA, + [68909] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3911), 1, - aux_sym_time_expression_token3, - [84577] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(3913), 1, - anon_sym_RPAREN, - [84584] = 2, + anon_sym_DOLLAR, + [68919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 1, - aux_sym__interval_fields_token2, - [84591] = 2, + ACTIONS(3915), 2, + aux_sym_update_statement_token1, + aux_sym_delete_statement_token1, + [68927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 1, - aux_sym_if_statement_token1, - [84598] = 2, + ACTIONS(3335), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [68935] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3917), 1, - anon_sym_LPAREN, - [84605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - aux_sym__interval_fields_token6, - [84612] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3919), 1, - anon_sym_RBRACK, - [84619] = 2, + anon_sym_RPAREN, + [68945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3087), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2870), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [68961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + anon_sym_LPAREN, + STATE(1188), 1, + sym_insert_values, + [68971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3921), 1, - aux_sym_function_return_token1, - [84626] = 2, + anon_sym_SQUOTE, + STATE(357), 1, + sym_string, + [68981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1526), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3923), 1, - aux_sym_with_query_item_token1, - [84633] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3925), 1, anon_sym_RPAREN, - [84640] = 2, + [68999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 1, - anon_sym_DOLLAR, - [84647] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, + ACTIONS(3238), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [84654] = 2, + [69007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, - aux_sym_join_item_token3, - [84661] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1081), 1, + sym_identifier, + [69017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3927), 2, + anon_sym_SEMI, + aux_sym_where_filter_token1, + [69025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3645), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3929), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [69041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [69049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1593), 1, + sym_identifier, + [69059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(829), 1, + sym_identifier, + [69069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_STAR, + STATE(554), 1, + sym_star, + [69079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3933), 1, - anon_sym_SEMI, - [84668] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3935), 1, - aux_sym_for_statement_token2, - [84675] = 2, + anon_sym_RPAREN, + [69089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 1, - anon_sym_RPAREN, - [84682] = 2, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + STATE(2104), 1, + sym_trigger_exec, + [69099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym__list_of_identifiers, + [69109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + STATE(1337), 1, + sym__list_of_identifiers, + [69119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3937), 1, - aux_sym_select_statement_token1, - [84689] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(3939), 1, - anon_sym_RBRACK, - [84696] = 2, + anon_sym_COLON_EQ, + [69129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, + ACTIONS(3941), 2, anon_sym_SEMI, - [84703] = 2, + aux_sym_create_function_statement_token1, + [69137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3943), 2, anon_sym_SEMI, - [84710] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, anon_sym_RPAREN, - [84717] = 2, + [69145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 1, - anon_sym_RPAREN, - [84724] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1607), 1, + sym_identifier, + [69155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, - aux_sym__interval_fields_token2, - [84731] = 2, + ACTIONS(3115), 1, + anon_sym_DOLLAR, + STATE(1791), 1, + sym_dollar_quote, + [69165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3357), 1, - aux_sym__interval_fields_token6, - [84738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3100), 1, + ACTIONS(2961), 2, anon_sym_SEMI, - [84745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 1, anon_sym_RPAREN, - [84752] = 2, + [69173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 1, - aux_sym_insert_conflict_token3, - [84759] = 2, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + STATE(1575), 1, + sym_string, + [69183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [69191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3609), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3947), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [69223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [69231] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3951), 1, - anon_sym_SEMI, - [84766] = 2, + anon_sym_SQUOTE, + STATE(405), 1, + sym_string, + [69241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 1, - sym_number, - [84773] = 2, + ACTIONS(3953), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3228), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3955), 1, - anon_sym_SEMI, - [84780] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(3957), 1, - anon_sym_LPAREN, - [84787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 1, anon_sym_RPAREN, - [84794] = 2, + [69267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 1, - sym_number, - [84801] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(980), 1, + sym_identifier, + [69277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - anon_sym_RBRACK, - [84808] = 2, + ACTIONS(3584), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3963), 1, - aux_sym_alter_table_rename_column_token2, - [84815] = 2, + ACTIONS(3590), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 1, + anon_sym_DOLLAR, + STATE(1743), 1, + sym_dollar_quote, + [69303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_LPAREN, + STATE(1376), 1, + sym__list_of_identifiers, + [69313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3959), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [69329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1349), 1, + sym_identifier, + [69339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + aux_sym_trigger_exec_token1, + STATE(2127), 1, + sym_trigger_exec, + [69349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 2, + anon_sym_LPAREN, + sym__identifier, + [69357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(783), 1, + sym_identifier, + [69367] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3965), 1, - aux_sym_select_statement_token1, - [84822] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_drop_type_statement_token2, ACTIONS(3967), 1, - aux_sym_alter_column_action_token1, - [84829] = 2, + aux_sym_drop_function_statement_token1, + [69377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(962), 1, + ACTIONS(3047), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [84836] = 2, + [69385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - aux_sym_update_statement_token3, - [84843] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1487), 1, + sym_identifier, + [69395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(3969), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [69403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [69411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + anon_sym_STAR, + STATE(574), 1, + sym_star, + [69421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 2, anon_sym_SEMI, - [84850] = 2, + anon_sym_RPAREN, + [69429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, + ACTIONS(2866), 2, anon_sym_SEMI, - [84857] = 2, + anon_sym_RPAREN, + [69437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, - anon_sym_LPAREN, - [84864] = 2, + ACTIONS(3975), 2, + aux_sym_insert_items_token1, + aux_sym_alter_column_action_token2, + [69445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(2029), 1, + sym_identifier, + [69455] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3977), 1, - aux_sym_update_statement_token2, - [84871] = 2, + anon_sym_LPAREN, + STATE(2031), 1, + sym_function_parameters, + [69465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(994), 1, - anon_sym_RPAREN, - [84878] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1967), 1, + sym_identifier, + [69475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1965), 1, + sym_identifier, + [69485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1962), 1, + sym_identifier, + [69495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3879), 1, + aux_sym_function_return_token1, + STATE(2032), 1, + sym_function_return, + [69505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [69513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1178), 1, + sym_identifier, + [69523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1961), 1, + sym_identifier, + [69533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1264), 1, + sym_identifier, + [69543] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3979), 1, - aux_sym_create_function_statement_token1, - [84885] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(3981), 1, - anon_sym_RPAREN, - [84892] = 2, + aux_sym_update_statement_token2, + [69553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 1, - aux_sym_update_statement_token3, - [84899] = 2, + ACTIONS(2714), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(976), 1, - anon_sym_RPAREN, - [84906] = 2, + ACTIONS(3983), 2, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + [69569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(2050), 1, + sym_identifier, + [69579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3985), 1, - aux_sym_function_return_token1, - [84913] = 2, + anon_sym_SEMI, + ACTIONS(3987), 1, + anon_sym_DOLLAR, + [69589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - anon_sym_RPAREN, - [84920] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1286), 1, + sym_identifier, + [69599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 1, + anon_sym_SQUOTE, + STATE(1718), 1, + sym_string, + [69609] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3989), 1, anon_sym_SEMI, - [84927] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(3991), 1, - anon_sym_LBRACK, - [84934] = 2, + anon_sym_COMMA, + [69619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3993), 1, - aux_sym_alter_column_action_token1, - [84941] = 2, + anon_sym_SQUOTE, + STATE(42), 1, + sym_string, + [69629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, - anon_sym_SEMI, - [84948] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1293), 1, + sym_identifier, + [69639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 2, + anon_sym_LPAREN, + sym__identifier, + [69647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 1, + anon_sym_SQUOTE, + STATE(7), 1, + sym_string, + [69657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3997), 1, - aux_sym_time_expression_token2, - [84955] = 2, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RPAREN, + [69667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3999), 1, - anon_sym_EQ, - [84962] = 2, + ACTIONS(3901), 1, + sym__identifier, + STATE(1829), 1, + sym_identifier, + [69677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1312), 1, + sym_identifier, + [69687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2858), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3353), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1955), 1, + sym_identifier, + [69729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2848), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4001), 1, - aux_sym_if_not_exists_token1, - [84969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4003), 1, aux_sym_join_item_token3, - [84976] = 2, + ACTIONS(4003), 1, + aux_sym_join_type_token3, + [69747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4005), 1, - aux_sym_update_statement_token4, - [84983] = 2, + anon_sym_SQUOTE, + STATE(87), 1, + sym_string, + [69757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4007), 1, - aux_sym_insert_statement_token2, - [84990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, + ACTIONS(4007), 2, + anon_sym_SEMI, anon_sym_RPAREN, - [84997] = 2, + [69765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 1, - anon_sym_LPAREN, - [85004] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1933), 1, + sym_identifier, + [69775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, - sym_number, - [85011] = 2, + ACTIONS(3506), 1, + aux_sym_insert_conflict_token1, + ACTIONS(4009), 1, + aux_sym_grant_privileges_token2, + [69785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 1, + sym__identifier, + STATE(935), 1, + sym_identifier, + [69803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1003), 1, + sym_identifier, + [69813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_SQUOTE, + STATE(40), 1, + sym_string, + [69823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [69831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4013), 1, - sym_number, - [85018] = 2, + anon_sym_LPAREN, + ACTIONS(4015), 1, + aux_sym_update_set_token1, + [69841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 1, - anon_sym_SEMI, - [85025] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1401), 1, + sym_identifier, + [69851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1949), 1, + sym_identifier, + [69861] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4017), 1, - aux_sym_insert_conflict_token1, - [85032] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(4019), 1, - sym__identifier, - [85039] = 2, + anon_sym_RPAREN, + [69871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_LBRACK, - [85046] = 2, + ACTIONS(3252), 1, + sym__identifier, + STATE(1789), 1, + sym_identifier, + [69881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1330), 1, + sym_identifier, + [69891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 1, + anon_sym_STAR, + STATE(98), 1, + sym_star, + [69901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 2, + aux_sym__interval_fields_token5, + aux_sym__interval_fields_token6, + [69917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2303), 2, + anon_sym_COMMA, + aux_sym_grant_targets_token4, + [69925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1140), 1, + anon_sym_STAR, + STATE(251), 1, + sym_star, + [69935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 2, + aux_sym_schema_role_token1, + sym__identifier, + [69943] = 3, + ACTIONS(29), 1, + aux_sym_psql_statement_token1, + ACTIONS(31), 1, + sym__identifier, + ACTIONS(3234), 1, + sym_comment, + [69953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4023), 1, - sym_number, - [85053] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(697), 1, - anon_sym_LPAREN, - [85060] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(4025), 1, + anon_sym_RPAREN, + [69963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, sym__identifier, - [85067] = 2, + STATE(802), 1, + sym_identifier, + [69973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, - aux_sym_sequence_increment_token2, - [85074] = 2, + ACTIONS(1957), 1, + anon_sym_STAR, + STATE(414), 1, + sym_star, + [69983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_LBRACK, - [85081] = 2, + ACTIONS(4027), 2, + anon_sym_EQ, + anon_sym_COLON_EQ, + [69991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, + sym__identifier, + STATE(1259), 1, + sym_identifier, + [70001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + sym__identifier, + STATE(1534), 1, + sym_identifier, + [70011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 2, + aux_sym_insert_conflict_token1, + sym__identifier, + [70019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + sym__identifier, + STATE(1399), 1, + sym_identifier, + [70029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [70037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1805), 1, + anon_sym_STAR, + STATE(243), 1, + sym_star, + [70047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1951), 1, + anon_sym_SQUOTE, + STATE(133), 1, + sym_string, + [70057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4031), 1, - aux_sym_alter_column_action_token1, - [85088] = 2, + anon_sym_LPAREN, + [70064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4033), 1, - aux_sym_sequence_increment_token2, - [85095] = 2, + aux_sym_time_expression_token2, + [70071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4035), 1, - aux_sym_time_expression_token2, - [85102] = 2, + anon_sym_SEMI, + [70078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1494), 1, + anon_sym_RPAREN, + [70085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4037), 1, - anon_sym_LPAREN, - [85109] = 2, + aux_sym_table_constraint_ty_token3, + [70092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4039), 1, - aux_sym_join_item_token3, - [85116] = 2, + aux_sym_table_constraint_ty_token3, + [70099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4041), 1, - aux_sym_insert_conflict_token1, - [85123] = 2, + aux_sym_function_return_token1, + [70106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4043), 1, - anon_sym_SEMI, - [85130] = 2, + aux_sym_if_not_exists_token1, + [70113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4045), 1, - anon_sym_LPAREN, - [85137] = 2, + anon_sym_SEMI, + [70120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4047), 1, - sym_number, - [85144] = 2, + sym__identifier, + [70127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1470), 1, + anon_sym_RPAREN, + [70134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1488), 1, + anon_sym_RPAREN, + [70141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4049), 1, - sym_number, - [85151] = 2, + aux_sym_time_expression_token3, + [70148] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4051), 1, - sym__identifier, - [85158] = 2, + aux_sym_update_statement_token2, + [70155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4053), 1, - sym_number, - [85165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2762), 1, - anon_sym_SEMI, - [85172] = 2, + anon_sym_LPAREN, + [70162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4055), 1, - aux_sym_insert_conflict_token1, - [85179] = 2, + anon_sym_DOLLAR, + [70169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + aux_sym__interval_fields_token2, + [70176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4057), 1, - anon_sym_LBRACK, - [85186] = 2, + anon_sym_RPAREN, + [70183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4059), 1, - aux_sym_time_expression_token2, - [85193] = 2, + anon_sym_RBRACK, + [70190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + aux_sym__interval_fields_token6, + [70197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4061), 1, - anon_sym_SEMI, - [85200] = 2, + anon_sym_RBRACK, + [70204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__interval_fields_token6, + [70211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4063), 1, - aux_sym_join_item_token3, - [85207] = 2, + anon_sym_LPAREN, + [70218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__interval_fields_token2, + [70225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4065), 1, - anon_sym_SEMI, - [85214] = 2, + anon_sym_RPAREN, + [70232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4067), 1, anon_sym_DOLLAR, - [85221] = 2, + [70239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4069), 1, - sym_number, - [85228] = 2, + anon_sym_RPAREN, + [70246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4071), 1, - sym_number, - [85235] = 2, + aux_sym_insert_conflict_token1, + [70253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3454), 1, + anon_sym_LPAREN, + [70260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4073), 1, - sym__identifier, - [85242] = 2, + sym_number, + [70267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4075), 1, sym_number, - [85249] = 2, + [70274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1442), 1, + anon_sym_RPAREN, + [70281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4077), 1, - anon_sym_SEMI, - [85256] = 2, + aux_sym_time_expression_token3, + [70288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4079), 1, anon_sym_SEMI, - [85263] = 2, + [70295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3099), 1, + anon_sym_SEMI, + [70302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4081), 1, - anon_sym_LBRACK, - [85270] = 2, + anon_sym_LPAREN, + [70309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4083), 1, - aux_sym_time_expression_token2, - [85277] = 2, + aux_sym_time_expression_token3, + [70316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1434), 1, + anon_sym_RPAREN, + [70323] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4085), 1, - anon_sym_SEMI, - [85284] = 2, - ACTIONS(3), 1, + aux_sym_insert_conflict_token1, + [70330] = 2, + ACTIONS(3234), 1, sym_comment, ACTIONS(4087), 1, - aux_sym_join_item_token3, - [85291] = 2, + aux_sym_dollar_quote_string_token1, + [70337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_RPAREN, + [70344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4089), 1, - aux_sym_update_statement_token2, - [85298] = 2, + anon_sym_LPAREN, + [70351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4091), 1, - aux_sym_drop_function_statement_token1, - [85305] = 2, + aux_sym_time_expression_token3, + [70358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4093), 1, - sym_number, - [85312] = 2, + aux_sym_update_statement_token2, + [70365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + aux_sym_join_item_token3, + [70372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4095), 1, - sym_number, - [85319] = 2, + anon_sym_SEMI, + [70379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym__interval_fields_token2, + [70386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4097), 1, - sym__identifier, - [85326] = 2, + aux_sym_if_not_exists_token1, + [70393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4099), 1, - sym_number, - [85333] = 2, + anon_sym_RPAREN, + [70400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym__interval_fields_token6, + [70407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4101), 1, - aux_sym_create_trigger_statement_token1, - [85340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - aux_sym_create_table_statement_token1, - [85347] = 2, + anon_sym_RBRACK, + [70414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4103), 1, - anon_sym_LBRACK, - [85354] = 2, + aux_sym_insert_conflict_token2, + [70421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1498), 1, + anon_sym_RPAREN, + [70428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4105), 1, - aux_sym_time_expression_token2, - [85361] = 2, + anon_sym_RPAREN, + [70435] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4107), 1, - aux_sym_alter_table_rename_column_token2, - [85368] = 2, + anon_sym_DOLLAR, + [70442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4109), 1, - aux_sym_join_item_token3, - [85375] = 2, + anon_sym_RPAREN, + [70449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4111), 1, - aux_sym_or_replace_token1, - [85382] = 2, + aux_sym_trigger_scope_token1, + [70456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4113), 1, - anon_sym_SEMI, - [85389] = 2, + aux_sym_join_item_token3, + [70463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4115), 1, - sym_number, - [85396] = 2, + anon_sym_RPAREN, + [70470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4117), 1, - sym_number, - [85403] = 2, + aux_sym_get_diagnostics_statement_token3, + [70477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1484), 1, + anon_sym_RPAREN, + [70484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_DOLLAR, + [70491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4119), 1, - sym__identifier, - [85410] = 2, + anon_sym_SEMI, + [70498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + [70505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym_with_query_item_token1, + [70512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4121), 1, - sym_number, - [85417] = 2, + aux_sym_alter_table_rename_column_token2, + [70519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4123), 1, aux_sym_alter_table_rename_column_token2, - [85424] = 2, + [70526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4125), 1, - aux_sym_create_index_statement_token2, - [85431] = 2, + anon_sym_LPAREN, + [70533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4127), 1, - anon_sym_LBRACK, - [85438] = 2, + aux_sym_grant_targets_token4, + [70540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_RPAREN, + [70547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4129), 1, - aux_sym_time_expression_token2, - [85445] = 2, + anon_sym_RPAREN, + [70554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4131), 1, - sym_number, - [85452] = 2, + aux_sym_time_expression_token3, + [70561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4133), 1, - sym_number, - [85459] = 2, + anon_sym_LPAREN, + [70568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3596), 1, + anon_sym_SEMI, + [70575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4135), 1, - sym__identifier, - [85466] = 2, + aux_sym_with_query_item_token1, + [70582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 1, + aux_sym__interval_fields_token2, + [70589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4137), 1, - sym_number, - [85473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - anon_sym_SEMI, - [85480] = 2, + aux_sym_join_item_token3, + [70596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4139), 1, - anon_sym_LBRACK, - [85487] = 2, + anon_sym_DOLLAR, + [70603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 1, + aux_sym__interval_fields_token6, + [70610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4141), 1, - aux_sym_time_expression_token2, - [85494] = 2, + anon_sym_RBRACK, + [70617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 1, + aux_sym__interval_fields_token6, + [70624] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4143), 1, sym_number, - [85501] = 2, + [70631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4145), 1, - sym_number, - [85508] = 2, + anon_sym_RPAREN, + [70638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4147), 1, - sym__identifier, - [85515] = 2, + anon_sym_DOLLAR, + [70645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4149), 1, - sym_number, - [85522] = 2, + anon_sym_RPAREN, + [70652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4151), 1, - aux_sym_function_return_token1, - [85529] = 2, + sym_number, + [70659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4153), 1, - anon_sym_LBRACK, - [85536] = 2, + anon_sym_RBRACK, + [70666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1510), 1, + anon_sym_RPAREN, + [70673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4155), 1, - aux_sym_time_expression_token2, - [85543] = 2, + anon_sym_SEMI, + [70680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4157), 1, - sym_number, - [85550] = 2, + aux_sym_update_statement_token3, + [70687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4159), 1, - sym_number, - [85557] = 2, + aux_sym_create_schema_statement_token1, + [70694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4161), 1, - sym__identifier, - [85564] = 2, + anon_sym_SEMI, + [70701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4163), 1, - sym_number, - [85571] = 2, + anon_sym_LPAREN, + [70708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4165), 1, - aux_sym_create_schema_statement_token1, - [85578] = 2, + aux_sym_update_statement_token2, + [70715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4167), 1, - anon_sym_LBRACK, - [85585] = 2, + aux_sym_create_function_statement_token1, + [70722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 1, + anon_sym_RPAREN, + [70729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4169), 1, - aux_sym_time_expression_token2, - [85592] = 2, + aux_sym_function_return_token1, + [70736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4171), 1, - sym_number, - [85599] = 2, + aux_sym_time_expression_token3, + [70743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4173), 1, - sym_number, - [85606] = 2, + aux_sym_sequence_increment_token2, + [70750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4175), 1, - sym__identifier, - [85613] = 2, + anon_sym_SEMI, + [70757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3645), 1, + aux_sym__interval_fields_token2, + [70764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 1, + anon_sym_LPAREN, + [70771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4177), 1, - sym_number, - [85620] = 2, + aux_sym_insert_conflict_token1, + [70778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3645), 1, + aux_sym__interval_fields_token6, + [70785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4179), 1, - anon_sym_SEMI, - [85627] = 2, + anon_sym_RBRACK, + [70792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4181), 1, - anon_sym_LBRACK, - [85634] = 2, + anon_sym_LPAREN, + [70799] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4183), 1, - aux_sym_time_expression_token2, - [85641] = 2, + aux_sym_insert_conflict_token1, + [70806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4185), 1, - sym_number, - [85648] = 2, + anon_sym_RPAREN, + [70813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4187), 1, - sym_number, - [85655] = 2, + anon_sym_DOLLAR, + [70820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4189), 1, - sym__identifier, - [85662] = 2, + anon_sym_RPAREN, + [70827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4191), 1, - sym_number, - [85669] = 2, + anon_sym_SEMI, + [70834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4193), 1, - sym_number, - [85676] = 2, + anon_sym_LPAREN, + [70841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 1, + anon_sym_RPAREN, + [70848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 1, + aux_sym__interval_fields_token2, + [70855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4195), 1, - sym_number, - [85683] = 2, + anon_sym_SEMI, + [70862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4197), 1, - sym_number, - [85690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, anon_sym_SEMI, - [85697] = 2, + [70869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4199), 1, - anon_sym_LPAREN, - [85704] = 2, + anon_sym_DOLLAR, + [70876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4201), 1, - anon_sym_DOLLAR, - [85711] = 2, + anon_sym_SEMI, + [70883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4203), 1, - anon_sym_SEMI, - [85718] = 2, + aux_sym_alter_table_rename_column_token2, + [70890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4205), 1, - ts_builtin_sym_end, - [85725] = 2, + aux_sym_insert_items_token2, + [70897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1458), 1, + anon_sym_RPAREN, + [70904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, anon_sym_SEMI, - [85732] = 2, + [70911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4209), 1, - anon_sym_DOLLAR, - [85739] = 2, + aux_sym_time_expression_token3, + [70918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4211), 1, - anon_sym_RPAREN, - [85746] = 2, + aux_sym_alter_table_rename_column_token2, + [70925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 1, + aux_sym__interval_fields_token2, + [70932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4213), 1, - anon_sym_LPAREN, - [85753] = 2, + aux_sym_create_schema_statement_token1, + [70939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4215), 1, - anon_sym_DOLLAR, - [85760] = 2, + anon_sym_SEMI, + [70946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 1, + aux_sym__interval_fields_token6, + [70953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4217), 1, - aux_sym_create_table_statement_token1, - [85767] = 2, + anon_sym_RBRACK, + [70960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4219), 1, - aux_sym_update_statement_token4, - [85774] = 2, + anon_sym_RPAREN, + [70967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4221), 1, - anon_sym_DOLLAR, - [85781] = 2, + aux_sym_function_return_token1, + [70974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4223), 1, - sym__identifier, - [85788] = 2, + anon_sym_RPAREN, + [70981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4225), 1, - aux_sym_insert_statement_token2, - [85795] = 2, + anon_sym_DOLLAR, + [70988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4227), 1, - anon_sym_DOLLAR, - [85802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - anon_sym_SEMI, - [85809] = 2, + anon_sym_RPAREN, + [70995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4229), 1, - anon_sym_DOLLAR, - [85816] = 2, + sym__identifier, + [71002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4231), 1, - anon_sym_DOLLAR, - [85823] = 2, + anon_sym_RPAREN, + [71009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 1, + anon_sym_RPAREN, + [71016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4233), 1, - anon_sym_DOLLAR, - [85830] = 2, + anon_sym_SEMI, + [71023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4235), 1, - anon_sym_DOLLAR, - [85837] = 2, + anon_sym_RPAREN, + [71030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4237), 1, - anon_sym_DOLLAR, - [85844] = 2, - ACTIONS(2819), 1, + sym_number, + [71037] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4239), 1, - aux_sym_dollar_quote_string_token1, - [85851] = 2, - ACTIONS(2819), 1, + aux_sym_function_return_token1, + [71044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3794), 1, + sym_number, + [71051] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4241), 1, - aux_sym_dollar_quote_string_token1, - [85858] = 2, - ACTIONS(2819), 1, + anon_sym_SEMI, + [71058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, + sym_number, + [71065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_RPAREN, + [71072] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4243), 1, - aux_sym_dollar_quote_string_token1, - [85865] = 2, - ACTIONS(2819), 1, + aux_sym_alter_column_action_token2, + [71079] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4245), 1, - aux_sym_dollar_quote_string_token1, - [85872] = 2, - ACTIONS(2819), 1, + aux_sym_time_expression_token3, + [71086] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4247), 1, - aux_sym_dollar_quote_string_token1, - [85879] = 2, - ACTIONS(2819), 1, + anon_sym_LPAREN, + [71093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, + aux_sym__interval_fields_token2, + [71100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 1, + aux_sym_table_constraint_ty_token3, + [71107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3766), 1, + anon_sym_LPAREN, + [71114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3756), 1, + aux_sym__interval_fields_token6, + [71121] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4249), 1, - aux_sym_dollar_quote_string_token1, - [85886] = 2, - ACTIONS(2819), 1, + anon_sym_RBRACK, + [71128] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4251), 1, - aux_sym_dollar_quote_string_token1, - [85893] = 2, - ACTIONS(2819), 1, + aux_sym_create_function_statement_token1, + [71135] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4253), 1, - aux_sym_dollar_quote_string_token1, - [85900] = 2, - ACTIONS(2819), 1, + sym__constraint, + [71142] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4255), 1, - aux_sym_dollar_quote_string_token1, - [85907] = 2, - ACTIONS(2819), 1, + anon_sym_RPAREN, + [71149] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4257), 1, - aux_sym_dollar_quote_string_token1, - [85914] = 2, + anon_sym_DOLLAR, + [71156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4259), 1, - anon_sym_DOLLAR, - [85921] = 2, + anon_sym_RPAREN, + [71163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4261), 1, - anon_sym_DOLLAR, - [85928] = 2, + aux_sym_insert_conflict_token4, + [71170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4263), 1, - anon_sym_DOLLAR, - [85935] = 2, + aux_sym_insert_conflict_token3, + [71177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1436), 1, + anon_sym_RPAREN, + [71184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4265), 1, - anon_sym_DOLLAR, - [85942] = 2, + aux_sym_for_statement_token2, + [71191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4267), 1, - anon_sym_DOLLAR, - [85949] = 2, + anon_sym_SEMI, + [71198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4269), 1, - anon_sym_DOLLAR, - [85956] = 2, + aux_sym_insert_conflict_token1, + [71205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4271), 1, - anon_sym_DOLLAR, - [85963] = 2, + anon_sym_SEMI, + [71212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4273), 1, - anon_sym_DOLLAR, - [85970] = 2, + aux_sym_alter_column_action_token2, + [71219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4275), 1, - anon_sym_DOLLAR, - [85977] = 2, + aux_sym_drop_type_statement_token2, + [71226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4277), 1, - anon_sym_DOLLAR, - [85984] = 2, + anon_sym_SEMI, + [71233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1512), 1, + anon_sym_RPAREN, + [71240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3820), 1, + anon_sym_SEMI, + [71247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4279), 1, - sym__identifier, - [85991] = 2, + aux_sym_time_expression_token3, + [71254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4281), 1, - sym__identifier, - [85998] = 2, + anon_sym_RPAREN, + [71261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + aux_sym__interval_fields_token2, + [71268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4283), 1, - sym__identifier, - [86005] = 2, + anon_sym_DOLLAR, + [71275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4285), 1, - sym__identifier, - [86012] = 2, + sym_number, + [71282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + aux_sym__interval_fields_token6, + [71289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4287), 1, - sym__identifier, - [86019] = 2, + anon_sym_RBRACK, + [71296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4289), 1, - sym__identifier, - [86026] = 2, + anon_sym_SEMI, + [71303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4291), 1, - sym__identifier, - [86033] = 2, + aux_sym_update_statement_token2, + [71310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4293), 1, - sym__identifier, - [86040] = 2, + anon_sym_RPAREN, + [71317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4295), 1, - sym__identifier, - [86047] = 2, + anon_sym_DOLLAR, + [71324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4297), 1, + anon_sym_RPAREN, + [71331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + anon_sym_SEMI, + [71338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 1, + aux_sym_function_return_token1, + [71345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1468), 1, + anon_sym_RPAREN, + [71352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_LPAREN, + [71359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + aux_sym_if_not_exists_token1, + [71366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4307), 1, + aux_sym_function_return_token1, + [71373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4309), 1, + aux_sym_update_statement_token2, + [71380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + anon_sym_SEMI, + [71387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + anon_sym_LPAREN, + [71394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 1, + anon_sym_EQ, + [71401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_RPAREN, + [71408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 1, + anon_sym_EQ, + [71415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4317), 1, + aux_sym_time_expression_token3, + [71422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 1, + anon_sym_SEMI, + [71429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 1, + aux_sym__interval_fields_token2, + [71436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_LPAREN, + [71443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, + anon_sym_SEMI, + [71450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3758), 1, + aux_sym__interval_fields_token6, + [71457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4323), 1, + anon_sym_RBRACK, + [71464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + aux_sym_insert_conflict_token3, + [71471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4327), 1, + aux_sym_if_statement_token1, + [71478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4329), 1, + anon_sym_RPAREN, + [71485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, + anon_sym_DOLLAR, + [71492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 1, + anon_sym_RPAREN, + [71499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 1, + aux_sym_update_statement_token3, + [71506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4337), 1, + anon_sym_SEMI, + [71513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, + anon_sym_RPAREN, + [71520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3206), 1, + anon_sym_SEMI, + [71527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3224), 1, + anon_sym_SEMI, + [71534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 1, + sym__identifier, + [71541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4341), 1, + anon_sym_SEMI, + [71548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4343), 1, + aux_sym_alter_table_rename_column_token2, + [71555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_RPAREN, + [71562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 1, + anon_sym_RPAREN, + [71569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1462), 1, + anon_sym_RPAREN, + [71576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_SEMI, + [71583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 1, + aux_sym_time_expression_token3, + [71590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4353), 1, + anon_sym_SEMI, + [71597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, + aux_sym__interval_fields_token2, + [71604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 1, + aux_sym_update_statement_token2, + [71611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_SEMI, + [71618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3661), 1, + aux_sym__interval_fields_token6, + [71625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4357), 1, + anon_sym_RBRACK, + [71632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 1, + aux_sym_function_return_token1, + [71639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, + anon_sym_SEMI, + [71646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4361), 1, + anon_sym_RPAREN, + [71653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 1, + anon_sym_DOLLAR, + [71660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4365), 1, + anon_sym_RPAREN, + [71667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + anon_sym_DOLLAR, + [71674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 1, + anon_sym_LPAREN, + [71681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3423), 1, + aux_sym_select_statement_token1, + [71688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1490), 1, + anon_sym_RPAREN, + [71695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1508), 1, + anon_sym_RPAREN, + [71702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4371), 1, + anon_sym_RBRACK, + [71709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4373), 1, + anon_sym_SEMI, + [71716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1057), 1, + anon_sym_LPAREN, + [71723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4375), 1, + anon_sym_RPAREN, + [71730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + anon_sym_RPAREN, + [71737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 1, + aux_sym_update_statement_token2, + [71744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 1, + anon_sym_SEMI, + [71751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 1, + anon_sym_SEMI, + [71758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_RPAREN, + [71765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4385), 1, + aux_sym_insert_conflict_token3, + [71772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 1, + aux_sym_update_statement_token3, + [71779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 1, + aux_sym_for_statement_token2, + [71786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 1, + anon_sym_SEMI, + [71793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 1, + aux_sym_insert_conflict_token1, + [71800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 1, + anon_sym_RPAREN, + [71807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 1, + aux_sym_if_statement_token1, + [71814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 1, + aux_sym_for_statement_token2, + [71821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 1, + anon_sym_SEMI, + [71828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 1, + anon_sym_DOLLAR, + [71835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 1, + aux_sym_create_table_statement_token1, + [71842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 1, + anon_sym_RPAREN, + [71849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 1, + anon_sym_SEMI, + [71856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_SEMI, + [71863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 1, + anon_sym_SEMI, + [71870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 1, + aux_sym_drop_function_statement_token1, + [71877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_SEMI, + [71884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1492), 1, + anon_sym_RPAREN, + [71891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4409), 1, + aux_sym_insert_conflict_token1, + [71898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 1, + anon_sym_SEMI, + [71905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 1, + aux_sym_insert_conflict_token3, + [71912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1516), 1, + anon_sym_RPAREN, + [71919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 1, + aux_sym_select_statement_token1, + [71926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, + aux_sym_for_statement_token2, + [71933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + aux_sym_if_statement_token1, + [71940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_LBRACK, + [71947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + aux_sym_alter_column_action_token1, + [71954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3566), 1, + anon_sym_SEMI, + [71961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + aux_sym_time_expression_token2, + [71968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_EQ, + [71975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + anon_sym_LPAREN, + [71982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 1, + aux_sym_join_item_token3, + [71989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_SEMI, + [71996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + aux_sym_alter_column_action_token1, + [72003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + aux_sym_fk_ref_action_token2, + [72010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3171), 1, + anon_sym_SEMI, + [72017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + sym_number, + [72024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4439), 1, + sym_number, + [72031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 1, + aux_sym_trigger_exec_token1, + [72038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 1, + anon_sym_SEMI, + [72045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 1, + sym__identifier, + [72052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 1, + aux_sym_update_statement_token3, + [72059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 1, + sym_number, + [72066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_SEMI, + [72073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 1, + anon_sym_SEMI, + [72080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + aux_sym_for_statement_token2, + [72087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + aux_sym_if_not_exists_token1, + [72094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 1, + anon_sym_LBRACK, + [72101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + aux_sym_alter_column_action_token1, + [72108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 1, + aux_sym_update_statement_token4, + [72115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 1, + aux_sym_time_expression_token2, + [72122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4467), 1, + aux_sym_insert_statement_token2, + [72129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + aux_sym_join_item_token3, + [72136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 1, + anon_sym_SEMI, + [72143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 1, + aux_sym_if_statement_token1, + [72150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 1, + aux_sym_for_statement_token2, + [72157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, + sym_number, + [72164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + sym_number, + [72171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + sym__identifier, + [72178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 1, + sym_number, + [72185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 1, + anon_sym_LBRACK, + [72192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + sym__identifier, + [72199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + aux_sym_sequence_increment_token2, + [72206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4491), 1, + anon_sym_LBRACK, + [72213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4493), 1, + aux_sym_time_expression_token2, + [72220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 1, + aux_sym_sequence_increment_token2, + [72227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + aux_sym_join_item_token3, + [72234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_SEMI, + [72241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 1, + anon_sym_SEMI, + [72248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4503), 1, + sym_number, + [72255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 1, + sym_number, + [72262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4507), 1, + sym__identifier, + [72269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 1, + sym_number, + [72276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3159), 1, + anon_sym_SEMI, + [72283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + aux_sym_insert_conflict_token1, + [72290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 1, + anon_sym_SEMI, + [72297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 1, + anon_sym_LBRACK, + [72304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + aux_sym_time_expression_token2, + [72311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 1, + aux_sym_for_statement_token2, + [72318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 1, + aux_sym_join_item_token3, + [72325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, + anon_sym_SEMI, + [72332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_SEMI, + [72339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + sym_number, + [72346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + sym_number, + [72353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 1, + sym__identifier, + [72360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 1, + sym_number, + [72367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 1, + aux_sym_for_statement_token2, + [72374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 1, + anon_sym_SEMI, + [72381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 1, + aux_sym_drop_function_statement_token1, + [72388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_LBRACK, + [72395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + aux_sym_time_expression_token2, + [72402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 1, + aux_sym_create_trigger_statement_token1, + [72409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 1, + aux_sym_join_item_token3, + [72416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3486), 1, + aux_sym_create_table_statement_token1, + [72423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4547), 1, + anon_sym_SEMI, + [72430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 1, + sym_number, + [72437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 1, + sym_number, + [72444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + sym__identifier, + [72451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 1, + sym_number, + [72458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 1, + aux_sym_or_replace_token1, + [72465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym_SEMI, + [72472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 1, + aux_sym_create_index_statement_token2, + [72479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4563), 1, + anon_sym_LBRACK, + [72486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 1, + aux_sym_time_expression_token2, + [72493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4567), 1, + sym_number, + [72500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 1, + sym_number, + [72507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4571), 1, + sym__identifier, + [72514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 1, + sym_number, + [72521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 1, + aux_sym_for_statement_token2, + [72528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4577), 1, + anon_sym_LBRACK, + [72535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4579), 1, + aux_sym_time_expression_token2, + [72542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + sym_number, + [72549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 1, + sym_number, + [72556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, + sym__identifier, + [72563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4587), 1, + sym_number, + [72570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_SEMI, + [72577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4591), 1, + anon_sym_LBRACK, + [72584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4593), 1, + aux_sym_time_expression_token2, + [72591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 1, + sym_number, + [72598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4597), 1, + sym_number, + [72605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4599), 1, + sym__identifier, + [72612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, + sym_number, + [72619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_SEMI, + [72626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4605), 1, + anon_sym_LBRACK, + [72633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4607), 1, + aux_sym_time_expression_token2, + [72640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4609), 1, + sym_number, + [72647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4611), 1, + sym_number, + [72654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + sym__identifier, + [72661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + sym_number, + [72668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4617), 1, + ts_builtin_sym_end, + [72675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4619), 1, + anon_sym_LBRACK, + [72682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4621), 1, + aux_sym_time_expression_token2, + [72689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4623), 1, + sym_number, + [72696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4625), 1, + sym_number, + [72703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4627), 1, + sym__identifier, + [72710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, + sym_number, + [72717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 1, + sym_number, + [72724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + sym_number, + [72731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4635), 1, + sym_number, + [72738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 1, + aux_sym_for_statement_token2, + [72745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_SEMI, + [72752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4641), 1, + anon_sym_DOLLAR, + [72759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4643), 1, + aux_sym_create_table_statement_token1, + [72766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 1, + aux_sym_update_statement_token4, + [72773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4647), 1, + anon_sym_DOLLAR, + [72780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3163), 1, + anon_sym_SEMI, + [72787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4649), 1, + anon_sym_DOLLAR, + [72794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4651), 1, + aux_sym_insert_statement_token2, + [72801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DOLLAR, + [72808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4655), 1, + aux_sym_select_statement_token1, + [72815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_DOLLAR, + [72822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_DOLLAR, + [72829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4661), 1, + anon_sym_DOLLAR, + [72836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 1, + anon_sym_DOLLAR, + [72843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4665), 1, + anon_sym_DOLLAR, + [72850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, + anon_sym_DOLLAR, + [72857] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4669), 1, + aux_sym_dollar_quote_string_token1, + [72864] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4671), 1, + aux_sym_dollar_quote_string_token1, + [72871] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4673), 1, + aux_sym_dollar_quote_string_token1, + [72878] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4675), 1, + aux_sym_dollar_quote_string_token1, + [72885] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4677), 1, + aux_sym_dollar_quote_string_token1, + [72892] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4679), 1, + aux_sym_dollar_quote_string_token1, + [72899] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4681), 1, + aux_sym_dollar_quote_string_token1, + [72906] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4683), 1, + aux_sym_dollar_quote_string_token1, + [72913] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4685), 1, + aux_sym_dollar_quote_string_token1, + [72920] = 2, + ACTIONS(3234), 1, + sym_comment, + ACTIONS(4687), 1, + aux_sym_dollar_quote_string_token1, + [72927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4689), 1, + anon_sym_DOLLAR, + [72934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 1, + anon_sym_DOLLAR, + [72941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4693), 1, + anon_sym_DOLLAR, + [72948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 1, + anon_sym_DOLLAR, + [72955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 1, + anon_sym_DOLLAR, + [72962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4699), 1, + anon_sym_DOLLAR, + [72969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 1, + anon_sym_DOLLAR, + [72976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4703), 1, + anon_sym_DOLLAR, + [72983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4705), 1, + anon_sym_DOLLAR, + [72990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + [72997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4709), 1, + sym__identifier, + [73004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 1, + sym__identifier, + [73011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4713), 1, + sym__identifier, + [73018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 1, + sym__identifier, + [73025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4717), 1, + sym__identifier, + [73032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4719), 1, + sym__identifier, + [73039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4721), 1, + sym__identifier, + [73046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4723), 1, + sym__identifier, + [73053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4725), 1, + sym__identifier, + [73060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 1, sym__identifier, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 0, - [SMALL_STATE(6)] = 82, - [SMALL_STATE(7)] = 156, - [SMALL_STATE(8)] = 238, + [SMALL_STATE(6)] = 74, + [SMALL_STATE(7)] = 148, + [SMALL_STATE(8)] = 230, [SMALL_STATE(9)] = 312, - [SMALL_STATE(10)] = 417, - [SMALL_STATE(11)] = 508, - [SMALL_STATE(12)] = 605, - [SMALL_STATE(13)] = 712, - [SMALL_STATE(14)] = 799, - [SMALL_STATE(15)] = 882, - [SMALL_STATE(16)] = 989, - [SMALL_STATE(17)] = 1072, - [SMALL_STATE(18)] = 1181, - [SMALL_STATE(19)] = 1250, - [SMALL_STATE(20)] = 1325, - [SMALL_STATE(21)] = 1430, - [SMALL_STATE(22)] = 1525, - [SMALL_STATE(23)] = 1618, - [SMALL_STATE(24)] = 1717, - [SMALL_STATE(25)] = 1808, - [SMALL_STATE(26)] = 1917, - [SMALL_STATE(27)] = 2010, - [SMALL_STATE(28)] = 2093, - [SMALL_STATE(29)] = 2162, - [SMALL_STATE(30)] = 2263, - [SMALL_STATE(31)] = 2346, - [SMALL_STATE(32)] = 2455, - [SMALL_STATE(33)] = 2542, - [SMALL_STATE(34)] = 2610, - [SMALL_STATE(35)] = 2678, - [SMALL_STATE(36)] = 2750, - [SMALL_STATE(37)] = 2822, - [SMALL_STATE(38)] = 2890, - [SMALL_STATE(39)] = 2958, - [SMALL_STATE(40)] = 3029, - [SMALL_STATE(41)] = 3102, - [SMALL_STATE(42)] = 3173, - [SMALL_STATE(43)] = 3239, - [SMALL_STATE(44)] = 3305, - [SMALL_STATE(45)] = 3371, - [SMALL_STATE(46)] = 3437, - [SMALL_STATE(47)] = 3503, - [SMALL_STATE(48)] = 3575, - [SMALL_STATE(49)] = 3641, - [SMALL_STATE(50)] = 3707, - [SMALL_STATE(51)] = 3773, - [SMALL_STATE(52)] = 3839, - [SMALL_STATE(53)] = 3905, - [SMALL_STATE(54)] = 3977, - [SMALL_STATE(55)] = 4042, - [SMALL_STATE(56)] = 4111, - [SMALL_STATE(57)] = 4180, - [SMALL_STATE(58)] = 4257, - [SMALL_STATE(59)] = 4370, - [SMALL_STATE(60)] = 4447, - [SMALL_STATE(61)] = 4511, - [SMALL_STATE(62)] = 4577, - [SMALL_STATE(63)] = 4641, - [SMALL_STATE(64)] = 4705, - [SMALL_STATE(65)] = 4787, - [SMALL_STATE(66)] = 4865, - [SMALL_STATE(67)] = 4981, - [SMALL_STATE(68)] = 5045, - [SMALL_STATE(69)] = 5111, - [SMALL_STATE(70)] = 5177, - [SMALL_STATE(71)] = 5243, - [SMALL_STATE(72)] = 5345, - [SMALL_STATE(73)] = 5423, - [SMALL_STATE(74)] = 5487, - [SMALL_STATE(75)] = 5563, - [SMALL_STATE(76)] = 5669, - [SMALL_STATE(77)] = 5755, - [SMALL_STATE(78)] = 5849, - [SMALL_STATE(79)] = 5951, - [SMALL_STATE(80)] = 6039, - [SMALL_STATE(81)] = 6131, - [SMALL_STATE(82)] = 6219, - [SMALL_STATE(83)] = 6309, - [SMALL_STATE(84)] = 6411, - [SMALL_STATE(85)] = 6507, - [SMALL_STATE(86)] = 6589, - [SMALL_STATE(87)] = 6667, - [SMALL_STATE(88)] = 6753, - [SMALL_STATE(89)] = 6855, - [SMALL_STATE(90)] = 6933, - [SMALL_STATE(91)] = 7039, - [SMALL_STATE(92)] = 7105, - [SMALL_STATE(93)] = 7171, - [SMALL_STATE(94)] = 7237, - [SMALL_STATE(95)] = 7303, - [SMALL_STATE(96)] = 7366, - [SMALL_STATE(97)] = 7447, - [SMALL_STATE(98)] = 7556, - [SMALL_STATE(99)] = 7619, - [SMALL_STATE(100)] = 7722, - [SMALL_STATE(101)] = 7785, - [SMALL_STATE(102)] = 7848, - [SMALL_STATE(103)] = 7911, - [SMALL_STATE(104)] = 7974, - [SMALL_STATE(105)] = 8037, - [SMALL_STATE(106)] = 8100, - [SMALL_STATE(107)] = 8163, - [SMALL_STATE(108)] = 8226, - [SMALL_STATE(109)] = 8289, - [SMALL_STATE(110)] = 8352, - [SMALL_STATE(111)] = 8415, - [SMALL_STATE(112)] = 8478, - [SMALL_STATE(113)] = 8541, - [SMALL_STATE(114)] = 8608, - [SMALL_STATE(115)] = 8671, - [SMALL_STATE(116)] = 8734, - [SMALL_STATE(117)] = 8797, - [SMALL_STATE(118)] = 8860, - [SMALL_STATE(119)] = 8923, - [SMALL_STATE(120)] = 8986, - [SMALL_STATE(121)] = 9089, - [SMALL_STATE(122)] = 9156, - [SMALL_STATE(123)] = 9219, - [SMALL_STATE(124)] = 9296, - [SMALL_STATE(125)] = 9371, - [SMALL_STATE(126)] = 9434, - [SMALL_STATE(127)] = 9533, - [SMALL_STATE(128)] = 9596, - [SMALL_STATE(129)] = 9673, - [SMALL_STATE(130)] = 9736, - [SMALL_STATE(131)] = 9847, - [SMALL_STATE(132)] = 9922, - [SMALL_STATE(133)] = 9985, - [SMALL_STATE(134)] = 10048, - [SMALL_STATE(135)] = 10111, - [SMALL_STATE(136)] = 10174, - [SMALL_STATE(137)] = 10237, - [SMALL_STATE(138)] = 10300, - [SMALL_STATE(139)] = 10363, - [SMALL_STATE(140)] = 10426, - [SMALL_STATE(141)] = 10489, - [SMALL_STATE(142)] = 10552, - [SMALL_STATE(143)] = 10651, - [SMALL_STATE(144)] = 10718, - [SMALL_STATE(145)] = 10827, - [SMALL_STATE(146)] = 10894, - [SMALL_STATE(147)] = 10985, - [SMALL_STATE(148)] = 11070, - [SMALL_STATE(149)] = 11157, - [SMALL_STATE(150)] = 11252, - [SMALL_STATE(151)] = 11328, - [SMALL_STATE(152)] = 11430, - [SMALL_STATE(153)] = 11516, - [SMALL_STATE(154)] = 11614, - [SMALL_STATE(155)] = 11706, - [SMALL_STATE(156)] = 11806, - [SMALL_STATE(157)] = 11868, - [SMALL_STATE(158)] = 11972, - [SMALL_STATE(159)] = 12052, - [SMALL_STATE(160)] = 12114, - [SMALL_STATE(161)] = 12208, - [SMALL_STATE(162)] = 12276, - [SMALL_STATE(163)] = 12386, - [SMALL_STATE(164)] = 12452, - [SMALL_STATE(165)] = 12518, - [SMALL_STATE(166)] = 12584, - [SMALL_STATE(167)] = 12658, - [SMALL_STATE(168)] = 12720, - [SMALL_STATE(169)] = 12782, - [SMALL_STATE(170)] = 12866, - [SMALL_STATE(171)] = 12940, - [SMALL_STATE(172)] = 13028, - [SMALL_STATE(173)] = 13126, - [SMALL_STATE(174)] = 13212, - [SMALL_STATE(175)] = 13288, - [SMALL_STATE(176)] = 13378, - [SMALL_STATE(177)] = 13462, - [SMALL_STATE(178)] = 13538, - [SMALL_STATE(179)] = 13638, - [SMALL_STATE(180)] = 13714, - [SMALL_STATE(181)] = 13816, - [SMALL_STATE(182)] = 13896, - [SMALL_STATE(183)] = 13964, - [SMALL_STATE(184)] = 14030, - [SMALL_STATE(185)] = 14133, - [SMALL_STATE(186)] = 14194, - [SMALL_STATE(187)] = 14255, - [SMALL_STATE(188)] = 14316, - [SMALL_STATE(189)] = 14417, - [SMALL_STATE(190)] = 14522, - [SMALL_STATE(191)] = 14597, - [SMALL_STATE(192)] = 14658, - [SMALL_STATE(193)] = 14757, - [SMALL_STATE(194)] = 14858, - [SMALL_STATE(195)] = 14933, - [SMALL_STATE(196)] = 14994, - [SMALL_STATE(197)] = 15061, - [SMALL_STATE(198)] = 15122, - [SMALL_STATE(199)] = 15201, - [SMALL_STATE(200)] = 15268, - [SMALL_STATE(201)] = 15329, - [SMALL_STATE(202)] = 15428, - [SMALL_STATE(203)] = 15489, - [SMALL_STATE(204)] = 15564, - [SMALL_STATE(205)] = 15663, - [SMALL_STATE(206)] = 15752, - [SMALL_STATE(207)] = 15817, - [SMALL_STATE(208)] = 15892, - [SMALL_STATE(209)] = 15977, - [SMALL_STATE(210)] = 16070, - [SMALL_STATE(211)] = 16153, - [SMALL_STATE(212)] = 16214, - [SMALL_STATE(213)] = 16319, - [SMALL_STATE(214)] = 16380, - [SMALL_STATE(215)] = 16445, - [SMALL_STATE(216)] = 16524, - [SMALL_STATE(217)] = 16623, - [SMALL_STATE(218)] = 16710, - [SMALL_STATE(219)] = 16771, - [SMALL_STATE(220)] = 16832, - [SMALL_STATE(221)] = 16917, - [SMALL_STATE(222)] = 16984, - [SMALL_STATE(223)] = 17075, - [SMALL_STATE(224)] = 17158, - [SMALL_STATE(225)] = 17219, - [SMALL_STATE(226)] = 17286, - [SMALL_STATE(227)] = 17347, - [SMALL_STATE(228)] = 17408, - [SMALL_STATE(229)] = 17514, - [SMALL_STATE(230)] = 17574, - [SMALL_STATE(231)] = 17638, - [SMALL_STATE(232)] = 17698, - [SMALL_STATE(233)] = 17762, - [SMALL_STATE(234)] = 17822, - [SMALL_STATE(235)] = 17882, - [SMALL_STATE(236)] = 17942, - [SMALL_STATE(237)] = 18002, - [SMALL_STATE(238)] = 18068, - [SMALL_STATE(239)] = 18132, - [SMALL_STATE(240)] = 18192, - [SMALL_STATE(241)] = 18256, - [SMALL_STATE(242)] = 18362, - [SMALL_STATE(243)] = 18426, - [SMALL_STATE(244)] = 18490, - [SMALL_STATE(245)] = 18550, - [SMALL_STATE(246)] = 18656, - [SMALL_STATE(247)] = 18762, - [SMALL_STATE(248)] = 18826, - [SMALL_STATE(249)] = 18932, - [SMALL_STATE(250)] = 18992, - [SMALL_STATE(251)] = 19052, - [SMALL_STATE(252)] = 19158, - [SMALL_STATE(253)] = 19264, - [SMALL_STATE(254)] = 19370, - [SMALL_STATE(255)] = 19470, - [SMALL_STATE(256)] = 19536, - [SMALL_STATE(257)] = 19642, - [SMALL_STATE(258)] = 19748, - [SMALL_STATE(259)] = 19854, - [SMALL_STATE(260)] = 19960, - [SMALL_STATE(261)] = 20060, - [SMALL_STATE(262)] = 20166, - [SMALL_STATE(263)] = 20272, - [SMALL_STATE(264)] = 20378, - [SMALL_STATE(265)] = 20484, - [SMALL_STATE(266)] = 20590, - [SMALL_STATE(267)] = 20696, - [SMALL_STATE(268)] = 20802, - [SMALL_STATE(269)] = 20866, - [SMALL_STATE(270)] = 20925, - [SMALL_STATE(271)] = 21028, - [SMALL_STATE(272)] = 21089, - [SMALL_STATE(273)] = 21150, - [SMALL_STATE(274)] = 21211, - [SMALL_STATE(275)] = 21314, - [SMALL_STATE(276)] = 21379, - [SMALL_STATE(277)] = 21440, - [SMALL_STATE(278)] = 21503, - [SMALL_STATE(279)] = 21566, - [SMALL_STATE(280)] = 21629, - [SMALL_STATE(281)] = 21688, - [SMALL_STATE(282)] = 21747, - [SMALL_STATE(283)] = 21812, - [SMALL_STATE(284)] = 21871, - [SMALL_STATE(285)] = 21930, - [SMALL_STATE(286)] = 21989, - [SMALL_STATE(287)] = 22054, - [SMALL_STATE(288)] = 22113, - [SMALL_STATE(289)] = 22172, - [SMALL_STATE(290)] = 22231, - [SMALL_STATE(291)] = 22292, - [SMALL_STATE(292)] = 22353, - [SMALL_STATE(293)] = 22414, - [SMALL_STATE(294)] = 22475, - [SMALL_STATE(295)] = 22540, - [SMALL_STATE(296)] = 22599, - [SMALL_STATE(297)] = 22702, - [SMALL_STATE(298)] = 22805, - [SMALL_STATE(299)] = 22868, - [SMALL_STATE(300)] = 22926, - [SMALL_STATE(301)] = 22984, - [SMALL_STATE(302)] = 23042, - [SMALL_STATE(303)] = 23100, - [SMALL_STATE(304)] = 23158, - [SMALL_STATE(305)] = 23216, - [SMALL_STATE(306)] = 23274, - [SMALL_STATE(307)] = 23332, - [SMALL_STATE(308)] = 23390, - [SMALL_STATE(309)] = 23448, - [SMALL_STATE(310)] = 23506, - [SMALL_STATE(311)] = 23564, - [SMALL_STATE(312)] = 23622, - [SMALL_STATE(313)] = 23680, - [SMALL_STATE(314)] = 23738, - [SMALL_STATE(315)] = 23796, - [SMALL_STATE(316)] = 23854, - [SMALL_STATE(317)] = 23912, - [SMALL_STATE(318)] = 23970, - [SMALL_STATE(319)] = 24028, - [SMALL_STATE(320)] = 24088, - [SMALL_STATE(321)] = 24148, - [SMALL_STATE(322)] = 24208, - [SMALL_STATE(323)] = 24266, - [SMALL_STATE(324)] = 24326, - [SMALL_STATE(325)] = 24384, - [SMALL_STATE(326)] = 24442, - [SMALL_STATE(327)] = 24500, - [SMALL_STATE(328)] = 24558, - [SMALL_STATE(329)] = 24616, - [SMALL_STATE(330)] = 24718, - [SMALL_STATE(331)] = 24776, - [SMALL_STATE(332)] = 24834, - [SMALL_STATE(333)] = 24892, - [SMALL_STATE(334)] = 24956, - [SMALL_STATE(335)] = 25014, - [SMALL_STATE(336)] = 25072, - [SMALL_STATE(337)] = 25130, - [SMALL_STATE(338)] = 25188, - [SMALL_STATE(339)] = 25286, - [SMALL_STATE(340)] = 25344, - [SMALL_STATE(341)] = 25402, - [SMALL_STATE(342)] = 25466, - [SMALL_STATE(343)] = 25524, - [SMALL_STATE(344)] = 25582, - [SMALL_STATE(345)] = 25640, - [SMALL_STATE(346)] = 25702, - [SMALL_STATE(347)] = 25760, - [SMALL_STATE(348)] = 25818, - [SMALL_STATE(349)] = 25876, - [SMALL_STATE(350)] = 25934, - [SMALL_STATE(351)] = 25992, - [SMALL_STATE(352)] = 26050, - [SMALL_STATE(353)] = 26108, - [SMALL_STATE(354)] = 26166, - [SMALL_STATE(355)] = 26228, - [SMALL_STATE(356)] = 26286, - [SMALL_STATE(357)] = 26344, - [SMALL_STATE(358)] = 26470, - [SMALL_STATE(359)] = 26596, - [SMALL_STATE(360)] = 26654, - [SMALL_STATE(361)] = 26712, - [SMALL_STATE(362)] = 26771, - [SMALL_STATE(363)] = 26828, - [SMALL_STATE(364)] = 26885, - [SMALL_STATE(365)] = 26942, - [SMALL_STATE(366)] = 26999, - [SMALL_STATE(367)] = 27056, - [SMALL_STATE(368)] = 27113, - [SMALL_STATE(369)] = 27170, - [SMALL_STATE(370)] = 27231, - [SMALL_STATE(371)] = 27292, - [SMALL_STATE(372)] = 27349, - [SMALL_STATE(373)] = 27408, - [SMALL_STATE(374)] = 27469, - [SMALL_STATE(375)] = 27526, - [SMALL_STATE(376)] = 27583, - [SMALL_STATE(377)] = 27640, - [SMALL_STATE(378)] = 27701, - [SMALL_STATE(379)] = 27760, - [SMALL_STATE(380)] = 27819, - [SMALL_STATE(381)] = 27878, - [SMALL_STATE(382)] = 27937, - [SMALL_STATE(383)] = 27994, - [SMALL_STATE(384)] = 28051, - [SMALL_STATE(385)] = 28108, - [SMALL_STATE(386)] = 28165, - [SMALL_STATE(387)] = 28222, - [SMALL_STATE(388)] = 28279, - [SMALL_STATE(389)] = 28336, - [SMALL_STATE(390)] = 28395, - [SMALL_STATE(391)] = 28454, - [SMALL_STATE(392)] = 28511, - [SMALL_STATE(393)] = 28567, - [SMALL_STATE(394)] = 28623, - [SMALL_STATE(395)] = 28681, - [SMALL_STATE(396)] = 28737, - [SMALL_STATE(397)] = 28793, - [SMALL_STATE(398)] = 28851, - [SMALL_STATE(399)] = 28907, - [SMALL_STATE(400)] = 29031, - [SMALL_STATE(401)] = 29087, - [SMALL_STATE(402)] = 29145, - [SMALL_STATE(403)] = 29201, - [SMALL_STATE(404)] = 29257, - [SMALL_STATE(405)] = 29315, - [SMALL_STATE(406)] = 29371, - [SMALL_STATE(407)] = 29429, - [SMALL_STATE(408)] = 29485, - [SMALL_STATE(409)] = 29541, - [SMALL_STATE(410)] = 29597, - [SMALL_STATE(411)] = 29655, - [SMALL_STATE(412)] = 29779, - [SMALL_STATE(413)] = 29835, - [SMALL_STATE(414)] = 29891, - [SMALL_STATE(415)] = 29947, - [SMALL_STATE(416)] = 30003, - [SMALL_STATE(417)] = 30059, - [SMALL_STATE(418)] = 30115, - [SMALL_STATE(419)] = 30171, - [SMALL_STATE(420)] = 30227, - [SMALL_STATE(421)] = 30285, - [SMALL_STATE(422)] = 30341, - [SMALL_STATE(423)] = 30397, - [SMALL_STATE(424)] = 30465, - [SMALL_STATE(425)] = 30521, - [SMALL_STATE(426)] = 30577, - [SMALL_STATE(427)] = 30635, - [SMALL_STATE(428)] = 30691, - [SMALL_STATE(429)] = 30747, - [SMALL_STATE(430)] = 30803, - [SMALL_STATE(431)] = 30899, - [SMALL_STATE(432)] = 30955, - [SMALL_STATE(433)] = 31011, - [SMALL_STATE(434)] = 31067, - [SMALL_STATE(435)] = 31123, - [SMALL_STATE(436)] = 31227, - [SMALL_STATE(437)] = 31283, - [SMALL_STATE(438)] = 31339, - [SMALL_STATE(439)] = 31395, - [SMALL_STATE(440)] = 31451, - [SMALL_STATE(441)] = 31507, - [SMALL_STATE(442)] = 31563, - [SMALL_STATE(443)] = 31618, - [SMALL_STATE(444)] = 31703, - [SMALL_STATE(445)] = 31826, - [SMALL_STATE(446)] = 31881, - [SMALL_STATE(447)] = 31936, - [SMALL_STATE(448)] = 31991, - [SMALL_STATE(449)] = 32046, - [SMALL_STATE(450)] = 32149, - [SMALL_STATE(451)] = 32242, - [SMALL_STATE(452)] = 32297, - [SMALL_STATE(453)] = 32352, - [SMALL_STATE(454)] = 32407, - [SMALL_STATE(455)] = 32508, - [SMALL_STATE(456)] = 32581, - [SMALL_STATE(457)] = 32636, - [SMALL_STATE(458)] = 32691, - [SMALL_STATE(459)] = 32788, - [SMALL_STATE(460)] = 32843, - [SMALL_STATE(461)] = 32898, - [SMALL_STATE(462)] = 32953, - [SMALL_STATE(463)] = 33008, - [SMALL_STATE(464)] = 33063, - [SMALL_STATE(465)] = 33118, - [SMALL_STATE(466)] = 33173, - [SMALL_STATE(467)] = 33228, - [SMALL_STATE(468)] = 33283, - [SMALL_STATE(469)] = 33338, - [SMALL_STATE(470)] = 33393, - [SMALL_STATE(471)] = 33486, - [SMALL_STATE(472)] = 33541, - [SMALL_STATE(473)] = 33608, - [SMALL_STATE(474)] = 33677, - [SMALL_STATE(475)] = 33732, - [SMALL_STATE(476)] = 33787, - [SMALL_STATE(477)] = 33842, - [SMALL_STATE(478)] = 33911, - [SMALL_STATE(479)] = 33966, - [SMALL_STATE(480)] = 34021, - [SMALL_STATE(481)] = 34076, - [SMALL_STATE(482)] = 34131, - [SMALL_STATE(483)] = 34186, - [SMALL_STATE(484)] = 34263, - [SMALL_STATE(485)] = 34318, - [SMALL_STATE(486)] = 34373, - [SMALL_STATE(487)] = 34428, - [SMALL_STATE(488)] = 34483, - [SMALL_STATE(489)] = 34606, - [SMALL_STATE(490)] = 34685, - [SMALL_STATE(491)] = 34766, - [SMALL_STATE(492)] = 34821, - [SMALL_STATE(493)] = 34876, - [SMALL_STATE(494)] = 34931, - [SMALL_STATE(495)] = 35026, - [SMALL_STATE(496)] = 35081, - [SMALL_STATE(497)] = 35174, - [SMALL_STATE(498)] = 35266, - [SMALL_STATE(499)] = 35358, - [SMALL_STATE(500)] = 35438, - [SMALL_STATE(501)] = 35522, - [SMALL_STATE(502)] = 35600, - [SMALL_STATE(503)] = 35676, - [SMALL_STATE(504)] = 35730, - [SMALL_STATE(505)] = 35826, - [SMALL_STATE(506)] = 35882, - [SMALL_STATE(507)] = 35936, - [SMALL_STATE(508)] = 36004, - [SMALL_STATE(509)] = 36072, - [SMALL_STATE(510)] = 36144, - [SMALL_STATE(511)] = 36200, - [SMALL_STATE(512)] = 36258, - [SMALL_STATE(513)] = 36350, - [SMALL_STATE(514)] = 36408, - [SMALL_STATE(515)] = 36467, - [SMALL_STATE(516)] = 36524, - [SMALL_STATE(517)] = 36619, - [SMALL_STATE(518)] = 36712, - [SMALL_STATE(519)] = 36769, - [SMALL_STATE(520)] = 36863, - [SMALL_STATE(521)] = 36957, - [SMALL_STATE(522)] = 37051, - [SMALL_STATE(523)] = 37103, - [SMALL_STATE(524)] = 37197, - [SMALL_STATE(525)] = 37291, - [SMALL_STATE(526)] = 37385, - [SMALL_STATE(527)] = 37479, - [SMALL_STATE(528)] = 37573, - [SMALL_STATE(529)] = 37667, - [SMALL_STATE(530)] = 37761, - [SMALL_STATE(531)] = 37855, - [SMALL_STATE(532)] = 37949, - [SMALL_STATE(533)] = 38043, - [SMALL_STATE(534)] = 38137, - [SMALL_STATE(535)] = 38231, - [SMALL_STATE(536)] = 38325, - [SMALL_STATE(537)] = 38419, - [SMALL_STATE(538)] = 38513, - [SMALL_STATE(539)] = 38565, - [SMALL_STATE(540)] = 38659, - [SMALL_STATE(541)] = 38753, - [SMALL_STATE(542)] = 38847, - [SMALL_STATE(543)] = 38941, - [SMALL_STATE(544)] = 39035, - [SMALL_STATE(545)] = 39129, - [SMALL_STATE(546)] = 39223, - [SMALL_STATE(547)] = 39317, - [SMALL_STATE(548)] = 39411, - [SMALL_STATE(549)] = 39505, - [SMALL_STATE(550)] = 39599, - [SMALL_STATE(551)] = 39693, - [SMALL_STATE(552)] = 39751, - [SMALL_STATE(553)] = 39845, - [SMALL_STATE(554)] = 39939, - [SMALL_STATE(555)] = 40033, - [SMALL_STATE(556)] = 40085, - [SMALL_STATE(557)] = 40137, - [SMALL_STATE(558)] = 40195, - [SMALL_STATE(559)] = 40289, - [SMALL_STATE(560)] = 40379, - [SMALL_STATE(561)] = 40473, - [SMALL_STATE(562)] = 40567, - [SMALL_STATE(563)] = 40619, - [SMALL_STATE(564)] = 40713, - [SMALL_STATE(565)] = 40807, - [SMALL_STATE(566)] = 40901, - [SMALL_STATE(567)] = 40995, - [SMALL_STATE(568)] = 41089, - [SMALL_STATE(569)] = 41141, - [SMALL_STATE(570)] = 41235, - [SMALL_STATE(571)] = 41329, - [SMALL_STATE(572)] = 41384, - [SMALL_STATE(573)] = 41435, - [SMALL_STATE(574)] = 41486, - [SMALL_STATE(575)] = 41537, - [SMALL_STATE(576)] = 41628, - [SMALL_STATE(577)] = 41717, - [SMALL_STATE(578)] = 41772, - [SMALL_STATE(579)] = 41823, - [SMALL_STATE(580)] = 41912, - [SMALL_STATE(581)] = 42003, - [SMALL_STATE(582)] = 42054, - [SMALL_STATE(583)] = 42145, - [SMALL_STATE(584)] = 42196, - [SMALL_STATE(585)] = 42253, - [SMALL_STATE(586)] = 42342, - [SMALL_STATE(587)] = 42430, - [SMALL_STATE(588)] = 42518, - [SMALL_STATE(589)] = 42606, - [SMALL_STATE(590)] = 42694, - [SMALL_STATE(591)] = 42782, - [SMALL_STATE(592)] = 42836, - [SMALL_STATE(593)] = 42924, - [SMALL_STATE(594)] = 43012, - [SMALL_STATE(595)] = 43100, - [SMALL_STATE(596)] = 43188, - [SMALL_STATE(597)] = 43276, - [SMALL_STATE(598)] = 43326, - [SMALL_STATE(599)] = 43414, - [SMALL_STATE(600)] = 43502, - [SMALL_STATE(601)] = 43590, - [SMALL_STATE(602)] = 43678, - [SMALL_STATE(603)] = 43730, - [SMALL_STATE(604)] = 43818, - [SMALL_STATE(605)] = 43870, - [SMALL_STATE(606)] = 43958, - [SMALL_STATE(607)] = 44012, - [SMALL_STATE(608)] = 44100, - [SMALL_STATE(609)] = 44152, - [SMALL_STATE(610)] = 44204, - [SMALL_STATE(611)] = 44292, - [SMALL_STATE(612)] = 44343, - [SMALL_STATE(613)] = 44392, - [SMALL_STATE(614)] = 44443, - [SMALL_STATE(615)] = 44492, - [SMALL_STATE(616)] = 44541, - [SMALL_STATE(617)] = 44590, - [SMALL_STATE(618)] = 44639, - [SMALL_STATE(619)] = 44688, - [SMALL_STATE(620)] = 44737, - [SMALL_STATE(621)] = 44786, - [SMALL_STATE(622)] = 44835, - [SMALL_STATE(623)] = 44884, - [SMALL_STATE(624)] = 44935, - [SMALL_STATE(625)] = 44986, - [SMALL_STATE(626)] = 45035, - [SMALL_STATE(627)] = 45084, - [SMALL_STATE(628)] = 45133, - [SMALL_STATE(629)] = 45182, - [SMALL_STATE(630)] = 45231, - [SMALL_STATE(631)] = 45280, - [SMALL_STATE(632)] = 45329, - [SMALL_STATE(633)] = 45378, - [SMALL_STATE(634)] = 45427, - [SMALL_STATE(635)] = 45476, - [SMALL_STATE(636)] = 45524, - [SMALL_STATE(637)] = 45572, - [SMALL_STATE(638)] = 45620, - [SMALL_STATE(639)] = 45668, - [SMALL_STATE(640)] = 45716, - [SMALL_STATE(641)] = 45764, - [SMALL_STATE(642)] = 45812, - [SMALL_STATE(643)] = 45860, - [SMALL_STATE(644)] = 45908, - [SMALL_STATE(645)] = 45956, - [SMALL_STATE(646)] = 46004, - [SMALL_STATE(647)] = 46052, - [SMALL_STATE(648)] = 46100, - [SMALL_STATE(649)] = 46148, - [SMALL_STATE(650)] = 46196, - [SMALL_STATE(651)] = 46244, - [SMALL_STATE(652)] = 46292, - [SMALL_STATE(653)] = 46340, - [SMALL_STATE(654)] = 46388, - [SMALL_STATE(655)] = 46430, - [SMALL_STATE(656)] = 46472, - [SMALL_STATE(657)] = 46514, - [SMALL_STATE(658)] = 46596, - [SMALL_STATE(659)] = 46678, - [SMALL_STATE(660)] = 46756, - [SMALL_STATE(661)] = 46834, - [SMALL_STATE(662)] = 46912, - [SMALL_STATE(663)] = 46990, - [SMALL_STATE(664)] = 47068, - [SMALL_STATE(665)] = 47146, - [SMALL_STATE(666)] = 47224, - [SMALL_STATE(667)] = 47302, - [SMALL_STATE(668)] = 47380, - [SMALL_STATE(669)] = 47448, - [SMALL_STATE(670)] = 47526, - [SMALL_STATE(671)] = 47604, - [SMALL_STATE(672)] = 47682, - [SMALL_STATE(673)] = 47760, - [SMALL_STATE(674)] = 47838, - [SMALL_STATE(675)] = 47916, - [SMALL_STATE(676)] = 47994, - [SMALL_STATE(677)] = 48072, - [SMALL_STATE(678)] = 48140, - [SMALL_STATE(679)] = 48215, - [SMALL_STATE(680)] = 48290, - [SMALL_STATE(681)] = 48365, - [SMALL_STATE(682)] = 48440, - [SMALL_STATE(683)] = 48515, - [SMALL_STATE(684)] = 48590, - [SMALL_STATE(685)] = 48665, - [SMALL_STATE(686)] = 48740, - [SMALL_STATE(687)] = 48815, - [SMALL_STATE(688)] = 48890, - [SMALL_STATE(689)] = 48965, - [SMALL_STATE(690)] = 49040, - [SMALL_STATE(691)] = 49112, - [SMALL_STATE(692)] = 49181, - [SMALL_STATE(693)] = 49250, - [SMALL_STATE(694)] = 49319, - [SMALL_STATE(695)] = 49388, - [SMALL_STATE(696)] = 49457, - [SMALL_STATE(697)] = 49526, - [SMALL_STATE(698)] = 49595, - [SMALL_STATE(699)] = 49661, - [SMALL_STATE(700)] = 49727, - [SMALL_STATE(701)] = 49793, - [SMALL_STATE(702)] = 49859, - [SMALL_STATE(703)] = 49925, - [SMALL_STATE(704)] = 49991, - [SMALL_STATE(705)] = 50057, - [SMALL_STATE(706)] = 50123, - [SMALL_STATE(707)] = 50189, - [SMALL_STATE(708)] = 50255, - [SMALL_STATE(709)] = 50321, - [SMALL_STATE(710)] = 50387, - [SMALL_STATE(711)] = 50453, - [SMALL_STATE(712)] = 50519, - [SMALL_STATE(713)] = 50585, - [SMALL_STATE(714)] = 50651, - [SMALL_STATE(715)] = 50717, - [SMALL_STATE(716)] = 50783, - [SMALL_STATE(717)] = 50849, - [SMALL_STATE(718)] = 50915, - [SMALL_STATE(719)] = 50981, - [SMALL_STATE(720)] = 51047, - [SMALL_STATE(721)] = 51113, - [SMALL_STATE(722)] = 51179, - [SMALL_STATE(723)] = 51245, - [SMALL_STATE(724)] = 51311, - [SMALL_STATE(725)] = 51377, - [SMALL_STATE(726)] = 51443, - [SMALL_STATE(727)] = 51509, - [SMALL_STATE(728)] = 51575, - [SMALL_STATE(729)] = 51641, - [SMALL_STATE(730)] = 51704, - [SMALL_STATE(731)] = 51767, - [SMALL_STATE(732)] = 51830, - [SMALL_STATE(733)] = 51893, - [SMALL_STATE(734)] = 51956, - [SMALL_STATE(735)] = 52019, - [SMALL_STATE(736)] = 52082, - [SMALL_STATE(737)] = 52145, - [SMALL_STATE(738)] = 52208, - [SMALL_STATE(739)] = 52271, - [SMALL_STATE(740)] = 52334, - [SMALL_STATE(741)] = 52397, - [SMALL_STATE(742)] = 52460, - [SMALL_STATE(743)] = 52523, - [SMALL_STATE(744)] = 52586, - [SMALL_STATE(745)] = 52649, - [SMALL_STATE(746)] = 52712, - [SMALL_STATE(747)] = 52775, - [SMALL_STATE(748)] = 52838, - [SMALL_STATE(749)] = 52901, - [SMALL_STATE(750)] = 52964, - [SMALL_STATE(751)] = 53027, - [SMALL_STATE(752)] = 53090, - [SMALL_STATE(753)] = 53153, - [SMALL_STATE(754)] = 53216, - [SMALL_STATE(755)] = 53279, - [SMALL_STATE(756)] = 53342, - [SMALL_STATE(757)] = 53405, - [SMALL_STATE(758)] = 53468, - [SMALL_STATE(759)] = 53531, - [SMALL_STATE(760)] = 53594, - [SMALL_STATE(761)] = 53657, - [SMALL_STATE(762)] = 53720, - [SMALL_STATE(763)] = 53783, - [SMALL_STATE(764)] = 53846, - [SMALL_STATE(765)] = 53909, - [SMALL_STATE(766)] = 53972, - [SMALL_STATE(767)] = 54035, - [SMALL_STATE(768)] = 54098, - [SMALL_STATE(769)] = 54161, - [SMALL_STATE(770)] = 54224, - [SMALL_STATE(771)] = 54287, - [SMALL_STATE(772)] = 54350, - [SMALL_STATE(773)] = 54413, - [SMALL_STATE(774)] = 54476, - [SMALL_STATE(775)] = 54539, - [SMALL_STATE(776)] = 54602, - [SMALL_STATE(777)] = 54665, - [SMALL_STATE(778)] = 54728, - [SMALL_STATE(779)] = 54791, - [SMALL_STATE(780)] = 54854, - [SMALL_STATE(781)] = 54917, - [SMALL_STATE(782)] = 54980, - [SMALL_STATE(783)] = 55043, - [SMALL_STATE(784)] = 55106, - [SMALL_STATE(785)] = 55169, - [SMALL_STATE(786)] = 55232, - [SMALL_STATE(787)] = 55295, - [SMALL_STATE(788)] = 55358, - [SMALL_STATE(789)] = 55421, - [SMALL_STATE(790)] = 55484, - [SMALL_STATE(791)] = 55547, - [SMALL_STATE(792)] = 55610, - [SMALL_STATE(793)] = 55673, - [SMALL_STATE(794)] = 55736, - [SMALL_STATE(795)] = 55799, - [SMALL_STATE(796)] = 55862, - [SMALL_STATE(797)] = 55925, - [SMALL_STATE(798)] = 55988, - [SMALL_STATE(799)] = 56051, - [SMALL_STATE(800)] = 56114, - [SMALL_STATE(801)] = 56177, - [SMALL_STATE(802)] = 56240, - [SMALL_STATE(803)] = 56303, - [SMALL_STATE(804)] = 56366, - [SMALL_STATE(805)] = 56429, - [SMALL_STATE(806)] = 56492, - [SMALL_STATE(807)] = 56555, - [SMALL_STATE(808)] = 56618, - [SMALL_STATE(809)] = 56681, - [SMALL_STATE(810)] = 56744, - [SMALL_STATE(811)] = 56807, - [SMALL_STATE(812)] = 56870, - [SMALL_STATE(813)] = 56933, - [SMALL_STATE(814)] = 56996, - [SMALL_STATE(815)] = 57059, - [SMALL_STATE(816)] = 57122, - [SMALL_STATE(817)] = 57185, - [SMALL_STATE(818)] = 57248, - [SMALL_STATE(819)] = 57311, - [SMALL_STATE(820)] = 57374, - [SMALL_STATE(821)] = 57437, - [SMALL_STATE(822)] = 57500, - [SMALL_STATE(823)] = 57563, - [SMALL_STATE(824)] = 57626, - [SMALL_STATE(825)] = 57689, - [SMALL_STATE(826)] = 57752, - [SMALL_STATE(827)] = 57815, - [SMALL_STATE(828)] = 57878, - [SMALL_STATE(829)] = 57941, - [SMALL_STATE(830)] = 58004, - [SMALL_STATE(831)] = 58067, - [SMALL_STATE(832)] = 58130, - [SMALL_STATE(833)] = 58193, - [SMALL_STATE(834)] = 58256, - [SMALL_STATE(835)] = 58319, - [SMALL_STATE(836)] = 58382, - [SMALL_STATE(837)] = 58445, - [SMALL_STATE(838)] = 58508, - [SMALL_STATE(839)] = 58571, - [SMALL_STATE(840)] = 58634, - [SMALL_STATE(841)] = 58697, - [SMALL_STATE(842)] = 58760, - [SMALL_STATE(843)] = 58823, - [SMALL_STATE(844)] = 58886, - [SMALL_STATE(845)] = 58949, - [SMALL_STATE(846)] = 59012, - [SMALL_STATE(847)] = 59075, - [SMALL_STATE(848)] = 59138, - [SMALL_STATE(849)] = 59201, - [SMALL_STATE(850)] = 59264, - [SMALL_STATE(851)] = 59327, - [SMALL_STATE(852)] = 59390, - [SMALL_STATE(853)] = 59453, - [SMALL_STATE(854)] = 59516, - [SMALL_STATE(855)] = 59579, - [SMALL_STATE(856)] = 59642, - [SMALL_STATE(857)] = 59705, - [SMALL_STATE(858)] = 59768, - [SMALL_STATE(859)] = 59831, - [SMALL_STATE(860)] = 59894, - [SMALL_STATE(861)] = 59957, - [SMALL_STATE(862)] = 60020, - [SMALL_STATE(863)] = 60083, - [SMALL_STATE(864)] = 60146, - [SMALL_STATE(865)] = 60209, - [SMALL_STATE(866)] = 60272, - [SMALL_STATE(867)] = 60335, - [SMALL_STATE(868)] = 60398, - [SMALL_STATE(869)] = 60461, - [SMALL_STATE(870)] = 60524, - [SMALL_STATE(871)] = 60587, - [SMALL_STATE(872)] = 60650, - [SMALL_STATE(873)] = 60713, - [SMALL_STATE(874)] = 60776, - [SMALL_STATE(875)] = 60844, - [SMALL_STATE(876)] = 60912, - [SMALL_STATE(877)] = 60944, - [SMALL_STATE(878)] = 61012, - [SMALL_STATE(879)] = 61080, - [SMALL_STATE(880)] = 61119, - [SMALL_STATE(881)] = 61152, - [SMALL_STATE(882)] = 61185, - [SMALL_STATE(883)] = 61221, - [SMALL_STATE(884)] = 61251, - [SMALL_STATE(885)] = 61319, - [SMALL_STATE(886)] = 61387, - [SMALL_STATE(887)] = 61449, - [SMALL_STATE(888)] = 61481, - [SMALL_STATE(889)] = 61543, - [SMALL_STATE(890)] = 61611, - [SMALL_STATE(891)] = 61653, - [SMALL_STATE(892)] = 61721, - [SMALL_STATE(893)] = 61763, - [SMALL_STATE(894)] = 61795, - [SMALL_STATE(895)] = 61857, - [SMALL_STATE(896)] = 61899, - [SMALL_STATE(897)] = 61961, - [SMALL_STATE(898)] = 62028, - [SMALL_STATE(899)] = 62057, - [SMALL_STATE(900)] = 62084, - [SMALL_STATE(901)] = 62111, - [SMALL_STATE(902)] = 62178, - [SMALL_STATE(903)] = 62207, - [SMALL_STATE(904)] = 62234, - [SMALL_STATE(905)] = 62261, - [SMALL_STATE(906)] = 62290, - [SMALL_STATE(907)] = 62327, - [SMALL_STATE(908)] = 62394, - [SMALL_STATE(909)] = 62427, - [SMALL_STATE(910)] = 62494, - [SMALL_STATE(911)] = 62521, - [SMALL_STATE(912)] = 62548, - [SMALL_STATE(913)] = 62577, - [SMALL_STATE(914)] = 62604, - [SMALL_STATE(915)] = 62631, - [SMALL_STATE(916)] = 62687, - [SMALL_STATE(917)] = 62743, - [SMALL_STATE(918)] = 62783, - [SMALL_STATE(919)] = 62813, - [SMALL_STATE(920)] = 62853, - [SMALL_STATE(921)] = 62915, - [SMALL_STATE(922)] = 62955, - [SMALL_STATE(923)] = 62985, - [SMALL_STATE(924)] = 63019, - [SMALL_STATE(925)] = 63075, - [SMALL_STATE(926)] = 63111, - [SMALL_STATE(927)] = 63173, - [SMALL_STATE(928)] = 63235, - [SMALL_STATE(929)] = 63291, - [SMALL_STATE(930)] = 63353, - [SMALL_STATE(931)] = 63409, - [SMALL_STATE(932)] = 63437, - [SMALL_STATE(933)] = 63470, - [SMALL_STATE(934)] = 63515, - [SMALL_STATE(935)] = 63544, - [SMALL_STATE(936)] = 63605, - [SMALL_STATE(937)] = 63634, - [SMALL_STATE(938)] = 63679, - [SMALL_STATE(939)] = 63724, - [SMALL_STATE(940)] = 63769, - [SMALL_STATE(941)] = 63808, - [SMALL_STATE(942)] = 63853, - [SMALL_STATE(943)] = 63914, - [SMALL_STATE(944)] = 63941, - [SMALL_STATE(945)] = 63986, - [SMALL_STATE(946)] = 64031, - [SMALL_STATE(947)] = 64062, - [SMALL_STATE(948)] = 64089, - [SMALL_STATE(949)] = 64118, - [SMALL_STATE(950)] = 64145, - [SMALL_STATE(951)] = 64206, - [SMALL_STATE(952)] = 64245, - [SMALL_STATE(953)] = 64272, - [SMALL_STATE(954)] = 64311, - [SMALL_STATE(955)] = 64372, - [SMALL_STATE(956)] = 64428, - [SMALL_STATE(957)] = 64484, - [SMALL_STATE(958)] = 64540, - [SMALL_STATE(959)] = 64570, - [SMALL_STATE(960)] = 64596, - [SMALL_STATE(961)] = 64652, - [SMALL_STATE(962)] = 64678, - [SMALL_STATE(963)] = 64702, - [SMALL_STATE(964)] = 64728, - [SMALL_STATE(965)] = 64784, - [SMALL_STATE(966)] = 64839, - [SMALL_STATE(967)] = 64886, - [SMALL_STATE(968)] = 64917, - [SMALL_STATE(969)] = 64964, - [SMALL_STATE(970)] = 65011, - [SMALL_STATE(971)] = 65066, - [SMALL_STATE(972)] = 65121, - [SMALL_STATE(973)] = 65176, - [SMALL_STATE(974)] = 65231, - [SMALL_STATE(975)] = 65278, - [SMALL_STATE(976)] = 65325, - [SMALL_STATE(977)] = 65358, - [SMALL_STATE(978)] = 65405, - [SMALL_STATE(979)] = 65431, - [SMALL_STATE(980)] = 65461, - [SMALL_STATE(981)] = 65487, - [SMALL_STATE(982)] = 65513, - [SMALL_STATE(983)] = 65539, - [SMALL_STATE(984)] = 65565, - [SMALL_STATE(985)] = 65591, - [SMALL_STATE(986)] = 65623, - [SMALL_STATE(987)] = 65649, - [SMALL_STATE(988)] = 65685, - [SMALL_STATE(989)] = 65711, - [SMALL_STATE(990)] = 65747, - [SMALL_STATE(991)] = 65771, - [SMALL_STATE(992)] = 65807, - [SMALL_STATE(993)] = 65834, - [SMALL_STATE(994)] = 65859, - [SMALL_STATE(995)] = 65906, - [SMALL_STATE(996)] = 65931, - [SMALL_STATE(997)] = 65966, - [SMALL_STATE(998)] = 66001, - [SMALL_STATE(999)] = 66026, - [SMALL_STATE(1000)] = 66073, - [SMALL_STATE(1001)] = 66114, - [SMALL_STATE(1002)] = 66155, - [SMALL_STATE(1003)] = 66196, - [SMALL_STATE(1004)] = 66221, - [SMALL_STATE(1005)] = 66246, - [SMALL_STATE(1006)] = 66287, - [SMALL_STATE(1007)] = 66316, - [SMALL_STATE(1008)] = 66363, - [SMALL_STATE(1009)] = 66404, - [SMALL_STATE(1010)] = 66445, - [SMALL_STATE(1011)] = 66492, - [SMALL_STATE(1012)] = 66515, - [SMALL_STATE(1013)] = 66542, - [SMALL_STATE(1014)] = 66563, - [SMALL_STATE(1015)] = 66586, - [SMALL_STATE(1016)] = 66633, - [SMALL_STATE(1017)] = 66660, - [SMALL_STATE(1018)] = 66701, - [SMALL_STATE(1019)] = 66742, - [SMALL_STATE(1020)] = 66783, - [SMALL_STATE(1021)] = 66818, - [SMALL_STATE(1022)] = 66841, - [SMALL_STATE(1023)] = 66866, - [SMALL_STATE(1024)] = 66915, - [SMALL_STATE(1025)] = 66938, - [SMALL_STATE(1026)] = 66985, - [SMALL_STATE(1027)] = 67026, - [SMALL_STATE(1028)] = 67046, - [SMALL_STATE(1029)] = 67068, - [SMALL_STATE(1030)] = 67114, - [SMALL_STATE(1031)] = 67136, - [SMALL_STATE(1032)] = 67158, - [SMALL_STATE(1033)] = 67178, - [SMALL_STATE(1034)] = 67200, - [SMALL_STATE(1035)] = 67220, - [SMALL_STATE(1036)] = 67240, - [SMALL_STATE(1037)] = 67286, - [SMALL_STATE(1038)] = 67306, - [SMALL_STATE(1039)] = 67352, - [SMALL_STATE(1040)] = 67372, - [SMALL_STATE(1041)] = 67394, - [SMALL_STATE(1042)] = 67416, - [SMALL_STATE(1043)] = 67440, - [SMALL_STATE(1044)] = 67462, - [SMALL_STATE(1045)] = 67508, - [SMALL_STATE(1046)] = 67528, - [SMALL_STATE(1047)] = 67550, - [SMALL_STATE(1048)] = 67596, - [SMALL_STATE(1049)] = 67618, - [SMALL_STATE(1050)] = 67640, - [SMALL_STATE(1051)] = 67662, - [SMALL_STATE(1052)] = 67684, - [SMALL_STATE(1053)] = 67730, - [SMALL_STATE(1054)] = 67756, - [SMALL_STATE(1055)] = 67797, - [SMALL_STATE(1056)] = 67838, - [SMALL_STATE(1057)] = 67879, - [SMALL_STATE(1058)] = 67898, - [SMALL_STATE(1059)] = 67919, - [SMALL_STATE(1060)] = 67960, - [SMALL_STATE(1061)] = 68001, - [SMALL_STATE(1062)] = 68036, - [SMALL_STATE(1063)] = 68059, - [SMALL_STATE(1064)] = 68078, - [SMALL_STATE(1065)] = 68101, - [SMALL_STATE(1066)] = 68136, - [SMALL_STATE(1067)] = 68161, - [SMALL_STATE(1068)] = 68184, - [SMALL_STATE(1069)] = 68219, - [SMALL_STATE(1070)] = 68260, - [SMALL_STATE(1071)] = 68295, - [SMALL_STATE(1072)] = 68322, - [SMALL_STATE(1073)] = 68357, - [SMALL_STATE(1074)] = 68380, - [SMALL_STATE(1075)] = 68415, - [SMALL_STATE(1076)] = 68450, - [SMALL_STATE(1077)] = 68485, - [SMALL_STATE(1078)] = 68526, - [SMALL_STATE(1079)] = 68549, - [SMALL_STATE(1080)] = 68568, - [SMALL_STATE(1081)] = 68609, - [SMALL_STATE(1082)] = 68628, - [SMALL_STATE(1083)] = 68651, - [SMALL_STATE(1084)] = 68670, - [SMALL_STATE(1085)] = 68693, - [SMALL_STATE(1086)] = 68733, - [SMALL_STATE(1087)] = 68755, - [SMALL_STATE(1088)] = 68787, - [SMALL_STATE(1089)] = 68827, - [SMALL_STATE(1090)] = 68845, - [SMALL_STATE(1091)] = 68885, - [SMALL_STATE(1092)] = 68923, - [SMALL_STATE(1093)] = 68957, - [SMALL_STATE(1094)] = 68975, - [SMALL_STATE(1095)] = 68993, - [SMALL_STATE(1096)] = 69031, - [SMALL_STATE(1097)] = 69071, - [SMALL_STATE(1098)] = 69093, - [SMALL_STATE(1099)] = 69131, - [SMALL_STATE(1100)] = 69165, - [SMALL_STATE(1101)] = 69203, - [SMALL_STATE(1102)] = 69243, - [SMALL_STATE(1103)] = 69267, - [SMALL_STATE(1104)] = 69289, - [SMALL_STATE(1105)] = 69313, - [SMALL_STATE(1106)] = 69331, - [SMALL_STATE(1107)] = 69369, - [SMALL_STATE(1108)] = 69401, - [SMALL_STATE(1109)] = 69439, - [SMALL_STATE(1110)] = 69473, - [SMALL_STATE(1111)] = 69495, - [SMALL_STATE(1112)] = 69535, - [SMALL_STATE(1113)] = 69555, - [SMALL_STATE(1114)] = 69573, - [SMALL_STATE(1115)] = 69605, - [SMALL_STATE(1116)] = 69645, - [SMALL_STATE(1117)] = 69667, - [SMALL_STATE(1118)] = 69687, - [SMALL_STATE(1119)] = 69722, - [SMALL_STATE(1120)] = 69743, - [SMALL_STATE(1121)] = 69760, - [SMALL_STATE(1122)] = 69777, - [SMALL_STATE(1123)] = 69812, - [SMALL_STATE(1124)] = 69833, - [SMALL_STATE(1125)] = 69854, - [SMALL_STATE(1126)] = 69889, - [SMALL_STATE(1127)] = 69918, - [SMALL_STATE(1128)] = 69947, - [SMALL_STATE(1129)] = 69982, - [SMALL_STATE(1130)] = 70011, - [SMALL_STATE(1131)] = 70040, - [SMALL_STATE(1132)] = 70057, - [SMALL_STATE(1133)] = 70078, - [SMALL_STATE(1134)] = 70095, - [SMALL_STATE(1135)] = 70116, - [SMALL_STATE(1136)] = 70145, - [SMALL_STATE(1137)] = 70182, - [SMALL_STATE(1138)] = 70211, - [SMALL_STATE(1139)] = 70246, - [SMALL_STATE(1140)] = 70281, - [SMALL_STATE(1141)] = 70298, - [SMALL_STATE(1142)] = 70327, - [SMALL_STATE(1143)] = 70362, - [SMALL_STATE(1144)] = 70391, - [SMALL_STATE(1145)] = 70426, - [SMALL_STATE(1146)] = 70457, - [SMALL_STATE(1147)] = 70486, - [SMALL_STATE(1148)] = 70503, - [SMALL_STATE(1149)] = 70532, - [SMALL_STATE(1150)] = 70561, - [SMALL_STATE(1151)] = 70578, - [SMALL_STATE(1152)] = 70607, - [SMALL_STATE(1153)] = 70638, - [SMALL_STATE(1154)] = 70673, - [SMALL_STATE(1155)] = 70702, - [SMALL_STATE(1156)] = 70737, - [SMALL_STATE(1157)] = 70772, - [SMALL_STATE(1158)] = 70789, - [SMALL_STATE(1159)] = 70826, - [SMALL_STATE(1160)] = 70846, - [SMALL_STATE(1161)] = 70862, - [SMALL_STATE(1162)] = 70882, - [SMALL_STATE(1163)] = 70916, - [SMALL_STATE(1164)] = 70936, - [SMALL_STATE(1165)] = 70956, - [SMALL_STATE(1166)] = 70990, - [SMALL_STATE(1167)] = 71006, - [SMALL_STATE(1168)] = 71040, - [SMALL_STATE(1169)] = 71056, - [SMALL_STATE(1170)] = 71090, - [SMALL_STATE(1171)] = 71116, - [SMALL_STATE(1172)] = 71132, - [SMALL_STATE(1173)] = 71166, - [SMALL_STATE(1174)] = 71182, - [SMALL_STATE(1175)] = 71216, - [SMALL_STATE(1176)] = 71232, - [SMALL_STATE(1177)] = 71266, - [SMALL_STATE(1178)] = 71282, - [SMALL_STATE(1179)] = 71298, - [SMALL_STATE(1180)] = 71332, - [SMALL_STATE(1181)] = 71348, - [SMALL_STATE(1182)] = 71368, - [SMALL_STATE(1183)] = 71396, - [SMALL_STATE(1184)] = 71412, - [SMALL_STATE(1185)] = 71432, - [SMALL_STATE(1186)] = 71461, - [SMALL_STATE(1187)] = 71490, - [SMALL_STATE(1188)] = 71521, - [SMALL_STATE(1189)] = 71550, - [SMALL_STATE(1190)] = 71579, - [SMALL_STATE(1191)] = 71608, - [SMALL_STATE(1192)] = 71637, - [SMALL_STATE(1193)] = 71666, - [SMALL_STATE(1194)] = 71695, - [SMALL_STATE(1195)] = 71726, - [SMALL_STATE(1196)] = 71755, - [SMALL_STATE(1197)] = 71784, - [SMALL_STATE(1198)] = 71813, - [SMALL_STATE(1199)] = 71842, - [SMALL_STATE(1200)] = 71857, - [SMALL_STATE(1201)] = 71872, - [SMALL_STATE(1202)] = 71901, - [SMALL_STATE(1203)] = 71930, - [SMALL_STATE(1204)] = 71959, - [SMALL_STATE(1205)] = 71988, - [SMALL_STATE(1206)] = 72017, - [SMALL_STATE(1207)] = 72046, - [SMALL_STATE(1208)] = 72075, - [SMALL_STATE(1209)] = 72104, - [SMALL_STATE(1210)] = 72119, - [SMALL_STATE(1211)] = 72148, - [SMALL_STATE(1212)] = 72166, - [SMALL_STATE(1213)] = 72190, - [SMALL_STATE(1214)] = 72216, - [SMALL_STATE(1215)] = 72240, - [SMALL_STATE(1216)] = 72264, - [SMALL_STATE(1217)] = 72290, - [SMALL_STATE(1218)] = 72318, - [SMALL_STATE(1219)] = 72344, - [SMALL_STATE(1220)] = 72368, - [SMALL_STATE(1221)] = 72394, - [SMALL_STATE(1222)] = 72418, - [SMALL_STATE(1223)] = 72444, - [SMALL_STATE(1224)] = 72470, - [SMALL_STATE(1225)] = 72494, - [SMALL_STATE(1226)] = 72516, - [SMALL_STATE(1227)] = 72540, - [SMALL_STATE(1228)] = 72568, - [SMALL_STATE(1229)] = 72592, - [SMALL_STATE(1230)] = 72620, - [SMALL_STATE(1231)] = 72644, - [SMALL_STATE(1232)] = 72670, - [SMALL_STATE(1233)] = 72694, - [SMALL_STATE(1234)] = 72720, - [SMALL_STATE(1235)] = 72746, - [SMALL_STATE(1236)] = 72770, - [SMALL_STATE(1237)] = 72794, - [SMALL_STATE(1238)] = 72818, - [SMALL_STATE(1239)] = 72846, - [SMALL_STATE(1240)] = 72862, - [SMALL_STATE(1241)] = 72890, - [SMALL_STATE(1242)] = 72916, - [SMALL_STATE(1243)] = 72940, - [SMALL_STATE(1244)] = 72962, - [SMALL_STATE(1245)] = 72988, - [SMALL_STATE(1246)] = 73016, - [SMALL_STATE(1247)] = 73040, - [SMALL_STATE(1248)] = 73064, - [SMALL_STATE(1249)] = 73092, - [SMALL_STATE(1250)] = 73116, - [SMALL_STATE(1251)] = 73142, - [SMALL_STATE(1252)] = 73166, - [SMALL_STATE(1253)] = 73192, - [SMALL_STATE(1254)] = 73208, - [SMALL_STATE(1255)] = 73234, - [SMALL_STATE(1256)] = 73258, - [SMALL_STATE(1257)] = 73286, - [SMALL_STATE(1258)] = 73312, - [SMALL_STATE(1259)] = 73340, - [SMALL_STATE(1260)] = 73368, - [SMALL_STATE(1261)] = 73392, - [SMALL_STATE(1262)] = 73418, - [SMALL_STATE(1263)] = 73446, - [SMALL_STATE(1264)] = 73472, - [SMALL_STATE(1265)] = 73496, - [SMALL_STATE(1266)] = 73522, - [SMALL_STATE(1267)] = 73546, - [SMALL_STATE(1268)] = 73572, - [SMALL_STATE(1269)] = 73600, - [SMALL_STATE(1270)] = 73618, - [SMALL_STATE(1271)] = 73642, - [SMALL_STATE(1272)] = 73668, - [SMALL_STATE(1273)] = 73689, - [SMALL_STATE(1274)] = 73712, - [SMALL_STATE(1275)] = 73735, - [SMALL_STATE(1276)] = 73756, - [SMALL_STATE(1277)] = 73773, - [SMALL_STATE(1278)] = 73796, - [SMALL_STATE(1279)] = 73819, - [SMALL_STATE(1280)] = 73840, - [SMALL_STATE(1281)] = 73861, - [SMALL_STATE(1282)] = 73878, - [SMALL_STATE(1283)] = 73891, - [SMALL_STATE(1284)] = 73908, - [SMALL_STATE(1285)] = 73921, - [SMALL_STATE(1286)] = 73942, - [SMALL_STATE(1287)] = 73955, - [SMALL_STATE(1288)] = 73972, - [SMALL_STATE(1289)] = 73995, - [SMALL_STATE(1290)] = 74012, - [SMALL_STATE(1291)] = 74025, - [SMALL_STATE(1292)] = 74038, - [SMALL_STATE(1293)] = 74055, - [SMALL_STATE(1294)] = 74072, - [SMALL_STATE(1295)] = 74085, - [SMALL_STATE(1296)] = 74106, - [SMALL_STATE(1297)] = 74127, - [SMALL_STATE(1298)] = 74144, - [SMALL_STATE(1299)] = 74157, - [SMALL_STATE(1300)] = 74170, - [SMALL_STATE(1301)] = 74193, - [SMALL_STATE(1302)] = 74218, - [SMALL_STATE(1303)] = 74241, - [SMALL_STATE(1304)] = 74262, - [SMALL_STATE(1305)] = 74280, - [SMALL_STATE(1306)] = 74300, - [SMALL_STATE(1307)] = 74320, - [SMALL_STATE(1308)] = 74334, - [SMALL_STATE(1309)] = 74348, - [SMALL_STATE(1310)] = 74362, - [SMALL_STATE(1311)] = 74376, - [SMALL_STATE(1312)] = 74396, - [SMALL_STATE(1313)] = 74410, - [SMALL_STATE(1314)] = 74424, - [SMALL_STATE(1315)] = 74444, - [SMALL_STATE(1316)] = 74464, - [SMALL_STATE(1317)] = 74484, - [SMALL_STATE(1318)] = 74504, - [SMALL_STATE(1319)] = 74516, - [SMALL_STATE(1320)] = 74538, - [SMALL_STATE(1321)] = 74558, - [SMALL_STATE(1322)] = 74578, - [SMALL_STATE(1323)] = 74590, - [SMALL_STATE(1324)] = 74610, - [SMALL_STATE(1325)] = 74630, - [SMALL_STATE(1326)] = 74650, - [SMALL_STATE(1327)] = 74662, - [SMALL_STATE(1328)] = 74682, - [SMALL_STATE(1329)] = 74700, - [SMALL_STATE(1330)] = 74720, - [SMALL_STATE(1331)] = 74740, - [SMALL_STATE(1332)] = 74760, - [SMALL_STATE(1333)] = 74778, - [SMALL_STATE(1334)] = 74794, - [SMALL_STATE(1335)] = 74814, - [SMALL_STATE(1336)] = 74826, - [SMALL_STATE(1337)] = 74846, - [SMALL_STATE(1338)] = 74866, - [SMALL_STATE(1339)] = 74878, - [SMALL_STATE(1340)] = 74892, - [SMALL_STATE(1341)] = 74904, - [SMALL_STATE(1342)] = 74922, - [SMALL_STATE(1343)] = 74942, - [SMALL_STATE(1344)] = 74964, - [SMALL_STATE(1345)] = 74984, - [SMALL_STATE(1346)] = 75004, - [SMALL_STATE(1347)] = 75016, - [SMALL_STATE(1348)] = 75038, - [SMALL_STATE(1349)] = 75060, - [SMALL_STATE(1350)] = 75072, - [SMALL_STATE(1351)] = 75088, - [SMALL_STATE(1352)] = 75108, - [SMALL_STATE(1353)] = 75122, - [SMALL_STATE(1354)] = 75134, - [SMALL_STATE(1355)] = 75154, - [SMALL_STATE(1356)] = 75174, - [SMALL_STATE(1357)] = 75196, - [SMALL_STATE(1358)] = 75216, - [SMALL_STATE(1359)] = 75236, - [SMALL_STATE(1360)] = 75256, - [SMALL_STATE(1361)] = 75272, - [SMALL_STATE(1362)] = 75284, - [SMALL_STATE(1363)] = 75302, - [SMALL_STATE(1364)] = 75318, - [SMALL_STATE(1365)] = 75330, - [SMALL_STATE(1366)] = 75344, - [SMALL_STATE(1367)] = 75364, - [SMALL_STATE(1368)] = 75376, - [SMALL_STATE(1369)] = 75388, - [SMALL_STATE(1370)] = 75406, - [SMALL_STATE(1371)] = 75426, - [SMALL_STATE(1372)] = 75446, - [SMALL_STATE(1373)] = 75466, - [SMALL_STATE(1374)] = 75486, - [SMALL_STATE(1375)] = 75504, - [SMALL_STATE(1376)] = 75516, - [SMALL_STATE(1377)] = 75536, - [SMALL_STATE(1378)] = 75550, - [SMALL_STATE(1379)] = 75570, - [SMALL_STATE(1380)] = 75590, - [SMALL_STATE(1381)] = 75602, - [SMALL_STATE(1382)] = 75618, - [SMALL_STATE(1383)] = 75638, - [SMALL_STATE(1384)] = 75656, - [SMALL_STATE(1385)] = 75676, - [SMALL_STATE(1386)] = 75695, - [SMALL_STATE(1387)] = 75714, - [SMALL_STATE(1388)] = 75731, - [SMALL_STATE(1389)] = 75746, - [SMALL_STATE(1390)] = 75761, - [SMALL_STATE(1391)] = 75780, - [SMALL_STATE(1392)] = 75797, - [SMALL_STATE(1393)] = 75808, - [SMALL_STATE(1394)] = 75825, - [SMALL_STATE(1395)] = 75836, - [SMALL_STATE(1396)] = 75855, - [SMALL_STATE(1397)] = 75872, - [SMALL_STATE(1398)] = 75891, - [SMALL_STATE(1399)] = 75908, - [SMALL_STATE(1400)] = 75923, - [SMALL_STATE(1401)] = 75936, - [SMALL_STATE(1402)] = 75949, - [SMALL_STATE(1403)] = 75968, - [SMALL_STATE(1404)] = 75983, - [SMALL_STATE(1405)] = 76000, - [SMALL_STATE(1406)] = 76019, - [SMALL_STATE(1407)] = 76036, - [SMALL_STATE(1408)] = 76055, - [SMALL_STATE(1409)] = 76072, - [SMALL_STATE(1410)] = 76083, - [SMALL_STATE(1411)] = 76102, - [SMALL_STATE(1412)] = 76121, - [SMALL_STATE(1413)] = 76140, - [SMALL_STATE(1414)] = 76159, - [SMALL_STATE(1415)] = 76170, - [SMALL_STATE(1416)] = 76189, - [SMALL_STATE(1417)] = 76204, - [SMALL_STATE(1418)] = 76221, - [SMALL_STATE(1419)] = 76238, - [SMALL_STATE(1420)] = 76251, - [SMALL_STATE(1421)] = 76268, - [SMALL_STATE(1422)] = 76279, - [SMALL_STATE(1423)] = 76294, - [SMALL_STATE(1424)] = 76311, - [SMALL_STATE(1425)] = 76328, - [SMALL_STATE(1426)] = 76345, - [SMALL_STATE(1427)] = 76358, - [SMALL_STATE(1428)] = 76377, - [SMALL_STATE(1429)] = 76392, - [SMALL_STATE(1430)] = 76403, - [SMALL_STATE(1431)] = 76422, - [SMALL_STATE(1432)] = 76441, - [SMALL_STATE(1433)] = 76458, - [SMALL_STATE(1434)] = 76469, - [SMALL_STATE(1435)] = 76488, - [SMALL_STATE(1436)] = 76507, - [SMALL_STATE(1437)] = 76526, - [SMALL_STATE(1438)] = 76543, - [SMALL_STATE(1439)] = 76560, - [SMALL_STATE(1440)] = 76579, - [SMALL_STATE(1441)] = 76590, - [SMALL_STATE(1442)] = 76607, - [SMALL_STATE(1443)] = 76624, - [SMALL_STATE(1444)] = 76635, - [SMALL_STATE(1445)] = 76654, - [SMALL_STATE(1446)] = 76673, - [SMALL_STATE(1447)] = 76692, - [SMALL_STATE(1448)] = 76707, - [SMALL_STATE(1449)] = 76722, - [SMALL_STATE(1450)] = 76737, - [SMALL_STATE(1451)] = 76751, - [SMALL_STATE(1452)] = 76765, - [SMALL_STATE(1453)] = 76781, - [SMALL_STATE(1454)] = 76797, - [SMALL_STATE(1455)] = 76813, - [SMALL_STATE(1456)] = 76829, - [SMALL_STATE(1457)] = 76845, - [SMALL_STATE(1458)] = 76861, - [SMALL_STATE(1459)] = 76877, - [SMALL_STATE(1460)] = 76891, - [SMALL_STATE(1461)] = 76905, - [SMALL_STATE(1462)] = 76919, - [SMALL_STATE(1463)] = 76933, - [SMALL_STATE(1464)] = 76947, - [SMALL_STATE(1465)] = 76961, - [SMALL_STATE(1466)] = 76975, - [SMALL_STATE(1467)] = 76989, - [SMALL_STATE(1468)] = 77003, - [SMALL_STATE(1469)] = 77017, - [SMALL_STATE(1470)] = 77031, - [SMALL_STATE(1471)] = 77045, - [SMALL_STATE(1472)] = 77059, - [SMALL_STATE(1473)] = 77073, - [SMALL_STATE(1474)] = 77087, - [SMALL_STATE(1475)] = 77101, - [SMALL_STATE(1476)] = 77117, - [SMALL_STATE(1477)] = 77131, - [SMALL_STATE(1478)] = 77145, - [SMALL_STATE(1479)] = 77157, - [SMALL_STATE(1480)] = 77171, - [SMALL_STATE(1481)] = 77185, - [SMALL_STATE(1482)] = 77201, - [SMALL_STATE(1483)] = 77217, - [SMALL_STATE(1484)] = 77231, - [SMALL_STATE(1485)] = 77241, - [SMALL_STATE(1486)] = 77255, - [SMALL_STATE(1487)] = 77269, - [SMALL_STATE(1488)] = 77283, - [SMALL_STATE(1489)] = 77297, - [SMALL_STATE(1490)] = 77311, - [SMALL_STATE(1491)] = 77327, - [SMALL_STATE(1492)] = 77341, - [SMALL_STATE(1493)] = 77351, - [SMALL_STATE(1494)] = 77365, - [SMALL_STATE(1495)] = 77379, - [SMALL_STATE(1496)] = 77393, - [SMALL_STATE(1497)] = 77407, - [SMALL_STATE(1498)] = 77421, - [SMALL_STATE(1499)] = 77437, - [SMALL_STATE(1500)] = 77451, - [SMALL_STATE(1501)] = 77461, - [SMALL_STATE(1502)] = 77475, - [SMALL_STATE(1503)] = 77489, - [SMALL_STATE(1504)] = 77503, - [SMALL_STATE(1505)] = 77517, - [SMALL_STATE(1506)] = 77531, - [SMALL_STATE(1507)] = 77545, - [SMALL_STATE(1508)] = 77555, - [SMALL_STATE(1509)] = 77567, - [SMALL_STATE(1510)] = 77583, - [SMALL_STATE(1511)] = 77597, - [SMALL_STATE(1512)] = 77611, - [SMALL_STATE(1513)] = 77621, - [SMALL_STATE(1514)] = 77635, - [SMALL_STATE(1515)] = 77649, - [SMALL_STATE(1516)] = 77663, - [SMALL_STATE(1517)] = 77677, - [SMALL_STATE(1518)] = 77693, - [SMALL_STATE(1519)] = 77707, - [SMALL_STATE(1520)] = 77721, - [SMALL_STATE(1521)] = 77731, - [SMALL_STATE(1522)] = 77745, - [SMALL_STATE(1523)] = 77755, - [SMALL_STATE(1524)] = 77769, - [SMALL_STATE(1525)] = 77783, - [SMALL_STATE(1526)] = 77799, - [SMALL_STATE(1527)] = 77815, - [SMALL_STATE(1528)] = 77829, - [SMALL_STATE(1529)] = 77845, - [SMALL_STATE(1530)] = 77861, - [SMALL_STATE(1531)] = 77877, - [SMALL_STATE(1532)] = 77891, - [SMALL_STATE(1533)] = 77901, - [SMALL_STATE(1534)] = 77915, - [SMALL_STATE(1535)] = 77929, - [SMALL_STATE(1536)] = 77945, - [SMALL_STATE(1537)] = 77955, - [SMALL_STATE(1538)] = 77971, - [SMALL_STATE(1539)] = 77981, - [SMALL_STATE(1540)] = 77997, - [SMALL_STATE(1541)] = 78013, - [SMALL_STATE(1542)] = 78027, - [SMALL_STATE(1543)] = 78041, - [SMALL_STATE(1544)] = 78055, - [SMALL_STATE(1545)] = 78069, - [SMALL_STATE(1546)] = 78083, - [SMALL_STATE(1547)] = 78097, - [SMALL_STATE(1548)] = 78111, - [SMALL_STATE(1549)] = 78125, - [SMALL_STATE(1550)] = 78139, - [SMALL_STATE(1551)] = 78153, - [SMALL_STATE(1552)] = 78163, - [SMALL_STATE(1553)] = 78177, - [SMALL_STATE(1554)] = 78193, - [SMALL_STATE(1555)] = 78209, - [SMALL_STATE(1556)] = 78223, - [SMALL_STATE(1557)] = 78233, - [SMALL_STATE(1558)] = 78247, - [SMALL_STATE(1559)] = 78261, - [SMALL_STATE(1560)] = 78275, - [SMALL_STATE(1561)] = 78289, - [SMALL_STATE(1562)] = 78299, - [SMALL_STATE(1563)] = 78313, - [SMALL_STATE(1564)] = 78323, - [SMALL_STATE(1565)] = 78339, - [SMALL_STATE(1566)] = 78349, - [SMALL_STATE(1567)] = 78365, - [SMALL_STATE(1568)] = 78379, - [SMALL_STATE(1569)] = 78389, - [SMALL_STATE(1570)] = 78403, - [SMALL_STATE(1571)] = 78417, - [SMALL_STATE(1572)] = 78433, - [SMALL_STATE(1573)] = 78447, - [SMALL_STATE(1574)] = 78461, - [SMALL_STATE(1575)] = 78475, - [SMALL_STATE(1576)] = 78489, - [SMALL_STATE(1577)] = 78505, - [SMALL_STATE(1578)] = 78518, - [SMALL_STATE(1579)] = 78531, - [SMALL_STATE(1580)] = 78544, - [SMALL_STATE(1581)] = 78555, - [SMALL_STATE(1582)] = 78568, - [SMALL_STATE(1583)] = 78581, - [SMALL_STATE(1584)] = 78594, - [SMALL_STATE(1585)] = 78607, - [SMALL_STATE(1586)] = 78620, - [SMALL_STATE(1587)] = 78633, - [SMALL_STATE(1588)] = 78646, - [SMALL_STATE(1589)] = 78659, - [SMALL_STATE(1590)] = 78672, - [SMALL_STATE(1591)] = 78685, - [SMALL_STATE(1592)] = 78698, - [SMALL_STATE(1593)] = 78711, - [SMALL_STATE(1594)] = 78720, - [SMALL_STATE(1595)] = 78733, - [SMALL_STATE(1596)] = 78746, - [SMALL_STATE(1597)] = 78759, - [SMALL_STATE(1598)] = 78772, - [SMALL_STATE(1599)] = 78785, - [SMALL_STATE(1600)] = 78798, - [SMALL_STATE(1601)] = 78811, - [SMALL_STATE(1602)] = 78824, - [SMALL_STATE(1603)] = 78837, - [SMALL_STATE(1604)] = 78850, - [SMALL_STATE(1605)] = 78863, - [SMALL_STATE(1606)] = 78876, - [SMALL_STATE(1607)] = 78889, - [SMALL_STATE(1608)] = 78902, - [SMALL_STATE(1609)] = 78915, - [SMALL_STATE(1610)] = 78928, - [SMALL_STATE(1611)] = 78941, - [SMALL_STATE(1612)] = 78954, - [SMALL_STATE(1613)] = 78967, - [SMALL_STATE(1614)] = 78980, - [SMALL_STATE(1615)] = 78993, - [SMALL_STATE(1616)] = 79006, - [SMALL_STATE(1617)] = 79019, - [SMALL_STATE(1618)] = 79032, - [SMALL_STATE(1619)] = 79045, - [SMALL_STATE(1620)] = 79058, - [SMALL_STATE(1621)] = 79071, - [SMALL_STATE(1622)] = 79084, - [SMALL_STATE(1623)] = 79093, - [SMALL_STATE(1624)] = 79106, - [SMALL_STATE(1625)] = 79119, - [SMALL_STATE(1626)] = 79132, - [SMALL_STATE(1627)] = 79145, - [SMALL_STATE(1628)] = 79158, - [SMALL_STATE(1629)] = 79167, - [SMALL_STATE(1630)] = 79180, - [SMALL_STATE(1631)] = 79193, - [SMALL_STATE(1632)] = 79206, - [SMALL_STATE(1633)] = 79219, - [SMALL_STATE(1634)] = 79232, - [SMALL_STATE(1635)] = 79241, - [SMALL_STATE(1636)] = 79254, - [SMALL_STATE(1637)] = 79267, - [SMALL_STATE(1638)] = 79280, - [SMALL_STATE(1639)] = 79293, - [SMALL_STATE(1640)] = 79306, - [SMALL_STATE(1641)] = 79319, - [SMALL_STATE(1642)] = 79332, - [SMALL_STATE(1643)] = 79345, - [SMALL_STATE(1644)] = 79354, - [SMALL_STATE(1645)] = 79367, - [SMALL_STATE(1646)] = 79378, - [SMALL_STATE(1647)] = 79391, - [SMALL_STATE(1648)] = 79404, - [SMALL_STATE(1649)] = 79417, - [SMALL_STATE(1650)] = 79430, - [SMALL_STATE(1651)] = 79443, - [SMALL_STATE(1652)] = 79456, - [SMALL_STATE(1653)] = 79469, - [SMALL_STATE(1654)] = 79478, - [SMALL_STATE(1655)] = 79491, - [SMALL_STATE(1656)] = 79504, - [SMALL_STATE(1657)] = 79517, - [SMALL_STATE(1658)] = 79530, - [SMALL_STATE(1659)] = 79543, - [SMALL_STATE(1660)] = 79552, - [SMALL_STATE(1661)] = 79565, - [SMALL_STATE(1662)] = 79574, - [SMALL_STATE(1663)] = 79587, - [SMALL_STATE(1664)] = 79600, - [SMALL_STATE(1665)] = 79613, - [SMALL_STATE(1666)] = 79626, - [SMALL_STATE(1667)] = 79639, - [SMALL_STATE(1668)] = 79652, - [SMALL_STATE(1669)] = 79665, - [SMALL_STATE(1670)] = 79678, - [SMALL_STATE(1671)] = 79691, - [SMALL_STATE(1672)] = 79700, - [SMALL_STATE(1673)] = 79713, - [SMALL_STATE(1674)] = 79726, - [SMALL_STATE(1675)] = 79739, - [SMALL_STATE(1676)] = 79752, - [SMALL_STATE(1677)] = 79761, - [SMALL_STATE(1678)] = 79774, - [SMALL_STATE(1679)] = 79787, - [SMALL_STATE(1680)] = 79800, - [SMALL_STATE(1681)] = 79813, - [SMALL_STATE(1682)] = 79826, - [SMALL_STATE(1683)] = 79839, - [SMALL_STATE(1684)] = 79852, - [SMALL_STATE(1685)] = 79865, - [SMALL_STATE(1686)] = 79878, - [SMALL_STATE(1687)] = 79891, - [SMALL_STATE(1688)] = 79904, - [SMALL_STATE(1689)] = 79915, - [SMALL_STATE(1690)] = 79924, - [SMALL_STATE(1691)] = 79937, - [SMALL_STATE(1692)] = 79950, - [SMALL_STATE(1693)] = 79963, - [SMALL_STATE(1694)] = 79972, - [SMALL_STATE(1695)] = 79985, - [SMALL_STATE(1696)] = 79998, - [SMALL_STATE(1697)] = 80011, - [SMALL_STATE(1698)] = 80020, - [SMALL_STATE(1699)] = 80033, - [SMALL_STATE(1700)] = 80046, - [SMALL_STATE(1701)] = 80059, - [SMALL_STATE(1702)] = 80072, - [SMALL_STATE(1703)] = 80085, - [SMALL_STATE(1704)] = 80098, - [SMALL_STATE(1705)] = 80111, - [SMALL_STATE(1706)] = 80124, - [SMALL_STATE(1707)] = 80133, - [SMALL_STATE(1708)] = 80146, - [SMALL_STATE(1709)] = 80159, - [SMALL_STATE(1710)] = 80172, - [SMALL_STATE(1711)] = 80185, - [SMALL_STATE(1712)] = 80198, - [SMALL_STATE(1713)] = 80211, - [SMALL_STATE(1714)] = 80224, - [SMALL_STATE(1715)] = 80237, - [SMALL_STATE(1716)] = 80250, - [SMALL_STATE(1717)] = 80259, - [SMALL_STATE(1718)] = 80272, - [SMALL_STATE(1719)] = 80285, - [SMALL_STATE(1720)] = 80298, - [SMALL_STATE(1721)] = 80311, - [SMALL_STATE(1722)] = 80324, - [SMALL_STATE(1723)] = 80337, - [SMALL_STATE(1724)] = 80350, - [SMALL_STATE(1725)] = 80363, - [SMALL_STATE(1726)] = 80376, - [SMALL_STATE(1727)] = 80389, - [SMALL_STATE(1728)] = 80402, - [SMALL_STATE(1729)] = 80415, - [SMALL_STATE(1730)] = 80428, - [SMALL_STATE(1731)] = 80441, - [SMALL_STATE(1732)] = 80450, - [SMALL_STATE(1733)] = 80463, - [SMALL_STATE(1734)] = 80476, - [SMALL_STATE(1735)] = 80489, - [SMALL_STATE(1736)] = 80502, - [SMALL_STATE(1737)] = 80515, - [SMALL_STATE(1738)] = 80528, - [SMALL_STATE(1739)] = 80541, - [SMALL_STATE(1740)] = 80550, - [SMALL_STATE(1741)] = 80563, - [SMALL_STATE(1742)] = 80576, - [SMALL_STATE(1743)] = 80589, - [SMALL_STATE(1744)] = 80602, - [SMALL_STATE(1745)] = 80615, - [SMALL_STATE(1746)] = 80628, - [SMALL_STATE(1747)] = 80641, - [SMALL_STATE(1748)] = 80654, - [SMALL_STATE(1749)] = 80663, - [SMALL_STATE(1750)] = 80676, - [SMALL_STATE(1751)] = 80689, - [SMALL_STATE(1752)] = 80702, - [SMALL_STATE(1753)] = 80715, - [SMALL_STATE(1754)] = 80728, - [SMALL_STATE(1755)] = 80741, - [SMALL_STATE(1756)] = 80754, - [SMALL_STATE(1757)] = 80767, - [SMALL_STATE(1758)] = 80780, - [SMALL_STATE(1759)] = 80793, - [SMALL_STATE(1760)] = 80806, - [SMALL_STATE(1761)] = 80819, - [SMALL_STATE(1762)] = 80832, - [SMALL_STATE(1763)] = 80841, - [SMALL_STATE(1764)] = 80854, - [SMALL_STATE(1765)] = 80867, - [SMALL_STATE(1766)] = 80880, - [SMALL_STATE(1767)] = 80893, - [SMALL_STATE(1768)] = 80906, - [SMALL_STATE(1769)] = 80919, - [SMALL_STATE(1770)] = 80932, - [SMALL_STATE(1771)] = 80945, - [SMALL_STATE(1772)] = 80958, - [SMALL_STATE(1773)] = 80971, - [SMALL_STATE(1774)] = 80984, - [SMALL_STATE(1775)] = 80997, - [SMALL_STATE(1776)] = 81010, - [SMALL_STATE(1777)] = 81023, - [SMALL_STATE(1778)] = 81036, - [SMALL_STATE(1779)] = 81046, - [SMALL_STATE(1780)] = 81054, - [SMALL_STATE(1781)] = 81064, - [SMALL_STATE(1782)] = 81074, - [SMALL_STATE(1783)] = 81082, - [SMALL_STATE(1784)] = 81092, - [SMALL_STATE(1785)] = 81102, - [SMALL_STATE(1786)] = 81110, - [SMALL_STATE(1787)] = 81120, - [SMALL_STATE(1788)] = 81128, - [SMALL_STATE(1789)] = 81136, - [SMALL_STATE(1790)] = 81146, - [SMALL_STATE(1791)] = 81156, - [SMALL_STATE(1792)] = 81164, - [SMALL_STATE(1793)] = 81172, - [SMALL_STATE(1794)] = 81182, - [SMALL_STATE(1795)] = 81192, - [SMALL_STATE(1796)] = 81200, - [SMALL_STATE(1797)] = 81210, - [SMALL_STATE(1798)] = 81220, - [SMALL_STATE(1799)] = 81230, - [SMALL_STATE(1800)] = 81238, - [SMALL_STATE(1801)] = 81246, - [SMALL_STATE(1802)] = 81256, - [SMALL_STATE(1803)] = 81264, - [SMALL_STATE(1804)] = 81272, - [SMALL_STATE(1805)] = 81282, - [SMALL_STATE(1806)] = 81292, - [SMALL_STATE(1807)] = 81300, - [SMALL_STATE(1808)] = 81310, - [SMALL_STATE(1809)] = 81318, - [SMALL_STATE(1810)] = 81326, - [SMALL_STATE(1811)] = 81336, - [SMALL_STATE(1812)] = 81344, - [SMALL_STATE(1813)] = 81354, - [SMALL_STATE(1814)] = 81362, - [SMALL_STATE(1815)] = 81370, - [SMALL_STATE(1816)] = 81378, - [SMALL_STATE(1817)] = 81388, - [SMALL_STATE(1818)] = 81396, - [SMALL_STATE(1819)] = 81406, - [SMALL_STATE(1820)] = 81416, - [SMALL_STATE(1821)] = 81426, - [SMALL_STATE(1822)] = 81436, - [SMALL_STATE(1823)] = 81444, - [SMALL_STATE(1824)] = 81454, - [SMALL_STATE(1825)] = 81464, - [SMALL_STATE(1826)] = 81474, - [SMALL_STATE(1827)] = 81482, - [SMALL_STATE(1828)] = 81492, - [SMALL_STATE(1829)] = 81502, - [SMALL_STATE(1830)] = 81512, - [SMALL_STATE(1831)] = 81520, - [SMALL_STATE(1832)] = 81530, - [SMALL_STATE(1833)] = 81540, - [SMALL_STATE(1834)] = 81550, - [SMALL_STATE(1835)] = 81558, - [SMALL_STATE(1836)] = 81568, - [SMALL_STATE(1837)] = 81576, - [SMALL_STATE(1838)] = 81586, - [SMALL_STATE(1839)] = 81594, - [SMALL_STATE(1840)] = 81602, - [SMALL_STATE(1841)] = 81612, - [SMALL_STATE(1842)] = 81620, - [SMALL_STATE(1843)] = 81628, - [SMALL_STATE(1844)] = 81638, - [SMALL_STATE(1845)] = 81648, - [SMALL_STATE(1846)] = 81656, - [SMALL_STATE(1847)] = 81664, - [SMALL_STATE(1848)] = 81674, - [SMALL_STATE(1849)] = 81682, - [SMALL_STATE(1850)] = 81692, - [SMALL_STATE(1851)] = 81700, - [SMALL_STATE(1852)] = 81710, - [SMALL_STATE(1853)] = 81720, - [SMALL_STATE(1854)] = 81728, - [SMALL_STATE(1855)] = 81736, - [SMALL_STATE(1856)] = 81744, - [SMALL_STATE(1857)] = 81752, - [SMALL_STATE(1858)] = 81762, - [SMALL_STATE(1859)] = 81770, - [SMALL_STATE(1860)] = 81780, - [SMALL_STATE(1861)] = 81788, - [SMALL_STATE(1862)] = 81798, - [SMALL_STATE(1863)] = 81808, - [SMALL_STATE(1864)] = 81816, - [SMALL_STATE(1865)] = 81826, - [SMALL_STATE(1866)] = 81834, - [SMALL_STATE(1867)] = 81842, - [SMALL_STATE(1868)] = 81852, - [SMALL_STATE(1869)] = 81862, - [SMALL_STATE(1870)] = 81872, - [SMALL_STATE(1871)] = 81880, - [SMALL_STATE(1872)] = 81888, - [SMALL_STATE(1873)] = 81898, - [SMALL_STATE(1874)] = 81908, - [SMALL_STATE(1875)] = 81918, - [SMALL_STATE(1876)] = 81926, - [SMALL_STATE(1877)] = 81934, - [SMALL_STATE(1878)] = 81942, - [SMALL_STATE(1879)] = 81950, - [SMALL_STATE(1880)] = 81960, - [SMALL_STATE(1881)] = 81970, - [SMALL_STATE(1882)] = 81978, - [SMALL_STATE(1883)] = 81988, - [SMALL_STATE(1884)] = 81998, - [SMALL_STATE(1885)] = 82008, - [SMALL_STATE(1886)] = 82016, - [SMALL_STATE(1887)] = 82026, - [SMALL_STATE(1888)] = 82036, - [SMALL_STATE(1889)] = 82046, - [SMALL_STATE(1890)] = 82054, - [SMALL_STATE(1891)] = 82062, - [SMALL_STATE(1892)] = 82070, - [SMALL_STATE(1893)] = 82080, - [SMALL_STATE(1894)] = 82090, - [SMALL_STATE(1895)] = 82100, - [SMALL_STATE(1896)] = 82110, - [SMALL_STATE(1897)] = 82120, - [SMALL_STATE(1898)] = 82130, - [SMALL_STATE(1899)] = 82140, - [SMALL_STATE(1900)] = 82150, - [SMALL_STATE(1901)] = 82160, - [SMALL_STATE(1902)] = 82168, - [SMALL_STATE(1903)] = 82176, - [SMALL_STATE(1904)] = 82186, - [SMALL_STATE(1905)] = 82194, - [SMALL_STATE(1906)] = 82202, - [SMALL_STATE(1907)] = 82212, - [SMALL_STATE(1908)] = 82222, - [SMALL_STATE(1909)] = 82232, - [SMALL_STATE(1910)] = 82240, - [SMALL_STATE(1911)] = 82248, - [SMALL_STATE(1912)] = 82256, - [SMALL_STATE(1913)] = 82266, - [SMALL_STATE(1914)] = 82276, - [SMALL_STATE(1915)] = 82286, - [SMALL_STATE(1916)] = 82296, - [SMALL_STATE(1917)] = 82306, - [SMALL_STATE(1918)] = 82316, - [SMALL_STATE(1919)] = 82324, - [SMALL_STATE(1920)] = 82332, - [SMALL_STATE(1921)] = 82340, - [SMALL_STATE(1922)] = 82350, - [SMALL_STATE(1923)] = 82358, - [SMALL_STATE(1924)] = 82368, - [SMALL_STATE(1925)] = 82378, - [SMALL_STATE(1926)] = 82388, - [SMALL_STATE(1927)] = 82396, - [SMALL_STATE(1928)] = 82404, - [SMALL_STATE(1929)] = 82414, - [SMALL_STATE(1930)] = 82422, - [SMALL_STATE(1931)] = 82430, - [SMALL_STATE(1932)] = 82438, - [SMALL_STATE(1933)] = 82446, - [SMALL_STATE(1934)] = 82456, - [SMALL_STATE(1935)] = 82466, - [SMALL_STATE(1936)] = 82476, - [SMALL_STATE(1937)] = 82484, - [SMALL_STATE(1938)] = 82492, - [SMALL_STATE(1939)] = 82502, - [SMALL_STATE(1940)] = 82510, - [SMALL_STATE(1941)] = 82520, - [SMALL_STATE(1942)] = 82530, - [SMALL_STATE(1943)] = 82540, - [SMALL_STATE(1944)] = 82548, - [SMALL_STATE(1945)] = 82558, - [SMALL_STATE(1946)] = 82568, - [SMALL_STATE(1947)] = 82576, - [SMALL_STATE(1948)] = 82584, - [SMALL_STATE(1949)] = 82594, - [SMALL_STATE(1950)] = 82602, - [SMALL_STATE(1951)] = 82610, - [SMALL_STATE(1952)] = 82618, - [SMALL_STATE(1953)] = 82626, - [SMALL_STATE(1954)] = 82636, - [SMALL_STATE(1955)] = 82646, - [SMALL_STATE(1956)] = 82656, - [SMALL_STATE(1957)] = 82666, - [SMALL_STATE(1958)] = 82676, - [SMALL_STATE(1959)] = 82684, - [SMALL_STATE(1960)] = 82694, - [SMALL_STATE(1961)] = 82702, - [SMALL_STATE(1962)] = 82710, - [SMALL_STATE(1963)] = 82720, - [SMALL_STATE(1964)] = 82730, - [SMALL_STATE(1965)] = 82738, - [SMALL_STATE(1966)] = 82746, - [SMALL_STATE(1967)] = 82756, - [SMALL_STATE(1968)] = 82764, - [SMALL_STATE(1969)] = 82772, - [SMALL_STATE(1970)] = 82780, - [SMALL_STATE(1971)] = 82790, - [SMALL_STATE(1972)] = 82800, - [SMALL_STATE(1973)] = 82810, - [SMALL_STATE(1974)] = 82818, - [SMALL_STATE(1975)] = 82828, - [SMALL_STATE(1976)] = 82836, - [SMALL_STATE(1977)] = 82846, - [SMALL_STATE(1978)] = 82856, - [SMALL_STATE(1979)] = 82864, - [SMALL_STATE(1980)] = 82872, - [SMALL_STATE(1981)] = 82880, - [SMALL_STATE(1982)] = 82888, - [SMALL_STATE(1983)] = 82898, - [SMALL_STATE(1984)] = 82908, - [SMALL_STATE(1985)] = 82918, - [SMALL_STATE(1986)] = 82926, - [SMALL_STATE(1987)] = 82936, - [SMALL_STATE(1988)] = 82946, - [SMALL_STATE(1989)] = 82956, - [SMALL_STATE(1990)] = 82966, - [SMALL_STATE(1991)] = 82974, - [SMALL_STATE(1992)] = 82984, - [SMALL_STATE(1993)] = 82994, - [SMALL_STATE(1994)] = 83004, - [SMALL_STATE(1995)] = 83014, - [SMALL_STATE(1996)] = 83024, - [SMALL_STATE(1997)] = 83034, - [SMALL_STATE(1998)] = 83044, - [SMALL_STATE(1999)] = 83051, - [SMALL_STATE(2000)] = 83058, - [SMALL_STATE(2001)] = 83065, - [SMALL_STATE(2002)] = 83072, - [SMALL_STATE(2003)] = 83079, - [SMALL_STATE(2004)] = 83086, - [SMALL_STATE(2005)] = 83093, - [SMALL_STATE(2006)] = 83100, - [SMALL_STATE(2007)] = 83107, - [SMALL_STATE(2008)] = 83114, - [SMALL_STATE(2009)] = 83121, - [SMALL_STATE(2010)] = 83128, - [SMALL_STATE(2011)] = 83135, - [SMALL_STATE(2012)] = 83142, - [SMALL_STATE(2013)] = 83149, - [SMALL_STATE(2014)] = 83156, - [SMALL_STATE(2015)] = 83163, - [SMALL_STATE(2016)] = 83170, - [SMALL_STATE(2017)] = 83177, - [SMALL_STATE(2018)] = 83184, - [SMALL_STATE(2019)] = 83191, - [SMALL_STATE(2020)] = 83198, - [SMALL_STATE(2021)] = 83205, - [SMALL_STATE(2022)] = 83212, - [SMALL_STATE(2023)] = 83219, - [SMALL_STATE(2024)] = 83226, - [SMALL_STATE(2025)] = 83233, - [SMALL_STATE(2026)] = 83240, - [SMALL_STATE(2027)] = 83247, - [SMALL_STATE(2028)] = 83254, - [SMALL_STATE(2029)] = 83261, - [SMALL_STATE(2030)] = 83268, - [SMALL_STATE(2031)] = 83275, - [SMALL_STATE(2032)] = 83282, - [SMALL_STATE(2033)] = 83289, - [SMALL_STATE(2034)] = 83296, - [SMALL_STATE(2035)] = 83303, - [SMALL_STATE(2036)] = 83310, - [SMALL_STATE(2037)] = 83317, - [SMALL_STATE(2038)] = 83324, - [SMALL_STATE(2039)] = 83331, - [SMALL_STATE(2040)] = 83338, - [SMALL_STATE(2041)] = 83345, - [SMALL_STATE(2042)] = 83352, - [SMALL_STATE(2043)] = 83359, - [SMALL_STATE(2044)] = 83366, - [SMALL_STATE(2045)] = 83373, - [SMALL_STATE(2046)] = 83380, - [SMALL_STATE(2047)] = 83387, - [SMALL_STATE(2048)] = 83394, - [SMALL_STATE(2049)] = 83401, - [SMALL_STATE(2050)] = 83408, - [SMALL_STATE(2051)] = 83415, - [SMALL_STATE(2052)] = 83422, - [SMALL_STATE(2053)] = 83429, - [SMALL_STATE(2054)] = 83436, - [SMALL_STATE(2055)] = 83443, - [SMALL_STATE(2056)] = 83450, - [SMALL_STATE(2057)] = 83457, - [SMALL_STATE(2058)] = 83464, - [SMALL_STATE(2059)] = 83471, - [SMALL_STATE(2060)] = 83478, - [SMALL_STATE(2061)] = 83485, - [SMALL_STATE(2062)] = 83492, - [SMALL_STATE(2063)] = 83499, - [SMALL_STATE(2064)] = 83506, - [SMALL_STATE(2065)] = 83513, - [SMALL_STATE(2066)] = 83520, - [SMALL_STATE(2067)] = 83527, - [SMALL_STATE(2068)] = 83534, - [SMALL_STATE(2069)] = 83541, - [SMALL_STATE(2070)] = 83548, - [SMALL_STATE(2071)] = 83555, - [SMALL_STATE(2072)] = 83562, - [SMALL_STATE(2073)] = 83569, - [SMALL_STATE(2074)] = 83576, - [SMALL_STATE(2075)] = 83583, - [SMALL_STATE(2076)] = 83590, - [SMALL_STATE(2077)] = 83597, - [SMALL_STATE(2078)] = 83604, - [SMALL_STATE(2079)] = 83611, - [SMALL_STATE(2080)] = 83618, - [SMALL_STATE(2081)] = 83625, - [SMALL_STATE(2082)] = 83632, - [SMALL_STATE(2083)] = 83639, - [SMALL_STATE(2084)] = 83646, - [SMALL_STATE(2085)] = 83653, - [SMALL_STATE(2086)] = 83660, - [SMALL_STATE(2087)] = 83667, - [SMALL_STATE(2088)] = 83674, - [SMALL_STATE(2089)] = 83681, - [SMALL_STATE(2090)] = 83688, - [SMALL_STATE(2091)] = 83695, - [SMALL_STATE(2092)] = 83702, - [SMALL_STATE(2093)] = 83709, - [SMALL_STATE(2094)] = 83716, - [SMALL_STATE(2095)] = 83723, - [SMALL_STATE(2096)] = 83730, - [SMALL_STATE(2097)] = 83737, - [SMALL_STATE(2098)] = 83744, - [SMALL_STATE(2099)] = 83751, - [SMALL_STATE(2100)] = 83758, - [SMALL_STATE(2101)] = 83765, - [SMALL_STATE(2102)] = 83772, - [SMALL_STATE(2103)] = 83779, - [SMALL_STATE(2104)] = 83786, - [SMALL_STATE(2105)] = 83793, - [SMALL_STATE(2106)] = 83800, - [SMALL_STATE(2107)] = 83807, - [SMALL_STATE(2108)] = 83814, - [SMALL_STATE(2109)] = 83821, - [SMALL_STATE(2110)] = 83828, - [SMALL_STATE(2111)] = 83835, - [SMALL_STATE(2112)] = 83842, - [SMALL_STATE(2113)] = 83849, - [SMALL_STATE(2114)] = 83856, - [SMALL_STATE(2115)] = 83863, - [SMALL_STATE(2116)] = 83870, - [SMALL_STATE(2117)] = 83877, - [SMALL_STATE(2118)] = 83884, - [SMALL_STATE(2119)] = 83891, - [SMALL_STATE(2120)] = 83898, - [SMALL_STATE(2121)] = 83905, - [SMALL_STATE(2122)] = 83912, - [SMALL_STATE(2123)] = 83919, - [SMALL_STATE(2124)] = 83926, - [SMALL_STATE(2125)] = 83933, - [SMALL_STATE(2126)] = 83940, - [SMALL_STATE(2127)] = 83947, - [SMALL_STATE(2128)] = 83954, - [SMALL_STATE(2129)] = 83961, - [SMALL_STATE(2130)] = 83968, - [SMALL_STATE(2131)] = 83975, - [SMALL_STATE(2132)] = 83982, - [SMALL_STATE(2133)] = 83989, - [SMALL_STATE(2134)] = 83996, - [SMALL_STATE(2135)] = 84003, - [SMALL_STATE(2136)] = 84010, - [SMALL_STATE(2137)] = 84017, - [SMALL_STATE(2138)] = 84024, - [SMALL_STATE(2139)] = 84031, - [SMALL_STATE(2140)] = 84038, - [SMALL_STATE(2141)] = 84045, - [SMALL_STATE(2142)] = 84052, - [SMALL_STATE(2143)] = 84059, - [SMALL_STATE(2144)] = 84066, - [SMALL_STATE(2145)] = 84073, - [SMALL_STATE(2146)] = 84080, - [SMALL_STATE(2147)] = 84087, - [SMALL_STATE(2148)] = 84094, - [SMALL_STATE(2149)] = 84101, - [SMALL_STATE(2150)] = 84108, - [SMALL_STATE(2151)] = 84115, - [SMALL_STATE(2152)] = 84122, - [SMALL_STATE(2153)] = 84129, - [SMALL_STATE(2154)] = 84136, - [SMALL_STATE(2155)] = 84143, - [SMALL_STATE(2156)] = 84150, - [SMALL_STATE(2157)] = 84157, - [SMALL_STATE(2158)] = 84164, - [SMALL_STATE(2159)] = 84171, - [SMALL_STATE(2160)] = 84178, - [SMALL_STATE(2161)] = 84185, - [SMALL_STATE(2162)] = 84192, - [SMALL_STATE(2163)] = 84199, - [SMALL_STATE(2164)] = 84206, - [SMALL_STATE(2165)] = 84213, - [SMALL_STATE(2166)] = 84220, - [SMALL_STATE(2167)] = 84227, - [SMALL_STATE(2168)] = 84234, - [SMALL_STATE(2169)] = 84241, - [SMALL_STATE(2170)] = 84248, - [SMALL_STATE(2171)] = 84255, - [SMALL_STATE(2172)] = 84262, - [SMALL_STATE(2173)] = 84269, - [SMALL_STATE(2174)] = 84276, - [SMALL_STATE(2175)] = 84283, - [SMALL_STATE(2176)] = 84290, - [SMALL_STATE(2177)] = 84297, - [SMALL_STATE(2178)] = 84304, - [SMALL_STATE(2179)] = 84311, - [SMALL_STATE(2180)] = 84318, - [SMALL_STATE(2181)] = 84325, - [SMALL_STATE(2182)] = 84332, - [SMALL_STATE(2183)] = 84339, - [SMALL_STATE(2184)] = 84346, - [SMALL_STATE(2185)] = 84353, - [SMALL_STATE(2186)] = 84360, - [SMALL_STATE(2187)] = 84367, - [SMALL_STATE(2188)] = 84374, - [SMALL_STATE(2189)] = 84381, - [SMALL_STATE(2190)] = 84388, - [SMALL_STATE(2191)] = 84395, - [SMALL_STATE(2192)] = 84402, - [SMALL_STATE(2193)] = 84409, - [SMALL_STATE(2194)] = 84416, - [SMALL_STATE(2195)] = 84423, - [SMALL_STATE(2196)] = 84430, - [SMALL_STATE(2197)] = 84437, - [SMALL_STATE(2198)] = 84444, - [SMALL_STATE(2199)] = 84451, - [SMALL_STATE(2200)] = 84458, - [SMALL_STATE(2201)] = 84465, - [SMALL_STATE(2202)] = 84472, - [SMALL_STATE(2203)] = 84479, - [SMALL_STATE(2204)] = 84486, - [SMALL_STATE(2205)] = 84493, - [SMALL_STATE(2206)] = 84500, - [SMALL_STATE(2207)] = 84507, - [SMALL_STATE(2208)] = 84514, - [SMALL_STATE(2209)] = 84521, - [SMALL_STATE(2210)] = 84528, - [SMALL_STATE(2211)] = 84535, - [SMALL_STATE(2212)] = 84542, - [SMALL_STATE(2213)] = 84549, - [SMALL_STATE(2214)] = 84556, - [SMALL_STATE(2215)] = 84563, - [SMALL_STATE(2216)] = 84570, - [SMALL_STATE(2217)] = 84577, - [SMALL_STATE(2218)] = 84584, - [SMALL_STATE(2219)] = 84591, - [SMALL_STATE(2220)] = 84598, - [SMALL_STATE(2221)] = 84605, - [SMALL_STATE(2222)] = 84612, - [SMALL_STATE(2223)] = 84619, - [SMALL_STATE(2224)] = 84626, - [SMALL_STATE(2225)] = 84633, - [SMALL_STATE(2226)] = 84640, - [SMALL_STATE(2227)] = 84647, - [SMALL_STATE(2228)] = 84654, - [SMALL_STATE(2229)] = 84661, - [SMALL_STATE(2230)] = 84668, - [SMALL_STATE(2231)] = 84675, - [SMALL_STATE(2232)] = 84682, - [SMALL_STATE(2233)] = 84689, - [SMALL_STATE(2234)] = 84696, - [SMALL_STATE(2235)] = 84703, - [SMALL_STATE(2236)] = 84710, - [SMALL_STATE(2237)] = 84717, - [SMALL_STATE(2238)] = 84724, - [SMALL_STATE(2239)] = 84731, - [SMALL_STATE(2240)] = 84738, - [SMALL_STATE(2241)] = 84745, - [SMALL_STATE(2242)] = 84752, - [SMALL_STATE(2243)] = 84759, - [SMALL_STATE(2244)] = 84766, - [SMALL_STATE(2245)] = 84773, - [SMALL_STATE(2246)] = 84780, - [SMALL_STATE(2247)] = 84787, - [SMALL_STATE(2248)] = 84794, - [SMALL_STATE(2249)] = 84801, - [SMALL_STATE(2250)] = 84808, - [SMALL_STATE(2251)] = 84815, - [SMALL_STATE(2252)] = 84822, - [SMALL_STATE(2253)] = 84829, - [SMALL_STATE(2254)] = 84836, - [SMALL_STATE(2255)] = 84843, - [SMALL_STATE(2256)] = 84850, - [SMALL_STATE(2257)] = 84857, - [SMALL_STATE(2258)] = 84864, - [SMALL_STATE(2259)] = 84871, - [SMALL_STATE(2260)] = 84878, - [SMALL_STATE(2261)] = 84885, - [SMALL_STATE(2262)] = 84892, - [SMALL_STATE(2263)] = 84899, - [SMALL_STATE(2264)] = 84906, - [SMALL_STATE(2265)] = 84913, - [SMALL_STATE(2266)] = 84920, - [SMALL_STATE(2267)] = 84927, - [SMALL_STATE(2268)] = 84934, - [SMALL_STATE(2269)] = 84941, - [SMALL_STATE(2270)] = 84948, - [SMALL_STATE(2271)] = 84955, - [SMALL_STATE(2272)] = 84962, - [SMALL_STATE(2273)] = 84969, - [SMALL_STATE(2274)] = 84976, - [SMALL_STATE(2275)] = 84983, - [SMALL_STATE(2276)] = 84990, - [SMALL_STATE(2277)] = 84997, - [SMALL_STATE(2278)] = 85004, - [SMALL_STATE(2279)] = 85011, - [SMALL_STATE(2280)] = 85018, - [SMALL_STATE(2281)] = 85025, - [SMALL_STATE(2282)] = 85032, - [SMALL_STATE(2283)] = 85039, - [SMALL_STATE(2284)] = 85046, - [SMALL_STATE(2285)] = 85053, - [SMALL_STATE(2286)] = 85060, - [SMALL_STATE(2287)] = 85067, - [SMALL_STATE(2288)] = 85074, - [SMALL_STATE(2289)] = 85081, - [SMALL_STATE(2290)] = 85088, - [SMALL_STATE(2291)] = 85095, - [SMALL_STATE(2292)] = 85102, - [SMALL_STATE(2293)] = 85109, - [SMALL_STATE(2294)] = 85116, - [SMALL_STATE(2295)] = 85123, - [SMALL_STATE(2296)] = 85130, - [SMALL_STATE(2297)] = 85137, - [SMALL_STATE(2298)] = 85144, - [SMALL_STATE(2299)] = 85151, - [SMALL_STATE(2300)] = 85158, - [SMALL_STATE(2301)] = 85165, - [SMALL_STATE(2302)] = 85172, - [SMALL_STATE(2303)] = 85179, - [SMALL_STATE(2304)] = 85186, - [SMALL_STATE(2305)] = 85193, - [SMALL_STATE(2306)] = 85200, - [SMALL_STATE(2307)] = 85207, - [SMALL_STATE(2308)] = 85214, - [SMALL_STATE(2309)] = 85221, - [SMALL_STATE(2310)] = 85228, - [SMALL_STATE(2311)] = 85235, - [SMALL_STATE(2312)] = 85242, - [SMALL_STATE(2313)] = 85249, - [SMALL_STATE(2314)] = 85256, - [SMALL_STATE(2315)] = 85263, - [SMALL_STATE(2316)] = 85270, - [SMALL_STATE(2317)] = 85277, - [SMALL_STATE(2318)] = 85284, - [SMALL_STATE(2319)] = 85291, - [SMALL_STATE(2320)] = 85298, - [SMALL_STATE(2321)] = 85305, - [SMALL_STATE(2322)] = 85312, - [SMALL_STATE(2323)] = 85319, - [SMALL_STATE(2324)] = 85326, - [SMALL_STATE(2325)] = 85333, - [SMALL_STATE(2326)] = 85340, - [SMALL_STATE(2327)] = 85347, - [SMALL_STATE(2328)] = 85354, - [SMALL_STATE(2329)] = 85361, - [SMALL_STATE(2330)] = 85368, - [SMALL_STATE(2331)] = 85375, - [SMALL_STATE(2332)] = 85382, - [SMALL_STATE(2333)] = 85389, - [SMALL_STATE(2334)] = 85396, - [SMALL_STATE(2335)] = 85403, - [SMALL_STATE(2336)] = 85410, - [SMALL_STATE(2337)] = 85417, - [SMALL_STATE(2338)] = 85424, - [SMALL_STATE(2339)] = 85431, - [SMALL_STATE(2340)] = 85438, - [SMALL_STATE(2341)] = 85445, - [SMALL_STATE(2342)] = 85452, - [SMALL_STATE(2343)] = 85459, - [SMALL_STATE(2344)] = 85466, - [SMALL_STATE(2345)] = 85473, - [SMALL_STATE(2346)] = 85480, - [SMALL_STATE(2347)] = 85487, - [SMALL_STATE(2348)] = 85494, - [SMALL_STATE(2349)] = 85501, - [SMALL_STATE(2350)] = 85508, - [SMALL_STATE(2351)] = 85515, - [SMALL_STATE(2352)] = 85522, - [SMALL_STATE(2353)] = 85529, - [SMALL_STATE(2354)] = 85536, - [SMALL_STATE(2355)] = 85543, - [SMALL_STATE(2356)] = 85550, - [SMALL_STATE(2357)] = 85557, - [SMALL_STATE(2358)] = 85564, - [SMALL_STATE(2359)] = 85571, - [SMALL_STATE(2360)] = 85578, - [SMALL_STATE(2361)] = 85585, - [SMALL_STATE(2362)] = 85592, - [SMALL_STATE(2363)] = 85599, - [SMALL_STATE(2364)] = 85606, - [SMALL_STATE(2365)] = 85613, - [SMALL_STATE(2366)] = 85620, - [SMALL_STATE(2367)] = 85627, - [SMALL_STATE(2368)] = 85634, - [SMALL_STATE(2369)] = 85641, - [SMALL_STATE(2370)] = 85648, - [SMALL_STATE(2371)] = 85655, - [SMALL_STATE(2372)] = 85662, - [SMALL_STATE(2373)] = 85669, - [SMALL_STATE(2374)] = 85676, - [SMALL_STATE(2375)] = 85683, - [SMALL_STATE(2376)] = 85690, - [SMALL_STATE(2377)] = 85697, - [SMALL_STATE(2378)] = 85704, - [SMALL_STATE(2379)] = 85711, - [SMALL_STATE(2380)] = 85718, - [SMALL_STATE(2381)] = 85725, - [SMALL_STATE(2382)] = 85732, - [SMALL_STATE(2383)] = 85739, - [SMALL_STATE(2384)] = 85746, - [SMALL_STATE(2385)] = 85753, - [SMALL_STATE(2386)] = 85760, - [SMALL_STATE(2387)] = 85767, - [SMALL_STATE(2388)] = 85774, - [SMALL_STATE(2389)] = 85781, - [SMALL_STATE(2390)] = 85788, - [SMALL_STATE(2391)] = 85795, - [SMALL_STATE(2392)] = 85802, - [SMALL_STATE(2393)] = 85809, - [SMALL_STATE(2394)] = 85816, - [SMALL_STATE(2395)] = 85823, - [SMALL_STATE(2396)] = 85830, - [SMALL_STATE(2397)] = 85837, - [SMALL_STATE(2398)] = 85844, - [SMALL_STATE(2399)] = 85851, - [SMALL_STATE(2400)] = 85858, - [SMALL_STATE(2401)] = 85865, - [SMALL_STATE(2402)] = 85872, - [SMALL_STATE(2403)] = 85879, - [SMALL_STATE(2404)] = 85886, - [SMALL_STATE(2405)] = 85893, - [SMALL_STATE(2406)] = 85900, - [SMALL_STATE(2407)] = 85907, - [SMALL_STATE(2408)] = 85914, - [SMALL_STATE(2409)] = 85921, - [SMALL_STATE(2410)] = 85928, - [SMALL_STATE(2411)] = 85935, - [SMALL_STATE(2412)] = 85942, - [SMALL_STATE(2413)] = 85949, - [SMALL_STATE(2414)] = 85956, - [SMALL_STATE(2415)] = 85963, - [SMALL_STATE(2416)] = 85970, - [SMALL_STATE(2417)] = 85977, - [SMALL_STATE(2418)] = 85984, - [SMALL_STATE(2419)] = 85991, - [SMALL_STATE(2420)] = 85998, - [SMALL_STATE(2421)] = 86005, - [SMALL_STATE(2422)] = 86012, - [SMALL_STATE(2423)] = 86019, - [SMALL_STATE(2424)] = 86026, - [SMALL_STATE(2425)] = 86033, - [SMALL_STATE(2426)] = 86040, - [SMALL_STATE(2427)] = 86047, + [SMALL_STATE(10)] = 407, + [SMALL_STATE(11)] = 476, + [SMALL_STATE(12)] = 571, + [SMALL_STATE(13)] = 666, + [SMALL_STATE(14)] = 761, + [SMALL_STATE(15)] = 856, + [SMALL_STATE(16)] = 951, + [SMALL_STATE(17)] = 1026, + [SMALL_STATE(18)] = 1095, + [SMALL_STATE(19)] = 1190, + [SMALL_STATE(20)] = 1258, + [SMALL_STATE(21)] = 1326, + [SMALL_STATE(22)] = 1398, + [SMALL_STATE(23)] = 1466, + [SMALL_STATE(24)] = 1534, + [SMALL_STATE(25)] = 1606, + [SMALL_STATE(26)] = 1677, + [SMALL_STATE(27)] = 1748, + [SMALL_STATE(28)] = 1821, + [SMALL_STATE(29)] = 1887, + [SMALL_STATE(30)] = 1953, + [SMALL_STATE(31)] = 2019, + [SMALL_STATE(32)] = 2085, + [SMALL_STATE(33)] = 2151, + [SMALL_STATE(34)] = 2217, + [SMALL_STATE(35)] = 2289, + [SMALL_STATE(36)] = 2355, + [SMALL_STATE(37)] = 2421, + [SMALL_STATE(38)] = 2487, + [SMALL_STATE(39)] = 2559, + [SMALL_STATE(40)] = 2625, + [SMALL_STATE(41)] = 2702, + [SMALL_STATE(42)] = 2771, + [SMALL_STATE(43)] = 2848, + [SMALL_STATE(44)] = 2917, + [SMALL_STATE(45)] = 2982, + [SMALL_STATE(46)] = 3081, + [SMALL_STATE(47)] = 3173, + [SMALL_STATE(48)] = 3237, + [SMALL_STATE(49)] = 3329, + [SMALL_STATE(50)] = 3395, + [SMALL_STATE(51)] = 3461, + [SMALL_STATE(52)] = 3527, + [SMALL_STATE(53)] = 3593, + [SMALL_STATE(54)] = 3657, + [SMALL_STATE(55)] = 3749, + [SMALL_STATE(56)] = 3865, + [SMALL_STATE(57)] = 3931, + [SMALL_STATE(58)] = 3997, + [SMALL_STATE(59)] = 4063, + [SMALL_STATE(60)] = 4129, + [SMALL_STATE(61)] = 4193, + [SMALL_STATE(62)] = 4269, + [SMALL_STATE(63)] = 4361, + [SMALL_STATE(64)] = 4425, + [SMALL_STATE(65)] = 4517, + [SMALL_STATE(66)] = 4581, + [SMALL_STATE(67)] = 4673, + [SMALL_STATE(68)] = 4762, + [SMALL_STATE(69)] = 4825, + [SMALL_STATE(70)] = 4934, + [SMALL_STATE(71)] = 4997, + [SMALL_STATE(72)] = 5060, + [SMALL_STATE(73)] = 5123, + [SMALL_STATE(74)] = 5186, + [SMALL_STATE(75)] = 5249, + [SMALL_STATE(76)] = 5312, + [SMALL_STATE(77)] = 5375, + [SMALL_STATE(78)] = 5438, + [SMALL_STATE(79)] = 5527, + [SMALL_STATE(80)] = 5624, + [SMALL_STATE(81)] = 5687, + [SMALL_STATE(82)] = 5776, + [SMALL_STATE(83)] = 5839, + [SMALL_STATE(84)] = 5902, + [SMALL_STATE(85)] = 5965, + [SMALL_STATE(86)] = 6074, + [SMALL_STATE(87)] = 6137, + [SMALL_STATE(88)] = 6212, + [SMALL_STATE(89)] = 6275, + [SMALL_STATE(90)] = 6342, + [SMALL_STATE(91)] = 6409, + [SMALL_STATE(92)] = 6472, + [SMALL_STATE(93)] = 6535, + [SMALL_STATE(94)] = 6602, + [SMALL_STATE(95)] = 6669, + [SMALL_STATE(96)] = 6732, + [SMALL_STATE(97)] = 6795, + [SMALL_STATE(98)] = 6858, + [SMALL_STATE(99)] = 6921, + [SMALL_STATE(100)] = 6984, + [SMALL_STATE(101)] = 7047, + [SMALL_STATE(102)] = 7136, + [SMALL_STATE(103)] = 7199, + [SMALL_STATE(104)] = 7262, + [SMALL_STATE(105)] = 7325, + [SMALL_STATE(106)] = 7388, + [SMALL_STATE(107)] = 7451, + [SMALL_STATE(108)] = 7514, + [SMALL_STATE(109)] = 7577, + [SMALL_STATE(110)] = 7640, + [SMALL_STATE(111)] = 7715, + [SMALL_STATE(112)] = 7778, + [SMALL_STATE(113)] = 7841, + [SMALL_STATE(114)] = 7904, + [SMALL_STATE(115)] = 7967, + [SMALL_STATE(116)] = 8029, + [SMALL_STATE(117)] = 8117, + [SMALL_STATE(118)] = 8207, + [SMALL_STATE(119)] = 8295, + [SMALL_STATE(120)] = 8357, + [SMALL_STATE(121)] = 8423, + [SMALL_STATE(122)] = 8485, + [SMALL_STATE(123)] = 8551, + [SMALL_STATE(124)] = 8619, + [SMALL_STATE(125)] = 8681, + [SMALL_STATE(126)] = 8749, + [SMALL_STATE(127)] = 8839, + [SMALL_STATE(128)] = 8935, + [SMALL_STATE(129)] = 9001, + [SMALL_STATE(130)] = 9089, + [SMALL_STATE(131)] = 9177, + [SMALL_STATE(132)] = 9243, + [SMALL_STATE(133)] = 9333, + [SMALL_STATE(134)] = 9407, + [SMALL_STATE(135)] = 9481, + [SMALL_STATE(136)] = 9542, + [SMALL_STATE(137)] = 9609, + [SMALL_STATE(138)] = 9670, + [SMALL_STATE(139)] = 9759, + [SMALL_STATE(140)] = 9820, + [SMALL_STATE(141)] = 9881, + [SMALL_STATE(142)] = 9942, + [SMALL_STATE(143)] = 10003, + [SMALL_STATE(144)] = 10092, + [SMALL_STATE(145)] = 10179, + [SMALL_STATE(146)] = 10240, + [SMALL_STATE(147)] = 10327, + [SMALL_STATE(148)] = 10388, + [SMALL_STATE(149)] = 10449, + [SMALL_STATE(150)] = 10538, + [SMALL_STATE(151)] = 10605, + [SMALL_STATE(152)] = 10666, + [SMALL_STATE(153)] = 10727, + [SMALL_STATE(154)] = 10788, + [SMALL_STATE(155)] = 10879, + [SMALL_STATE(156)] = 10966, + [SMALL_STATE(157)] = 11027, + [SMALL_STATE(158)] = 11088, + [SMALL_STATE(159)] = 11149, + [SMALL_STATE(160)] = 11216, + [SMALL_STATE(161)] = 11307, + [SMALL_STATE(162)] = 11372, + [SMALL_STATE(163)] = 11437, + [SMALL_STATE(164)] = 11524, + [SMALL_STATE(165)] = 11591, + [SMALL_STATE(166)] = 11697, + [SMALL_STATE(167)] = 11761, + [SMALL_STATE(168)] = 11821, + [SMALL_STATE(169)] = 11881, + [SMALL_STATE(170)] = 11947, + [SMALL_STATE(171)] = 12053, + [SMALL_STATE(172)] = 12159, + [SMALL_STATE(173)] = 12223, + [SMALL_STATE(174)] = 12329, + [SMALL_STATE(175)] = 12395, + [SMALL_STATE(176)] = 12459, + [SMALL_STATE(177)] = 12565, + [SMALL_STATE(178)] = 12651, + [SMALL_STATE(179)] = 12757, + [SMALL_STATE(180)] = 12863, + [SMALL_STATE(181)] = 12969, + [SMALL_STATE(182)] = 13075, + [SMALL_STATE(183)] = 13181, + [SMALL_STATE(184)] = 13287, + [SMALL_STATE(185)] = 13393, + [SMALL_STATE(186)] = 13453, + [SMALL_STATE(187)] = 13513, + [SMALL_STATE(188)] = 13577, + [SMALL_STATE(189)] = 13641, + [SMALL_STATE(190)] = 13705, + [SMALL_STATE(191)] = 13765, + [SMALL_STATE(192)] = 13829, + [SMALL_STATE(193)] = 13889, + [SMALL_STATE(194)] = 13949, + [SMALL_STATE(195)] = 14009, + [SMALL_STATE(196)] = 14115, + [SMALL_STATE(197)] = 14221, + [SMALL_STATE(198)] = 14307, + [SMALL_STATE(199)] = 14367, + [SMALL_STATE(200)] = 14427, + [SMALL_STATE(201)] = 14491, + [SMALL_STATE(202)] = 14597, + [SMALL_STATE(203)] = 14703, + [SMALL_STATE(204)] = 14809, + [SMALL_STATE(205)] = 14915, + [SMALL_STATE(206)] = 15021, + [SMALL_STATE(207)] = 15080, + [SMALL_STATE(208)] = 15141, + [SMALL_STATE(209)] = 15244, + [SMALL_STATE(210)] = 15309, + [SMALL_STATE(211)] = 15368, + [SMALL_STATE(212)] = 15427, + [SMALL_STATE(213)] = 15530, + [SMALL_STATE(214)] = 15593, + [SMALL_STATE(215)] = 15658, + [SMALL_STATE(216)] = 15721, + [SMALL_STATE(217)] = 15784, + [SMALL_STATE(218)] = 15849, + [SMALL_STATE(219)] = 15908, + [SMALL_STATE(220)] = 15967, + [SMALL_STATE(221)] = 16026, + [SMALL_STATE(222)] = 16087, + [SMALL_STATE(223)] = 16146, + [SMALL_STATE(224)] = 16211, + [SMALL_STATE(225)] = 16270, + [SMALL_STATE(226)] = 16331, + [SMALL_STATE(227)] = 16390, + [SMALL_STATE(228)] = 16493, + [SMALL_STATE(229)] = 16554, + [SMALL_STATE(230)] = 16615, + [SMALL_STATE(231)] = 16676, + [SMALL_STATE(232)] = 16737, + [SMALL_STATE(233)] = 16796, + [SMALL_STATE(234)] = 16859, + [SMALL_STATE(235)] = 16920, + [SMALL_STATE(236)] = 17023, + [SMALL_STATE(237)] = 17081, + [SMALL_STATE(238)] = 17139, + [SMALL_STATE(239)] = 17197, + [SMALL_STATE(240)] = 17255, + [SMALL_STATE(241)] = 17313, + [SMALL_STATE(242)] = 17371, + [SMALL_STATE(243)] = 17429, + [SMALL_STATE(244)] = 17487, + [SMALL_STATE(245)] = 17545, + [SMALL_STATE(246)] = 17603, + [SMALL_STATE(247)] = 17663, + [SMALL_STATE(248)] = 17723, + [SMALL_STATE(249)] = 17783, + [SMALL_STATE(250)] = 17843, + [SMALL_STATE(251)] = 17901, + [SMALL_STATE(252)] = 17959, + [SMALL_STATE(253)] = 18017, + [SMALL_STATE(254)] = 18075, + [SMALL_STATE(255)] = 18133, + [SMALL_STATE(256)] = 18259, + [SMALL_STATE(257)] = 18317, + [SMALL_STATE(258)] = 18379, + [SMALL_STATE(259)] = 18441, + [SMALL_STATE(260)] = 18499, + [SMALL_STATE(261)] = 18625, + [SMALL_STATE(262)] = 18683, + [SMALL_STATE(263)] = 18741, + [SMALL_STATE(264)] = 18799, + [SMALL_STATE(265)] = 18857, + [SMALL_STATE(266)] = 18915, + [SMALL_STATE(267)] = 18973, + [SMALL_STATE(268)] = 19031, + [SMALL_STATE(269)] = 19089, + [SMALL_STATE(270)] = 19147, + [SMALL_STATE(271)] = 19205, + [SMALL_STATE(272)] = 19263, + [SMALL_STATE(273)] = 19327, + [SMALL_STATE(274)] = 19385, + [SMALL_STATE(275)] = 19443, + [SMALL_STATE(276)] = 19507, + [SMALL_STATE(277)] = 19565, + [SMALL_STATE(278)] = 19623, + [SMALL_STATE(279)] = 19711, + [SMALL_STATE(280)] = 19769, + [SMALL_STATE(281)] = 19827, + [SMALL_STATE(282)] = 19885, + [SMALL_STATE(283)] = 19969, + [SMALL_STATE(284)] = 20027, + [SMALL_STATE(285)] = 20085, + [SMALL_STATE(286)] = 20143, + [SMALL_STATE(287)] = 20201, + [SMALL_STATE(288)] = 20259, + [SMALL_STATE(289)] = 20317, + [SMALL_STATE(290)] = 20375, + [SMALL_STATE(291)] = 20433, + [SMALL_STATE(292)] = 20491, + [SMALL_STATE(293)] = 20549, + [SMALL_STATE(294)] = 20607, + [SMALL_STATE(295)] = 20665, + [SMALL_STATE(296)] = 20723, + [SMALL_STATE(297)] = 20781, + [SMALL_STATE(298)] = 20839, + [SMALL_STATE(299)] = 20900, + [SMALL_STATE(300)] = 20957, + [SMALL_STATE(301)] = 21014, + [SMALL_STATE(302)] = 21071, + [SMALL_STATE(303)] = 21128, + [SMALL_STATE(304)] = 21185, + [SMALL_STATE(305)] = 21242, + [SMALL_STATE(306)] = 21299, + [SMALL_STATE(307)] = 21356, + [SMALL_STATE(308)] = 21413, + [SMALL_STATE(309)] = 21470, + [SMALL_STATE(310)] = 21527, + [SMALL_STATE(311)] = 21584, + [SMALL_STATE(312)] = 21641, + [SMALL_STATE(313)] = 21698, + [SMALL_STATE(314)] = 21755, + [SMALL_STATE(315)] = 21812, + [SMALL_STATE(316)] = 21869, + [SMALL_STATE(317)] = 21928, + [SMALL_STATE(318)] = 21985, + [SMALL_STATE(319)] = 22042, + [SMALL_STATE(320)] = 22101, + [SMALL_STATE(321)] = 22160, + [SMALL_STATE(322)] = 22219, + [SMALL_STATE(323)] = 22278, + [SMALL_STATE(324)] = 22339, + [SMALL_STATE(325)] = 22400, + [SMALL_STATE(326)] = 22461, + [SMALL_STATE(327)] = 22520, + [SMALL_STATE(328)] = 22579, + [SMALL_STATE(329)] = 22638, + [SMALL_STATE(330)] = 22694, + [SMALL_STATE(331)] = 22750, + [SMALL_STATE(332)] = 22808, + [SMALL_STATE(333)] = 22864, + [SMALL_STATE(334)] = 22922, + [SMALL_STATE(335)] = 22978, + [SMALL_STATE(336)] = 23036, + [SMALL_STATE(337)] = 23092, + [SMALL_STATE(338)] = 23148, + [SMALL_STATE(339)] = 23204, + [SMALL_STATE(340)] = 23260, + [SMALL_STATE(341)] = 23316, + [SMALL_STATE(342)] = 23372, + [SMALL_STATE(343)] = 23428, + [SMALL_STATE(344)] = 23484, + [SMALL_STATE(345)] = 23542, + [SMALL_STATE(346)] = 23598, + [SMALL_STATE(347)] = 23654, + [SMALL_STATE(348)] = 23710, + [SMALL_STATE(349)] = 23766, + [SMALL_STATE(350)] = 23822, + [SMALL_STATE(351)] = 23878, + [SMALL_STATE(352)] = 23934, + [SMALL_STATE(353)] = 23990, + [SMALL_STATE(354)] = 24046, + [SMALL_STATE(355)] = 24102, + [SMALL_STATE(356)] = 24158, + [SMALL_STATE(357)] = 24214, + [SMALL_STATE(358)] = 24282, + [SMALL_STATE(359)] = 24338, + [SMALL_STATE(360)] = 24460, + [SMALL_STATE(361)] = 24516, + [SMALL_STATE(362)] = 24572, + [SMALL_STATE(363)] = 24628, + [SMALL_STATE(364)] = 24684, + [SMALL_STATE(365)] = 24740, + [SMALL_STATE(366)] = 24796, + [SMALL_STATE(367)] = 24852, + [SMALL_STATE(368)] = 24908, + [SMALL_STATE(369)] = 25030, + [SMALL_STATE(370)] = 25120, + [SMALL_STATE(371)] = 25176, + [SMALL_STATE(372)] = 25234, + [SMALL_STATE(373)] = 25290, + [SMALL_STATE(374)] = 25348, + [SMALL_STATE(375)] = 25406, + [SMALL_STATE(376)] = 25462, + [SMALL_STATE(377)] = 25544, + [SMALL_STATE(378)] = 25602, + [SMALL_STATE(379)] = 25658, + [SMALL_STATE(380)] = 25713, + [SMALL_STATE(381)] = 25768, + [SMALL_STATE(382)] = 25823, + [SMALL_STATE(383)] = 25878, + [SMALL_STATE(384)] = 25933, + [SMALL_STATE(385)] = 25988, + [SMALL_STATE(386)] = 26043, + [SMALL_STATE(387)] = 26126, + [SMALL_STATE(388)] = 26181, + [SMALL_STATE(389)] = 26236, + [SMALL_STATE(390)] = 26291, + [SMALL_STATE(391)] = 26346, + [SMALL_STATE(392)] = 26401, + [SMALL_STATE(393)] = 26482, + [SMALL_STATE(394)] = 26537, + [SMALL_STATE(395)] = 26592, + [SMALL_STATE(396)] = 26647, + [SMALL_STATE(397)] = 26702, + [SMALL_STATE(398)] = 26757, + [SMALL_STATE(399)] = 26846, + [SMALL_STATE(400)] = 26967, + [SMALL_STATE(401)] = 27022, + [SMALL_STATE(402)] = 27077, + [SMALL_STATE(403)] = 27132, + [SMALL_STATE(404)] = 27187, + [SMALL_STATE(405)] = 27242, + [SMALL_STATE(406)] = 27309, + [SMALL_STATE(407)] = 27364, + [SMALL_STATE(408)] = 27443, + [SMALL_STATE(409)] = 27498, + [SMALL_STATE(410)] = 27619, + [SMALL_STATE(411)] = 27674, + [SMALL_STATE(412)] = 27729, + [SMALL_STATE(413)] = 27784, + [SMALL_STATE(414)] = 27871, + [SMALL_STATE(415)] = 27926, + [SMALL_STATE(416)] = 27981, + [SMALL_STATE(417)] = 28036, + [SMALL_STATE(418)] = 28091, + [SMALL_STATE(419)] = 28146, + [SMALL_STATE(420)] = 28201, + [SMALL_STATE(421)] = 28256, + [SMALL_STATE(422)] = 28311, + [SMALL_STATE(423)] = 28394, + [SMALL_STATE(424)] = 28449, + [SMALL_STATE(425)] = 28532, + [SMALL_STATE(426)] = 28587, + [SMALL_STATE(427)] = 28642, + [SMALL_STATE(428)] = 28696, + [SMALL_STATE(429)] = 28774, + [SMALL_STATE(430)] = 28828, + [SMALL_STATE(431)] = 28910, + [SMALL_STATE(432)] = 28966, + [SMALL_STATE(433)] = 29022, + [SMALL_STATE(434)] = 29104, + [SMALL_STATE(435)] = 29186, + [SMALL_STATE(436)] = 29244, + [SMALL_STATE(437)] = 29302, + [SMALL_STATE(438)] = 29381, + [SMALL_STATE(439)] = 29438, + [SMALL_STATE(440)] = 29495, + [SMALL_STATE(441)] = 29576, + [SMALL_STATE(442)] = 29635, + [SMALL_STATE(443)] = 29715, + [SMALL_STATE(444)] = 29795, + [SMALL_STATE(445)] = 29875, + [SMALL_STATE(446)] = 29955, + [SMALL_STATE(447)] = 30035, + [SMALL_STATE(448)] = 30115, + [SMALL_STATE(449)] = 30195, + [SMALL_STATE(450)] = 30275, + [SMALL_STATE(451)] = 30355, + [SMALL_STATE(452)] = 30435, + [SMALL_STATE(453)] = 30515, + [SMALL_STATE(454)] = 30573, + [SMALL_STATE(455)] = 30653, + [SMALL_STATE(456)] = 30733, + [SMALL_STATE(457)] = 30785, + [SMALL_STATE(458)] = 30861, + [SMALL_STATE(459)] = 30941, + [SMALL_STATE(460)] = 31021, + [SMALL_STATE(461)] = 31101, + [SMALL_STATE(462)] = 31153, + [SMALL_STATE(463)] = 31205, + [SMALL_STATE(464)] = 31285, + [SMALL_STATE(465)] = 31365, + [SMALL_STATE(466)] = 31445, + [SMALL_STATE(467)] = 31497, + [SMALL_STATE(468)] = 31577, + [SMALL_STATE(469)] = 31657, + [SMALL_STATE(470)] = 31737, + [SMALL_STATE(471)] = 31817, + [SMALL_STATE(472)] = 31897, + [SMALL_STATE(473)] = 31977, + [SMALL_STATE(474)] = 32029, + [SMALL_STATE(475)] = 32109, + [SMALL_STATE(476)] = 32189, + [SMALL_STATE(477)] = 32241, + [SMALL_STATE(478)] = 32321, + [SMALL_STATE(479)] = 32401, + [SMALL_STATE(480)] = 32481, + [SMALL_STATE(481)] = 32561, + [SMALL_STATE(482)] = 32641, + [SMALL_STATE(483)] = 32721, + [SMALL_STATE(484)] = 32801, + [SMALL_STATE(485)] = 32881, + [SMALL_STATE(486)] = 32939, + [SMALL_STATE(487)] = 33019, + [SMALL_STATE(488)] = 33099, + [SMALL_STATE(489)] = 33179, + [SMALL_STATE(490)] = 33259, + [SMALL_STATE(491)] = 33339, + [SMALL_STATE(492)] = 33419, + [SMALL_STATE(493)] = 33499, + [SMALL_STATE(494)] = 33579, + [SMALL_STATE(495)] = 33630, + [SMALL_STATE(496)] = 33707, + [SMALL_STATE(497)] = 33758, + [SMALL_STATE(498)] = 33833, + [SMALL_STATE(499)] = 33884, + [SMALL_STATE(500)] = 33939, + [SMALL_STATE(501)] = 33994, + [SMALL_STATE(502)] = 34051, + [SMALL_STATE(503)] = 34128, + [SMALL_STATE(504)] = 34179, + [SMALL_STATE(505)] = 34254, + [SMALL_STATE(506)] = 34331, + [SMALL_STATE(507)] = 34406, + [SMALL_STATE(508)] = 34457, + [SMALL_STATE(509)] = 34508, + [SMALL_STATE(510)] = 34582, + [SMALL_STATE(511)] = 34656, + [SMALL_STATE(512)] = 34730, + [SMALL_STATE(513)] = 34804, + [SMALL_STATE(514)] = 34878, + [SMALL_STATE(515)] = 34952, + [SMALL_STATE(516)] = 35026, + [SMALL_STATE(517)] = 35100, + [SMALL_STATE(518)] = 35174, + [SMALL_STATE(519)] = 35248, + [SMALL_STATE(520)] = 35300, + [SMALL_STATE(521)] = 35374, + [SMALL_STATE(522)] = 35428, + [SMALL_STATE(523)] = 35482, + [SMALL_STATE(524)] = 35556, + [SMALL_STATE(525)] = 35606, + [SMALL_STATE(526)] = 35658, + [SMALL_STATE(527)] = 35732, + [SMALL_STATE(528)] = 35784, + [SMALL_STATE(529)] = 35858, + [SMALL_STATE(530)] = 35932, + [SMALL_STATE(531)] = 36006, + [SMALL_STATE(532)] = 36080, + [SMALL_STATE(533)] = 36154, + [SMALL_STATE(534)] = 36206, + [SMALL_STATE(535)] = 36255, + [SMALL_STATE(536)] = 36304, + [SMALL_STATE(537)] = 36353, + [SMALL_STATE(538)] = 36402, + [SMALL_STATE(539)] = 36451, + [SMALL_STATE(540)] = 36500, + [SMALL_STATE(541)] = 36551, + [SMALL_STATE(542)] = 36600, + [SMALL_STATE(543)] = 36651, + [SMALL_STATE(544)] = 36700, + [SMALL_STATE(545)] = 36751, + [SMALL_STATE(546)] = 36802, + [SMALL_STATE(547)] = 36851, + [SMALL_STATE(548)] = 36900, + [SMALL_STATE(549)] = 36949, + [SMALL_STATE(550)] = 36998, + [SMALL_STATE(551)] = 37047, + [SMALL_STATE(552)] = 37096, + [SMALL_STATE(553)] = 37145, + [SMALL_STATE(554)] = 37194, + [SMALL_STATE(555)] = 37243, + [SMALL_STATE(556)] = 37292, + [SMALL_STATE(557)] = 37341, + [SMALL_STATE(558)] = 37390, + [SMALL_STATE(559)] = 37438, + [SMALL_STATE(560)] = 37486, + [SMALL_STATE(561)] = 37534, + [SMALL_STATE(562)] = 37582, + [SMALL_STATE(563)] = 37630, + [SMALL_STATE(564)] = 37678, + [SMALL_STATE(565)] = 37726, + [SMALL_STATE(566)] = 37774, + [SMALL_STATE(567)] = 37822, + [SMALL_STATE(568)] = 37870, + [SMALL_STATE(569)] = 37918, + [SMALL_STATE(570)] = 37966, + [SMALL_STATE(571)] = 38014, + [SMALL_STATE(572)] = 38062, + [SMALL_STATE(573)] = 38110, + [SMALL_STATE(574)] = 38158, + [SMALL_STATE(575)] = 38206, + [SMALL_STATE(576)] = 38254, + [SMALL_STATE(577)] = 38302, + [SMALL_STATE(578)] = 38344, + [SMALL_STATE(579)] = 38386, + [SMALL_STATE(580)] = 38428, + [SMALL_STATE(581)] = 38508, + [SMALL_STATE(582)] = 38588, + [SMALL_STATE(583)] = 38664, + [SMALL_STATE(584)] = 38732, + [SMALL_STATE(585)] = 38808, + [SMALL_STATE(586)] = 38884, + [SMALL_STATE(587)] = 38960, + [SMALL_STATE(588)] = 39036, + [SMALL_STATE(589)] = 39112, + [SMALL_STATE(590)] = 39188, + [SMALL_STATE(591)] = 39264, + [SMALL_STATE(592)] = 39340, + [SMALL_STATE(593)] = 39416, + [SMALL_STATE(594)] = 39484, + [SMALL_STATE(595)] = 39560, + [SMALL_STATE(596)] = 39636, + [SMALL_STATE(597)] = 39712, + [SMALL_STATE(598)] = 39788, + [SMALL_STATE(599)] = 39864, + [SMALL_STATE(600)] = 39940, + [SMALL_STATE(601)] = 40016, + [SMALL_STATE(602)] = 40089, + [SMALL_STATE(603)] = 40162, + [SMALL_STATE(604)] = 40235, + [SMALL_STATE(605)] = 40308, + [SMALL_STATE(606)] = 40381, + [SMALL_STATE(607)] = 40454, + [SMALL_STATE(608)] = 40527, + [SMALL_STATE(609)] = 40600, + [SMALL_STATE(610)] = 40673, + [SMALL_STATE(611)] = 40746, + [SMALL_STATE(612)] = 40819, + [SMALL_STATE(613)] = 40892, + [SMALL_STATE(614)] = 40962, + [SMALL_STATE(615)] = 41029, + [SMALL_STATE(616)] = 41096, + [SMALL_STATE(617)] = 41163, + [SMALL_STATE(618)] = 41230, + [SMALL_STATE(619)] = 41297, + [SMALL_STATE(620)] = 41364, + [SMALL_STATE(621)] = 41431, + [SMALL_STATE(622)] = 41495, + [SMALL_STATE(623)] = 41559, + [SMALL_STATE(624)] = 41623, + [SMALL_STATE(625)] = 41687, + [SMALL_STATE(626)] = 41751, + [SMALL_STATE(627)] = 41815, + [SMALL_STATE(628)] = 41879, + [SMALL_STATE(629)] = 41943, + [SMALL_STATE(630)] = 42007, + [SMALL_STATE(631)] = 42071, + [SMALL_STATE(632)] = 42135, + [SMALL_STATE(633)] = 42199, + [SMALL_STATE(634)] = 42263, + [SMALL_STATE(635)] = 42327, + [SMALL_STATE(636)] = 42391, + [SMALL_STATE(637)] = 42455, + [SMALL_STATE(638)] = 42519, + [SMALL_STATE(639)] = 42583, + [SMALL_STATE(640)] = 42647, + [SMALL_STATE(641)] = 42711, + [SMALL_STATE(642)] = 42775, + [SMALL_STATE(643)] = 42839, + [SMALL_STATE(644)] = 42903, + [SMALL_STATE(645)] = 42967, + [SMALL_STATE(646)] = 43031, + [SMALL_STATE(647)] = 43095, + [SMALL_STATE(648)] = 43159, + [SMALL_STATE(649)] = 43223, + [SMALL_STATE(650)] = 43287, + [SMALL_STATE(651)] = 43351, + [SMALL_STATE(652)] = 43415, + [SMALL_STATE(653)] = 43476, + [SMALL_STATE(654)] = 43537, + [SMALL_STATE(655)] = 43598, + [SMALL_STATE(656)] = 43659, + [SMALL_STATE(657)] = 43720, + [SMALL_STATE(658)] = 43781, + [SMALL_STATE(659)] = 43842, + [SMALL_STATE(660)] = 43903, + [SMALL_STATE(661)] = 43964, + [SMALL_STATE(662)] = 44025, + [SMALL_STATE(663)] = 44086, + [SMALL_STATE(664)] = 44147, + [SMALL_STATE(665)] = 44208, + [SMALL_STATE(666)] = 44269, + [SMALL_STATE(667)] = 44330, + [SMALL_STATE(668)] = 44391, + [SMALL_STATE(669)] = 44452, + [SMALL_STATE(670)] = 44513, + [SMALL_STATE(671)] = 44574, + [SMALL_STATE(672)] = 44635, + [SMALL_STATE(673)] = 44696, + [SMALL_STATE(674)] = 44757, + [SMALL_STATE(675)] = 44818, + [SMALL_STATE(676)] = 44879, + [SMALL_STATE(677)] = 44940, + [SMALL_STATE(678)] = 45001, + [SMALL_STATE(679)] = 45062, + [SMALL_STATE(680)] = 45123, + [SMALL_STATE(681)] = 45184, + [SMALL_STATE(682)] = 45245, + [SMALL_STATE(683)] = 45306, + [SMALL_STATE(684)] = 45367, + [SMALL_STATE(685)] = 45428, + [SMALL_STATE(686)] = 45489, + [SMALL_STATE(687)] = 45550, + [SMALL_STATE(688)] = 45611, + [SMALL_STATE(689)] = 45672, + [SMALL_STATE(690)] = 45733, + [SMALL_STATE(691)] = 45794, + [SMALL_STATE(692)] = 45855, + [SMALL_STATE(693)] = 45916, + [SMALL_STATE(694)] = 45977, + [SMALL_STATE(695)] = 46038, + [SMALL_STATE(696)] = 46099, + [SMALL_STATE(697)] = 46160, + [SMALL_STATE(698)] = 46221, + [SMALL_STATE(699)] = 46282, + [SMALL_STATE(700)] = 46343, + [SMALL_STATE(701)] = 46404, + [SMALL_STATE(702)] = 46465, + [SMALL_STATE(703)] = 46526, + [SMALL_STATE(704)] = 46587, + [SMALL_STATE(705)] = 46648, + [SMALL_STATE(706)] = 46709, + [SMALL_STATE(707)] = 46770, + [SMALL_STATE(708)] = 46831, + [SMALL_STATE(709)] = 46892, + [SMALL_STATE(710)] = 46953, + [SMALL_STATE(711)] = 47014, + [SMALL_STATE(712)] = 47075, + [SMALL_STATE(713)] = 47136, + [SMALL_STATE(714)] = 47197, + [SMALL_STATE(715)] = 47258, + [SMALL_STATE(716)] = 47319, + [SMALL_STATE(717)] = 47380, + [SMALL_STATE(718)] = 47441, + [SMALL_STATE(719)] = 47502, + [SMALL_STATE(720)] = 47563, + [SMALL_STATE(721)] = 47633, + [SMALL_STATE(722)] = 47703, + [SMALL_STATE(723)] = 47773, + [SMALL_STATE(724)] = 47805, + [SMALL_STATE(725)] = 47875, + [SMALL_STATE(726)] = 47908, + [SMALL_STATE(727)] = 47941, + [SMALL_STATE(728)] = 47980, + [SMALL_STATE(729)] = 48044, + [SMALL_STATE(730)] = 48086, + [SMALL_STATE(731)] = 48116, + [SMALL_STATE(732)] = 48184, + [SMALL_STATE(733)] = 48226, + [SMALL_STATE(734)] = 48268, + [SMALL_STATE(735)] = 48310, + [SMALL_STATE(736)] = 48378, + [SMALL_STATE(737)] = 48442, + [SMALL_STATE(738)] = 48510, + [SMALL_STATE(739)] = 48574, + [SMALL_STATE(740)] = 48638, + [SMALL_STATE(741)] = 48674, + [SMALL_STATE(742)] = 48742, + [SMALL_STATE(743)] = 48784, + [SMALL_STATE(744)] = 48851, + [SMALL_STATE(745)] = 48878, + [SMALL_STATE(746)] = 48907, + [SMALL_STATE(747)] = 48974, + [SMALL_STATE(748)] = 49001, + [SMALL_STATE(749)] = 49028, + [SMALL_STATE(750)] = 49055, + [SMALL_STATE(751)] = 49122, + [SMALL_STATE(752)] = 49149, + [SMALL_STATE(753)] = 49178, + [SMALL_STATE(754)] = 49207, + [SMALL_STATE(755)] = 49234, + [SMALL_STATE(756)] = 49267, + [SMALL_STATE(757)] = 49296, + [SMALL_STATE(758)] = 49323, + [SMALL_STATE(759)] = 49390, + [SMALL_STATE(760)] = 49417, + [SMALL_STATE(761)] = 49454, + [SMALL_STATE(762)] = 49494, + [SMALL_STATE(763)] = 49552, + [SMALL_STATE(764)] = 49610, + [SMALL_STATE(765)] = 49672, + [SMALL_STATE(766)] = 49712, + [SMALL_STATE(767)] = 49774, + [SMALL_STATE(768)] = 49832, + [SMALL_STATE(769)] = 49890, + [SMALL_STATE(770)] = 49952, + [SMALL_STATE(771)] = 49980, + [SMALL_STATE(772)] = 50020, + [SMALL_STATE(773)] = 50056, + [SMALL_STATE(774)] = 50090, + [SMALL_STATE(775)] = 50152, + [SMALL_STATE(776)] = 50192, + [SMALL_STATE(777)] = 50232, + [SMALL_STATE(778)] = 50290, + [SMALL_STATE(779)] = 50335, + [SMALL_STATE(780)] = 50362, + [SMALL_STATE(781)] = 50393, + [SMALL_STATE(782)] = 50454, + [SMALL_STATE(783)] = 50481, + [SMALL_STATE(784)] = 50526, + [SMALL_STATE(785)] = 50565, + [SMALL_STATE(786)] = 50592, + [SMALL_STATE(787)] = 50631, + [SMALL_STATE(788)] = 50670, + [SMALL_STATE(789)] = 50699, + [SMALL_STATE(790)] = 50744, + [SMALL_STATE(791)] = 50789, + [SMALL_STATE(792)] = 50850, + [SMALL_STATE(793)] = 50883, + [SMALL_STATE(794)] = 50944, + [SMALL_STATE(795)] = 50989, + [SMALL_STATE(796)] = 51034, + [SMALL_STATE(797)] = 51073, + [SMALL_STATE(798)] = 51134, + [SMALL_STATE(799)] = 51179, + [SMALL_STATE(800)] = 51218, + [SMALL_STATE(801)] = 51245, + [SMALL_STATE(802)] = 51301, + [SMALL_STATE(803)] = 51325, + [SMALL_STATE(804)] = 51351, + [SMALL_STATE(805)] = 51407, + [SMALL_STATE(806)] = 51433, + [SMALL_STATE(807)] = 51459, + [SMALL_STATE(808)] = 51515, + [SMALL_STATE(809)] = 51545, + [SMALL_STATE(810)] = 51601, + [SMALL_STATE(811)] = 51657, + [SMALL_STATE(812)] = 51706, + [SMALL_STATE(813)] = 51739, + [SMALL_STATE(814)] = 51788, + [SMALL_STATE(815)] = 51843, + [SMALL_STATE(816)] = 51898, + [SMALL_STATE(817)] = 51953, + [SMALL_STATE(818)] = 52008, + [SMALL_STATE(819)] = 52057, + [SMALL_STATE(820)] = 52106, + [SMALL_STATE(821)] = 52137, + [SMALL_STATE(822)] = 52186, + [SMALL_STATE(823)] = 52241, + [SMALL_STATE(824)] = 52290, + [SMALL_STATE(825)] = 52322, + [SMALL_STATE(826)] = 52348, + [SMALL_STATE(827)] = 52384, + [SMALL_STATE(828)] = 52420, + [SMALL_STATE(829)] = 52456, + [SMALL_STATE(830)] = 52482, + [SMALL_STATE(831)] = 52508, + [SMALL_STATE(832)] = 52532, + [SMALL_STATE(833)] = 52568, + [SMALL_STATE(834)] = 52594, + [SMALL_STATE(835)] = 52624, + [SMALL_STATE(836)] = 52650, + [SMALL_STATE(837)] = 52676, + [SMALL_STATE(838)] = 52712, + [SMALL_STATE(839)] = 52759, + [SMALL_STATE(840)] = 52786, + [SMALL_STATE(841)] = 52833, + [SMALL_STATE(842)] = 52882, + [SMALL_STATE(843)] = 52925, + [SMALL_STATE(844)] = 52948, + [SMALL_STATE(845)] = 52995, + [SMALL_STATE(846)] = 53036, + [SMALL_STATE(847)] = 53083, + [SMALL_STATE(848)] = 53106, + [SMALL_STATE(849)] = 53149, + [SMALL_STATE(850)] = 53196, + [SMALL_STATE(851)] = 53221, + [SMALL_STATE(852)] = 53250, + [SMALL_STATE(853)] = 53275, + [SMALL_STATE(854)] = 53316, + [SMALL_STATE(855)] = 53357, + [SMALL_STATE(856)] = 53400, + [SMALL_STATE(857)] = 53435, + [SMALL_STATE(858)] = 53470, + [SMALL_STATE(859)] = 53505, + [SMALL_STATE(860)] = 53530, + [SMALL_STATE(861)] = 53573, + [SMALL_STATE(862)] = 53600, + [SMALL_STATE(863)] = 53623, + [SMALL_STATE(864)] = 53646, + [SMALL_STATE(865)] = 53673, + [SMALL_STATE(866)] = 53694, + [SMALL_STATE(867)] = 53719, + [SMALL_STATE(868)] = 53766, + [SMALL_STATE(869)] = 53801, + [SMALL_STATE(870)] = 53844, + [SMALL_STATE(871)] = 53887, + [SMALL_STATE(872)] = 53930, + [SMALL_STATE(873)] = 53965, + [SMALL_STATE(874)] = 53987, + [SMALL_STATE(875)] = 54033, + [SMALL_STATE(876)] = 54053, + [SMALL_STATE(877)] = 54077, + [SMALL_STATE(878)] = 54123, + [SMALL_STATE(879)] = 54145, + [SMALL_STATE(880)] = 54167, + [SMALL_STATE(881)] = 54189, + [SMALL_STATE(882)] = 54211, + [SMALL_STATE(883)] = 54231, + [SMALL_STATE(884)] = 54253, + [SMALL_STATE(885)] = 54275, + [SMALL_STATE(886)] = 54321, + [SMALL_STATE(887)] = 54343, + [SMALL_STATE(888)] = 54389, + [SMALL_STATE(889)] = 54435, + [SMALL_STATE(890)] = 54455, + [SMALL_STATE(891)] = 54501, + [SMALL_STATE(892)] = 54523, + [SMALL_STATE(893)] = 54543, + [SMALL_STATE(894)] = 54565, + [SMALL_STATE(895)] = 54587, + [SMALL_STATE(896)] = 54607, + [SMALL_STATE(897)] = 54629, + [SMALL_STATE(898)] = 54649, + [SMALL_STATE(899)] = 54669, + [SMALL_STATE(900)] = 54695, + [SMALL_STATE(901)] = 54718, + [SMALL_STATE(902)] = 54737, + [SMALL_STATE(903)] = 54774, + [SMALL_STATE(904)] = 54815, + [SMALL_STATE(905)] = 54852, + [SMALL_STATE(906)] = 54889, + [SMALL_STATE(907)] = 54910, + [SMALL_STATE(908)] = 54933, + [SMALL_STATE(909)] = 54956, + [SMALL_STATE(910)] = 54997, + [SMALL_STATE(911)] = 55038, + [SMALL_STATE(912)] = 55061, + [SMALL_STATE(913)] = 55088, + [SMALL_STATE(914)] = 55111, + [SMALL_STATE(915)] = 55152, + [SMALL_STATE(916)] = 55189, + [SMALL_STATE(917)] = 55230, + [SMALL_STATE(918)] = 55271, + [SMALL_STATE(919)] = 55290, + [SMALL_STATE(920)] = 55327, + [SMALL_STATE(921)] = 55350, + [SMALL_STATE(922)] = 55375, + [SMALL_STATE(923)] = 55416, + [SMALL_STATE(924)] = 55435, + [SMALL_STATE(925)] = 55454, + [SMALL_STATE(926)] = 55491, + [SMALL_STATE(927)] = 55528, + [SMALL_STATE(928)] = 55547, + [SMALL_STATE(929)] = 55584, + [SMALL_STATE(930)] = 55607, + [SMALL_STATE(931)] = 55648, + [SMALL_STATE(932)] = 55688, + [SMALL_STATE(933)] = 55710, + [SMALL_STATE(934)] = 55742, + [SMALL_STATE(935)] = 55762, + [SMALL_STATE(936)] = 55800, + [SMALL_STATE(937)] = 55832, + [SMALL_STATE(938)] = 55854, + [SMALL_STATE(939)] = 55874, + [SMALL_STATE(940)] = 55914, + [SMALL_STATE(941)] = 55952, + [SMALL_STATE(942)] = 55990, + [SMALL_STATE(943)] = 56030, + [SMALL_STATE(944)] = 56064, + [SMALL_STATE(945)] = 56082, + [SMALL_STATE(946)] = 56114, + [SMALL_STATE(947)] = 56132, + [SMALL_STATE(948)] = 56150, + [SMALL_STATE(949)] = 56188, + [SMALL_STATE(950)] = 56206, + [SMALL_STATE(951)] = 56246, + [SMALL_STATE(952)] = 56286, + [SMALL_STATE(953)] = 56310, + [SMALL_STATE(954)] = 56348, + [SMALL_STATE(955)] = 56370, + [SMALL_STATE(956)] = 56404, + [SMALL_STATE(957)] = 56428, + [SMALL_STATE(958)] = 56462, + [SMALL_STATE(959)] = 56502, + [SMALL_STATE(960)] = 56542, + [SMALL_STATE(961)] = 56580, + [SMALL_STATE(962)] = 56598, + [SMALL_STATE(963)] = 56630, + [SMALL_STATE(964)] = 56662, + [SMALL_STATE(965)] = 56679, + [SMALL_STATE(966)] = 56714, + [SMALL_STATE(967)] = 56731, + [SMALL_STATE(968)] = 56762, + [SMALL_STATE(969)] = 56793, + [SMALL_STATE(970)] = 56828, + [SMALL_STATE(971)] = 56845, + [SMALL_STATE(972)] = 56874, + [SMALL_STATE(973)] = 56909, + [SMALL_STATE(974)] = 56946, + [SMALL_STATE(975)] = 56963, + [SMALL_STATE(976)] = 56998, + [SMALL_STATE(977)] = 57015, + [SMALL_STATE(978)] = 57046, + [SMALL_STATE(979)] = 57081, + [SMALL_STATE(980)] = 57116, + [SMALL_STATE(981)] = 57147, + [SMALL_STATE(982)] = 57164, + [SMALL_STATE(983)] = 57185, + [SMALL_STATE(984)] = 57216, + [SMALL_STATE(985)] = 57251, + [SMALL_STATE(986)] = 57272, + [SMALL_STATE(987)] = 57301, + [SMALL_STATE(988)] = 57336, + [SMALL_STATE(989)] = 57371, + [SMALL_STATE(990)] = 57402, + [SMALL_STATE(991)] = 57437, + [SMALL_STATE(992)] = 57458, + [SMALL_STATE(993)] = 57489, + [SMALL_STATE(994)] = 57510, + [SMALL_STATE(995)] = 57527, + [SMALL_STATE(996)] = 57548, + [SMALL_STATE(997)] = 57579, + [SMALL_STATE(998)] = 57610, + [SMALL_STATE(999)] = 57641, + [SMALL_STATE(1000)] = 57676, + [SMALL_STATE(1001)] = 57705, + [SMALL_STATE(1002)] = 57736, + [SMALL_STATE(1003)] = 57765, + [SMALL_STATE(1004)] = 57802, + [SMALL_STATE(1005)] = 57819, + [SMALL_STATE(1006)] = 57853, + [SMALL_STATE(1007)] = 57879, + [SMALL_STATE(1008)] = 57895, + [SMALL_STATE(1009)] = 57911, + [SMALL_STATE(1010)] = 57945, + [SMALL_STATE(1011)] = 57961, + [SMALL_STATE(1012)] = 57995, + [SMALL_STATE(1013)] = 58015, + [SMALL_STATE(1014)] = 58049, + [SMALL_STATE(1015)] = 58069, + [SMALL_STATE(1016)] = 58085, + [SMALL_STATE(1017)] = 58105, + [SMALL_STATE(1018)] = 58125, + [SMALL_STATE(1019)] = 58153, + [SMALL_STATE(1020)] = 58187, + [SMALL_STATE(1021)] = 58203, + [SMALL_STATE(1022)] = 58223, + [SMALL_STATE(1023)] = 58257, + [SMALL_STATE(1024)] = 58273, + [SMALL_STATE(1025)] = 58307, + [SMALL_STATE(1026)] = 58323, + [SMALL_STATE(1027)] = 58339, + [SMALL_STATE(1028)] = 58355, + [SMALL_STATE(1029)] = 58371, + [SMALL_STATE(1030)] = 58405, + [SMALL_STATE(1031)] = 58425, + [SMALL_STATE(1032)] = 58440, + [SMALL_STATE(1033)] = 58469, + [SMALL_STATE(1034)] = 58498, + [SMALL_STATE(1035)] = 58527, + [SMALL_STATE(1036)] = 58556, + [SMALL_STATE(1037)] = 58585, + [SMALL_STATE(1038)] = 58614, + [SMALL_STATE(1039)] = 58643, + [SMALL_STATE(1040)] = 58672, + [SMALL_STATE(1041)] = 58703, + [SMALL_STATE(1042)] = 58732, + [SMALL_STATE(1043)] = 58761, + [SMALL_STATE(1044)] = 58790, + [SMALL_STATE(1045)] = 58819, + [SMALL_STATE(1046)] = 58848, + [SMALL_STATE(1047)] = 58877, + [SMALL_STATE(1048)] = 58906, + [SMALL_STATE(1049)] = 58935, + [SMALL_STATE(1050)] = 58950, + [SMALL_STATE(1051)] = 58979, + [SMALL_STATE(1052)] = 58994, + [SMALL_STATE(1053)] = 59025, + [SMALL_STATE(1054)] = 59054, + [SMALL_STATE(1055)] = 59083, + [SMALL_STATE(1056)] = 59112, + [SMALL_STATE(1057)] = 59141, + [SMALL_STATE(1058)] = 59165, + [SMALL_STATE(1059)] = 59191, + [SMALL_STATE(1060)] = 59207, + [SMALL_STATE(1061)] = 59233, + [SMALL_STATE(1062)] = 59261, + [SMALL_STATE(1063)] = 59285, + [SMALL_STATE(1064)] = 59311, + [SMALL_STATE(1065)] = 59337, + [SMALL_STATE(1066)] = 59365, + [SMALL_STATE(1067)] = 59389, + [SMALL_STATE(1068)] = 59417, + [SMALL_STATE(1069)] = 59441, + [SMALL_STATE(1070)] = 59465, + [SMALL_STATE(1071)] = 59481, + [SMALL_STATE(1072)] = 59505, + [SMALL_STATE(1073)] = 59529, + [SMALL_STATE(1074)] = 59557, + [SMALL_STATE(1075)] = 59585, + [SMALL_STATE(1076)] = 59611, + [SMALL_STATE(1077)] = 59637, + [SMALL_STATE(1078)] = 59661, + [SMALL_STATE(1079)] = 59685, + [SMALL_STATE(1080)] = 59711, + [SMALL_STATE(1081)] = 59739, + [SMALL_STATE(1082)] = 59765, + [SMALL_STATE(1083)] = 59789, + [SMALL_STATE(1084)] = 59813, + [SMALL_STATE(1085)] = 59837, + [SMALL_STATE(1086)] = 59861, + [SMALL_STATE(1087)] = 59889, + [SMALL_STATE(1088)] = 59915, + [SMALL_STATE(1089)] = 59939, + [SMALL_STATE(1090)] = 59967, + [SMALL_STATE(1091)] = 59991, + [SMALL_STATE(1092)] = 60013, + [SMALL_STATE(1093)] = 60039, + [SMALL_STATE(1094)] = 60067, + [SMALL_STATE(1095)] = 60093, + [SMALL_STATE(1096)] = 60117, + [SMALL_STATE(1097)] = 60141, + [SMALL_STATE(1098)] = 60167, + [SMALL_STATE(1099)] = 60185, + [SMALL_STATE(1100)] = 60211, + [SMALL_STATE(1101)] = 60239, + [SMALL_STATE(1102)] = 60263, + [SMALL_STATE(1103)] = 60287, + [SMALL_STATE(1104)] = 60313, + [SMALL_STATE(1105)] = 60331, + [SMALL_STATE(1106)] = 60355, + [SMALL_STATE(1107)] = 60381, + [SMALL_STATE(1108)] = 60407, + [SMALL_STATE(1109)] = 60433, + [SMALL_STATE(1110)] = 60459, + [SMALL_STATE(1111)] = 60485, + [SMALL_STATE(1112)] = 60509, + [SMALL_STATE(1113)] = 60535, + [SMALL_STATE(1114)] = 60557, + [SMALL_STATE(1115)] = 60581, + [SMALL_STATE(1116)] = 60609, + [SMALL_STATE(1117)] = 60633, + [SMALL_STATE(1118)] = 60661, + [SMALL_STATE(1119)] = 60674, + [SMALL_STATE(1120)] = 60691, + [SMALL_STATE(1121)] = 60704, + [SMALL_STATE(1122)] = 60725, + [SMALL_STATE(1123)] = 60748, + [SMALL_STATE(1124)] = 60769, + [SMALL_STATE(1125)] = 60786, + [SMALL_STATE(1126)] = 60803, + [SMALL_STATE(1127)] = 60826, + [SMALL_STATE(1128)] = 60843, + [SMALL_STATE(1129)] = 60856, + [SMALL_STATE(1130)] = 60873, + [SMALL_STATE(1131)] = 60896, + [SMALL_STATE(1132)] = 60919, + [SMALL_STATE(1133)] = 60932, + [SMALL_STATE(1134)] = 60955, + [SMALL_STATE(1135)] = 60968, + [SMALL_STATE(1136)] = 60981, + [SMALL_STATE(1137)] = 60998, + [SMALL_STATE(1138)] = 61019, + [SMALL_STATE(1139)] = 61042, + [SMALL_STATE(1140)] = 61059, + [SMALL_STATE(1141)] = 61080, + [SMALL_STATE(1142)] = 61101, + [SMALL_STATE(1143)] = 61114, + [SMALL_STATE(1144)] = 61127, + [SMALL_STATE(1145)] = 61148, + [SMALL_STATE(1146)] = 61173, + [SMALL_STATE(1147)] = 61194, + [SMALL_STATE(1148)] = 61217, + [SMALL_STATE(1149)] = 61234, + [SMALL_STATE(1150)] = 61255, + [SMALL_STATE(1151)] = 61275, + [SMALL_STATE(1152)] = 61293, + [SMALL_STATE(1153)] = 61313, + [SMALL_STATE(1154)] = 61335, + [SMALL_STATE(1155)] = 61351, + [SMALL_STATE(1156)] = 61371, + [SMALL_STATE(1157)] = 61383, + [SMALL_STATE(1158)] = 61395, + [SMALL_STATE(1159)] = 61415, + [SMALL_STATE(1160)] = 61435, + [SMALL_STATE(1161)] = 61455, + [SMALL_STATE(1162)] = 61473, + [SMALL_STATE(1163)] = 61489, + [SMALL_STATE(1164)] = 61507, + [SMALL_STATE(1165)] = 61527, + [SMALL_STATE(1166)] = 61549, + [SMALL_STATE(1167)] = 61569, + [SMALL_STATE(1168)] = 61591, + [SMALL_STATE(1169)] = 61611, + [SMALL_STATE(1170)] = 61631, + [SMALL_STATE(1171)] = 61653, + [SMALL_STATE(1172)] = 61675, + [SMALL_STATE(1173)] = 61687, + [SMALL_STATE(1174)] = 61703, + [SMALL_STATE(1175)] = 61719, + [SMALL_STATE(1176)] = 61739, + [SMALL_STATE(1177)] = 61751, + [SMALL_STATE(1178)] = 61767, + [SMALL_STATE(1179)] = 61787, + [SMALL_STATE(1180)] = 61799, + [SMALL_STATE(1181)] = 61815, + [SMALL_STATE(1182)] = 61827, + [SMALL_STATE(1183)] = 61843, + [SMALL_STATE(1184)] = 61863, + [SMALL_STATE(1185)] = 61879, + [SMALL_STATE(1186)] = 61899, + [SMALL_STATE(1187)] = 61919, + [SMALL_STATE(1188)] = 61939, + [SMALL_STATE(1189)] = 61951, + [SMALL_STATE(1190)] = 61971, + [SMALL_STATE(1191)] = 61991, + [SMALL_STATE(1192)] = 62009, + [SMALL_STATE(1193)] = 62021, + [SMALL_STATE(1194)] = 62041, + [SMALL_STATE(1195)] = 62059, + [SMALL_STATE(1196)] = 62075, + [SMALL_STATE(1197)] = 62087, + [SMALL_STATE(1198)] = 62099, + [SMALL_STATE(1199)] = 62119, + [SMALL_STATE(1200)] = 62139, + [SMALL_STATE(1201)] = 62155, + [SMALL_STATE(1202)] = 62175, + [SMALL_STATE(1203)] = 62191, + [SMALL_STATE(1204)] = 62211, + [SMALL_STATE(1205)] = 62229, + [SMALL_STATE(1206)] = 62241, + [SMALL_STATE(1207)] = 62261, + [SMALL_STATE(1208)] = 62281, + [SMALL_STATE(1209)] = 62301, + [SMALL_STATE(1210)] = 62317, + [SMALL_STATE(1211)] = 62329, + [SMALL_STATE(1212)] = 62349, + [SMALL_STATE(1213)] = 62369, + [SMALL_STATE(1214)] = 62385, + [SMALL_STATE(1215)] = 62397, + [SMALL_STATE(1216)] = 62417, + [SMALL_STATE(1217)] = 62437, + [SMALL_STATE(1218)] = 62457, + [SMALL_STATE(1219)] = 62473, + [SMALL_STATE(1220)] = 62491, + [SMALL_STATE(1221)] = 62511, + [SMALL_STATE(1222)] = 62531, + [SMALL_STATE(1223)] = 62551, + [SMALL_STATE(1224)] = 62563, + [SMALL_STATE(1225)] = 62583, + [SMALL_STATE(1226)] = 62603, + [SMALL_STATE(1227)] = 62621, + [SMALL_STATE(1228)] = 62633, + [SMALL_STATE(1229)] = 62649, + [SMALL_STATE(1230)] = 62669, + [SMALL_STATE(1231)] = 62689, + [SMALL_STATE(1232)] = 62706, + [SMALL_STATE(1233)] = 62717, + [SMALL_STATE(1234)] = 62734, + [SMALL_STATE(1235)] = 62749, + [SMALL_STATE(1236)] = 62768, + [SMALL_STATE(1237)] = 62787, + [SMALL_STATE(1238)] = 62806, + [SMALL_STATE(1239)] = 62821, + [SMALL_STATE(1240)] = 62836, + [SMALL_STATE(1241)] = 62853, + [SMALL_STATE(1242)] = 62866, + [SMALL_STATE(1243)] = 62885, + [SMALL_STATE(1244)] = 62902, + [SMALL_STATE(1245)] = 62919, + [SMALL_STATE(1246)] = 62934, + [SMALL_STATE(1247)] = 62949, + [SMALL_STATE(1248)] = 62968, + [SMALL_STATE(1249)] = 62981, + [SMALL_STATE(1250)] = 62992, + [SMALL_STATE(1251)] = 63003, + [SMALL_STATE(1252)] = 63020, + [SMALL_STATE(1253)] = 63035, + [SMALL_STATE(1254)] = 63054, + [SMALL_STATE(1255)] = 63065, + [SMALL_STATE(1256)] = 63082, + [SMALL_STATE(1257)] = 63099, + [SMALL_STATE(1258)] = 63118, + [SMALL_STATE(1259)] = 63137, + [SMALL_STATE(1260)] = 63156, + [SMALL_STATE(1261)] = 63173, + [SMALL_STATE(1262)] = 63192, + [SMALL_STATE(1263)] = 63203, + [SMALL_STATE(1264)] = 63220, + [SMALL_STATE(1265)] = 63235, + [SMALL_STATE(1266)] = 63254, + [SMALL_STATE(1267)] = 63273, + [SMALL_STATE(1268)] = 63284, + [SMALL_STATE(1269)] = 63295, + [SMALL_STATE(1270)] = 63308, + [SMALL_STATE(1271)] = 63327, + [SMALL_STATE(1272)] = 63346, + [SMALL_STATE(1273)] = 63363, + [SMALL_STATE(1274)] = 63378, + [SMALL_STATE(1275)] = 63397, + [SMALL_STATE(1276)] = 63416, + [SMALL_STATE(1277)] = 63435, + [SMALL_STATE(1278)] = 63454, + [SMALL_STATE(1279)] = 63471, + [SMALL_STATE(1280)] = 63488, + [SMALL_STATE(1281)] = 63507, + [SMALL_STATE(1282)] = 63526, + [SMALL_STATE(1283)] = 63537, + [SMALL_STATE(1284)] = 63554, + [SMALL_STATE(1285)] = 63571, + [SMALL_STATE(1286)] = 63586, + [SMALL_STATE(1287)] = 63599, + [SMALL_STATE(1288)] = 63614, + [SMALL_STATE(1289)] = 63633, + [SMALL_STATE(1290)] = 63652, + [SMALL_STATE(1291)] = 63669, + [SMALL_STATE(1292)] = 63680, + [SMALL_STATE(1293)] = 63697, + [SMALL_STATE(1294)] = 63714, + [SMALL_STATE(1295)] = 63731, + [SMALL_STATE(1296)] = 63750, + [SMALL_STATE(1297)] = 63764, + [SMALL_STATE(1298)] = 63774, + [SMALL_STATE(1299)] = 63788, + [SMALL_STATE(1300)] = 63802, + [SMALL_STATE(1301)] = 63816, + [SMALL_STATE(1302)] = 63826, + [SMALL_STATE(1303)] = 63842, + [SMALL_STATE(1304)] = 63856, + [SMALL_STATE(1305)] = 63870, + [SMALL_STATE(1306)] = 63884, + [SMALL_STATE(1307)] = 63898, + [SMALL_STATE(1308)] = 63912, + [SMALL_STATE(1309)] = 63926, + [SMALL_STATE(1310)] = 63940, + [SMALL_STATE(1311)] = 63954, + [SMALL_STATE(1312)] = 63964, + [SMALL_STATE(1313)] = 63980, + [SMALL_STATE(1314)] = 63994, + [SMALL_STATE(1315)] = 64008, + [SMALL_STATE(1316)] = 64024, + [SMALL_STATE(1317)] = 64038, + [SMALL_STATE(1318)] = 64052, + [SMALL_STATE(1319)] = 64068, + [SMALL_STATE(1320)] = 64078, + [SMALL_STATE(1321)] = 64092, + [SMALL_STATE(1322)] = 64106, + [SMALL_STATE(1323)] = 64116, + [SMALL_STATE(1324)] = 64130, + [SMALL_STATE(1325)] = 64144, + [SMALL_STATE(1326)] = 64158, + [SMALL_STATE(1327)] = 64172, + [SMALL_STATE(1328)] = 64186, + [SMALL_STATE(1329)] = 64200, + [SMALL_STATE(1330)] = 64214, + [SMALL_STATE(1331)] = 64228, + [SMALL_STATE(1332)] = 64244, + [SMALL_STATE(1333)] = 64260, + [SMALL_STATE(1334)] = 64276, + [SMALL_STATE(1335)] = 64290, + [SMALL_STATE(1336)] = 64304, + [SMALL_STATE(1337)] = 64318, + [SMALL_STATE(1338)] = 64328, + [SMALL_STATE(1339)] = 64342, + [SMALL_STATE(1340)] = 64356, + [SMALL_STATE(1341)] = 64370, + [SMALL_STATE(1342)] = 64384, + [SMALL_STATE(1343)] = 64398, + [SMALL_STATE(1344)] = 64408, + [SMALL_STATE(1345)] = 64422, + [SMALL_STATE(1346)] = 64432, + [SMALL_STATE(1347)] = 64446, + [SMALL_STATE(1348)] = 64460, + [SMALL_STATE(1349)] = 64474, + [SMALL_STATE(1350)] = 64486, + [SMALL_STATE(1351)] = 64502, + [SMALL_STATE(1352)] = 64518, + [SMALL_STATE(1353)] = 64534, + [SMALL_STATE(1354)] = 64544, + [SMALL_STATE(1355)] = 64558, + [SMALL_STATE(1356)] = 64572, + [SMALL_STATE(1357)] = 64586, + [SMALL_STATE(1358)] = 64600, + [SMALL_STATE(1359)] = 64614, + [SMALL_STATE(1360)] = 64630, + [SMALL_STATE(1361)] = 64644, + [SMALL_STATE(1362)] = 64658, + [SMALL_STATE(1363)] = 64672, + [SMALL_STATE(1364)] = 64686, + [SMALL_STATE(1365)] = 64702, + [SMALL_STATE(1366)] = 64716, + [SMALL_STATE(1367)] = 64730, + [SMALL_STATE(1368)] = 64740, + [SMALL_STATE(1369)] = 64756, + [SMALL_STATE(1370)] = 64770, + [SMALL_STATE(1371)] = 64786, + [SMALL_STATE(1372)] = 64802, + [SMALL_STATE(1373)] = 64816, + [SMALL_STATE(1374)] = 64826, + [SMALL_STATE(1375)] = 64840, + [SMALL_STATE(1376)] = 64854, + [SMALL_STATE(1377)] = 64864, + [SMALL_STATE(1378)] = 64880, + [SMALL_STATE(1379)] = 64894, + [SMALL_STATE(1380)] = 64908, + [SMALL_STATE(1381)] = 64922, + [SMALL_STATE(1382)] = 64932, + [SMALL_STATE(1383)] = 64946, + [SMALL_STATE(1384)] = 64960, + [SMALL_STATE(1385)] = 64976, + [SMALL_STATE(1386)] = 64992, + [SMALL_STATE(1387)] = 65006, + [SMALL_STATE(1388)] = 65016, + [SMALL_STATE(1389)] = 65030, + [SMALL_STATE(1390)] = 65044, + [SMALL_STATE(1391)] = 65060, + [SMALL_STATE(1392)] = 65074, + [SMALL_STATE(1393)] = 65090, + [SMALL_STATE(1394)] = 65104, + [SMALL_STATE(1395)] = 65120, + [SMALL_STATE(1396)] = 65134, + [SMALL_STATE(1397)] = 65150, + [SMALL_STATE(1398)] = 65164, + [SMALL_STATE(1399)] = 65180, + [SMALL_STATE(1400)] = 65196, + [SMALL_STATE(1401)] = 65210, + [SMALL_STATE(1402)] = 65222, + [SMALL_STATE(1403)] = 65238, + [SMALL_STATE(1404)] = 65254, + [SMALL_STATE(1405)] = 65268, + [SMALL_STATE(1406)] = 65284, + [SMALL_STATE(1407)] = 65298, + [SMALL_STATE(1408)] = 65312, + [SMALL_STATE(1409)] = 65326, + [SMALL_STATE(1410)] = 65342, + [SMALL_STATE(1411)] = 65356, + [SMALL_STATE(1412)] = 65370, + [SMALL_STATE(1413)] = 65384, + [SMALL_STATE(1414)] = 65398, + [SMALL_STATE(1415)] = 65412, + [SMALL_STATE(1416)] = 65428, + [SMALL_STATE(1417)] = 65442, + [SMALL_STATE(1418)] = 65452, + [SMALL_STATE(1419)] = 65466, + [SMALL_STATE(1420)] = 65476, + [SMALL_STATE(1421)] = 65490, + [SMALL_STATE(1422)] = 65504, + [SMALL_STATE(1423)] = 65518, + [SMALL_STATE(1424)] = 65531, + [SMALL_STATE(1425)] = 65544, + [SMALL_STATE(1426)] = 65557, + [SMALL_STATE(1427)] = 65570, + [SMALL_STATE(1428)] = 65583, + [SMALL_STATE(1429)] = 65596, + [SMALL_STATE(1430)] = 65609, + [SMALL_STATE(1431)] = 65622, + [SMALL_STATE(1432)] = 65635, + [SMALL_STATE(1433)] = 65648, + [SMALL_STATE(1434)] = 65661, + [SMALL_STATE(1435)] = 65674, + [SMALL_STATE(1436)] = 65687, + [SMALL_STATE(1437)] = 65700, + [SMALL_STATE(1438)] = 65713, + [SMALL_STATE(1439)] = 65726, + [SMALL_STATE(1440)] = 65739, + [SMALL_STATE(1441)] = 65752, + [SMALL_STATE(1442)] = 65765, + [SMALL_STATE(1443)] = 65778, + [SMALL_STATE(1444)] = 65787, + [SMALL_STATE(1445)] = 65796, + [SMALL_STATE(1446)] = 65809, + [SMALL_STATE(1447)] = 65822, + [SMALL_STATE(1448)] = 65833, + [SMALL_STATE(1449)] = 65846, + [SMALL_STATE(1450)] = 65859, + [SMALL_STATE(1451)] = 65872, + [SMALL_STATE(1452)] = 65885, + [SMALL_STATE(1453)] = 65898, + [SMALL_STATE(1454)] = 65907, + [SMALL_STATE(1455)] = 65920, + [SMALL_STATE(1456)] = 65933, + [SMALL_STATE(1457)] = 65946, + [SMALL_STATE(1458)] = 65959, + [SMALL_STATE(1459)] = 65972, + [SMALL_STATE(1460)] = 65985, + [SMALL_STATE(1461)] = 65998, + [SMALL_STATE(1462)] = 66011, + [SMALL_STATE(1463)] = 66024, + [SMALL_STATE(1464)] = 66037, + [SMALL_STATE(1465)] = 66050, + [SMALL_STATE(1466)] = 66063, + [SMALL_STATE(1467)] = 66076, + [SMALL_STATE(1468)] = 66089, + [SMALL_STATE(1469)] = 66102, + [SMALL_STATE(1470)] = 66115, + [SMALL_STATE(1471)] = 66128, + [SMALL_STATE(1472)] = 66137, + [SMALL_STATE(1473)] = 66150, + [SMALL_STATE(1474)] = 66163, + [SMALL_STATE(1475)] = 66176, + [SMALL_STATE(1476)] = 66189, + [SMALL_STATE(1477)] = 66198, + [SMALL_STATE(1478)] = 66211, + [SMALL_STATE(1479)] = 66224, + [SMALL_STATE(1480)] = 66237, + [SMALL_STATE(1481)] = 66250, + [SMALL_STATE(1482)] = 66263, + [SMALL_STATE(1483)] = 66276, + [SMALL_STATE(1484)] = 66289, + [SMALL_STATE(1485)] = 66302, + [SMALL_STATE(1486)] = 66315, + [SMALL_STATE(1487)] = 66328, + [SMALL_STATE(1488)] = 66341, + [SMALL_STATE(1489)] = 66354, + [SMALL_STATE(1490)] = 66367, + [SMALL_STATE(1491)] = 66376, + [SMALL_STATE(1492)] = 66389, + [SMALL_STATE(1493)] = 66402, + [SMALL_STATE(1494)] = 66415, + [SMALL_STATE(1495)] = 66428, + [SMALL_STATE(1496)] = 66441, + [SMALL_STATE(1497)] = 66454, + [SMALL_STATE(1498)] = 66467, + [SMALL_STATE(1499)] = 66480, + [SMALL_STATE(1500)] = 66493, + [SMALL_STATE(1501)] = 66506, + [SMALL_STATE(1502)] = 66519, + [SMALL_STATE(1503)] = 66528, + [SMALL_STATE(1504)] = 66541, + [SMALL_STATE(1505)] = 66554, + [SMALL_STATE(1506)] = 66567, + [SMALL_STATE(1507)] = 66580, + [SMALL_STATE(1508)] = 66593, + [SMALL_STATE(1509)] = 66602, + [SMALL_STATE(1510)] = 66615, + [SMALL_STATE(1511)] = 66628, + [SMALL_STATE(1512)] = 66641, + [SMALL_STATE(1513)] = 66654, + [SMALL_STATE(1514)] = 66667, + [SMALL_STATE(1515)] = 66680, + [SMALL_STATE(1516)] = 66693, + [SMALL_STATE(1517)] = 66706, + [SMALL_STATE(1518)] = 66719, + [SMALL_STATE(1519)] = 66732, + [SMALL_STATE(1520)] = 66745, + [SMALL_STATE(1521)] = 66758, + [SMALL_STATE(1522)] = 66771, + [SMALL_STATE(1523)] = 66784, + [SMALL_STATE(1524)] = 66797, + [SMALL_STATE(1525)] = 66810, + [SMALL_STATE(1526)] = 66823, + [SMALL_STATE(1527)] = 66836, + [SMALL_STATE(1528)] = 66849, + [SMALL_STATE(1529)] = 66862, + [SMALL_STATE(1530)] = 66875, + [SMALL_STATE(1531)] = 66888, + [SMALL_STATE(1532)] = 66897, + [SMALL_STATE(1533)] = 66910, + [SMALL_STATE(1534)] = 66923, + [SMALL_STATE(1535)] = 66936, + [SMALL_STATE(1536)] = 66949, + [SMALL_STATE(1537)] = 66958, + [SMALL_STATE(1538)] = 66971, + [SMALL_STATE(1539)] = 66984, + [SMALL_STATE(1540)] = 66997, + [SMALL_STATE(1541)] = 67010, + [SMALL_STATE(1542)] = 67023, + [SMALL_STATE(1543)] = 67036, + [SMALL_STATE(1544)] = 67049, + [SMALL_STATE(1545)] = 67062, + [SMALL_STATE(1546)] = 67075, + [SMALL_STATE(1547)] = 67088, + [SMALL_STATE(1548)] = 67101, + [SMALL_STATE(1549)] = 67110, + [SMALL_STATE(1550)] = 67123, + [SMALL_STATE(1551)] = 67136, + [SMALL_STATE(1552)] = 67149, + [SMALL_STATE(1553)] = 67162, + [SMALL_STATE(1554)] = 67175, + [SMALL_STATE(1555)] = 67188, + [SMALL_STATE(1556)] = 67201, + [SMALL_STATE(1557)] = 67214, + [SMALL_STATE(1558)] = 67227, + [SMALL_STATE(1559)] = 67240, + [SMALL_STATE(1560)] = 67253, + [SMALL_STATE(1561)] = 67266, + [SMALL_STATE(1562)] = 67279, + [SMALL_STATE(1563)] = 67292, + [SMALL_STATE(1564)] = 67305, + [SMALL_STATE(1565)] = 67318, + [SMALL_STATE(1566)] = 67331, + [SMALL_STATE(1567)] = 67340, + [SMALL_STATE(1568)] = 67353, + [SMALL_STATE(1569)] = 67366, + [SMALL_STATE(1570)] = 67379, + [SMALL_STATE(1571)] = 67392, + [SMALL_STATE(1572)] = 67405, + [SMALL_STATE(1573)] = 67418, + [SMALL_STATE(1574)] = 67431, + [SMALL_STATE(1575)] = 67444, + [SMALL_STATE(1576)] = 67457, + [SMALL_STATE(1577)] = 67470, + [SMALL_STATE(1578)] = 67483, + [SMALL_STATE(1579)] = 67496, + [SMALL_STATE(1580)] = 67509, + [SMALL_STATE(1581)] = 67518, + [SMALL_STATE(1582)] = 67531, + [SMALL_STATE(1583)] = 67544, + [SMALL_STATE(1584)] = 67557, + [SMALL_STATE(1585)] = 67570, + [SMALL_STATE(1586)] = 67583, + [SMALL_STATE(1587)] = 67596, + [SMALL_STATE(1588)] = 67609, + [SMALL_STATE(1589)] = 67622, + [SMALL_STATE(1590)] = 67631, + [SMALL_STATE(1591)] = 67640, + [SMALL_STATE(1592)] = 67653, + [SMALL_STATE(1593)] = 67664, + [SMALL_STATE(1594)] = 67677, + [SMALL_STATE(1595)] = 67690, + [SMALL_STATE(1596)] = 67699, + [SMALL_STATE(1597)] = 67712, + [SMALL_STATE(1598)] = 67725, + [SMALL_STATE(1599)] = 67738, + [SMALL_STATE(1600)] = 67751, + [SMALL_STATE(1601)] = 67764, + [SMALL_STATE(1602)] = 67777, + [SMALL_STATE(1603)] = 67790, + [SMALL_STATE(1604)] = 67803, + [SMALL_STATE(1605)] = 67816, + [SMALL_STATE(1606)] = 67825, + [SMALL_STATE(1607)] = 67838, + [SMALL_STATE(1608)] = 67851, + [SMALL_STATE(1609)] = 67864, + [SMALL_STATE(1610)] = 67877, + [SMALL_STATE(1611)] = 67890, + [SMALL_STATE(1612)] = 67899, + [SMALL_STATE(1613)] = 67912, + [SMALL_STATE(1614)] = 67925, + [SMALL_STATE(1615)] = 67938, + [SMALL_STATE(1616)] = 67949, + [SMALL_STATE(1617)] = 67958, + [SMALL_STATE(1618)] = 67971, + [SMALL_STATE(1619)] = 67984, + [SMALL_STATE(1620)] = 67997, + [SMALL_STATE(1621)] = 68010, + [SMALL_STATE(1622)] = 68023, + [SMALL_STATE(1623)] = 68036, + [SMALL_STATE(1624)] = 68049, + [SMALL_STATE(1625)] = 68059, + [SMALL_STATE(1626)] = 68067, + [SMALL_STATE(1627)] = 68077, + [SMALL_STATE(1628)] = 68087, + [SMALL_STATE(1629)] = 68097, + [SMALL_STATE(1630)] = 68107, + [SMALL_STATE(1631)] = 68115, + [SMALL_STATE(1632)] = 68123, + [SMALL_STATE(1633)] = 68131, + [SMALL_STATE(1634)] = 68139, + [SMALL_STATE(1635)] = 68147, + [SMALL_STATE(1636)] = 68157, + [SMALL_STATE(1637)] = 68167, + [SMALL_STATE(1638)] = 68177, + [SMALL_STATE(1639)] = 68185, + [SMALL_STATE(1640)] = 68195, + [SMALL_STATE(1641)] = 68203, + [SMALL_STATE(1642)] = 68213, + [SMALL_STATE(1643)] = 68221, + [SMALL_STATE(1644)] = 68231, + [SMALL_STATE(1645)] = 68241, + [SMALL_STATE(1646)] = 68251, + [SMALL_STATE(1647)] = 68259, + [SMALL_STATE(1648)] = 68267, + [SMALL_STATE(1649)] = 68277, + [SMALL_STATE(1650)] = 68287, + [SMALL_STATE(1651)] = 68295, + [SMALL_STATE(1652)] = 68303, + [SMALL_STATE(1653)] = 68311, + [SMALL_STATE(1654)] = 68319, + [SMALL_STATE(1655)] = 68327, + [SMALL_STATE(1656)] = 68335, + [SMALL_STATE(1657)] = 68345, + [SMALL_STATE(1658)] = 68353, + [SMALL_STATE(1659)] = 68363, + [SMALL_STATE(1660)] = 68371, + [SMALL_STATE(1661)] = 68381, + [SMALL_STATE(1662)] = 68391, + [SMALL_STATE(1663)] = 68401, + [SMALL_STATE(1664)] = 68409, + [SMALL_STATE(1665)] = 68419, + [SMALL_STATE(1666)] = 68429, + [SMALL_STATE(1667)] = 68437, + [SMALL_STATE(1668)] = 68447, + [SMALL_STATE(1669)] = 68455, + [SMALL_STATE(1670)] = 68465, + [SMALL_STATE(1671)] = 68473, + [SMALL_STATE(1672)] = 68483, + [SMALL_STATE(1673)] = 68493, + [SMALL_STATE(1674)] = 68501, + [SMALL_STATE(1675)] = 68511, + [SMALL_STATE(1676)] = 68519, + [SMALL_STATE(1677)] = 68529, + [SMALL_STATE(1678)] = 68537, + [SMALL_STATE(1679)] = 68547, + [SMALL_STATE(1680)] = 68555, + [SMALL_STATE(1681)] = 68563, + [SMALL_STATE(1682)] = 68571, + [SMALL_STATE(1683)] = 68579, + [SMALL_STATE(1684)] = 68589, + [SMALL_STATE(1685)] = 68599, + [SMALL_STATE(1686)] = 68609, + [SMALL_STATE(1687)] = 68619, + [SMALL_STATE(1688)] = 68629, + [SMALL_STATE(1689)] = 68639, + [SMALL_STATE(1690)] = 68647, + [SMALL_STATE(1691)] = 68657, + [SMALL_STATE(1692)] = 68665, + [SMALL_STATE(1693)] = 68673, + [SMALL_STATE(1694)] = 68683, + [SMALL_STATE(1695)] = 68693, + [SMALL_STATE(1696)] = 68701, + [SMALL_STATE(1697)] = 68711, + [SMALL_STATE(1698)] = 68721, + [SMALL_STATE(1699)] = 68729, + [SMALL_STATE(1700)] = 68737, + [SMALL_STATE(1701)] = 68745, + [SMALL_STATE(1702)] = 68753, + [SMALL_STATE(1703)] = 68763, + [SMALL_STATE(1704)] = 68773, + [SMALL_STATE(1705)] = 68783, + [SMALL_STATE(1706)] = 68791, + [SMALL_STATE(1707)] = 68801, + [SMALL_STATE(1708)] = 68811, + [SMALL_STATE(1709)] = 68819, + [SMALL_STATE(1710)] = 68827, + [SMALL_STATE(1711)] = 68837, + [SMALL_STATE(1712)] = 68845, + [SMALL_STATE(1713)] = 68853, + [SMALL_STATE(1714)] = 68863, + [SMALL_STATE(1715)] = 68871, + [SMALL_STATE(1716)] = 68881, + [SMALL_STATE(1717)] = 68889, + [SMALL_STATE(1718)] = 68899, + [SMALL_STATE(1719)] = 68909, + [SMALL_STATE(1720)] = 68919, + [SMALL_STATE(1721)] = 68927, + [SMALL_STATE(1722)] = 68935, + [SMALL_STATE(1723)] = 68945, + [SMALL_STATE(1724)] = 68953, + [SMALL_STATE(1725)] = 68961, + [SMALL_STATE(1726)] = 68971, + [SMALL_STATE(1727)] = 68981, + [SMALL_STATE(1728)] = 68989, + [SMALL_STATE(1729)] = 68999, + [SMALL_STATE(1730)] = 69007, + [SMALL_STATE(1731)] = 69017, + [SMALL_STATE(1732)] = 69025, + [SMALL_STATE(1733)] = 69033, + [SMALL_STATE(1734)] = 69041, + [SMALL_STATE(1735)] = 69049, + [SMALL_STATE(1736)] = 69059, + [SMALL_STATE(1737)] = 69069, + [SMALL_STATE(1738)] = 69079, + [SMALL_STATE(1739)] = 69089, + [SMALL_STATE(1740)] = 69099, + [SMALL_STATE(1741)] = 69109, + [SMALL_STATE(1742)] = 69119, + [SMALL_STATE(1743)] = 69129, + [SMALL_STATE(1744)] = 69137, + [SMALL_STATE(1745)] = 69145, + [SMALL_STATE(1746)] = 69155, + [SMALL_STATE(1747)] = 69165, + [SMALL_STATE(1748)] = 69173, + [SMALL_STATE(1749)] = 69183, + [SMALL_STATE(1750)] = 69191, + [SMALL_STATE(1751)] = 69199, + [SMALL_STATE(1752)] = 69207, + [SMALL_STATE(1753)] = 69215, + [SMALL_STATE(1754)] = 69223, + [SMALL_STATE(1755)] = 69231, + [SMALL_STATE(1756)] = 69241, + [SMALL_STATE(1757)] = 69249, + [SMALL_STATE(1758)] = 69257, + [SMALL_STATE(1759)] = 69267, + [SMALL_STATE(1760)] = 69277, + [SMALL_STATE(1761)] = 69285, + [SMALL_STATE(1762)] = 69293, + [SMALL_STATE(1763)] = 69303, + [SMALL_STATE(1764)] = 69313, + [SMALL_STATE(1765)] = 69321, + [SMALL_STATE(1766)] = 69329, + [SMALL_STATE(1767)] = 69339, + [SMALL_STATE(1768)] = 69349, + [SMALL_STATE(1769)] = 69357, + [SMALL_STATE(1770)] = 69367, + [SMALL_STATE(1771)] = 69377, + [SMALL_STATE(1772)] = 69385, + [SMALL_STATE(1773)] = 69395, + [SMALL_STATE(1774)] = 69403, + [SMALL_STATE(1775)] = 69411, + [SMALL_STATE(1776)] = 69421, + [SMALL_STATE(1777)] = 69429, + [SMALL_STATE(1778)] = 69437, + [SMALL_STATE(1779)] = 69445, + [SMALL_STATE(1780)] = 69455, + [SMALL_STATE(1781)] = 69465, + [SMALL_STATE(1782)] = 69475, + [SMALL_STATE(1783)] = 69485, + [SMALL_STATE(1784)] = 69495, + [SMALL_STATE(1785)] = 69505, + [SMALL_STATE(1786)] = 69513, + [SMALL_STATE(1787)] = 69523, + [SMALL_STATE(1788)] = 69533, + [SMALL_STATE(1789)] = 69543, + [SMALL_STATE(1790)] = 69553, + [SMALL_STATE(1791)] = 69561, + [SMALL_STATE(1792)] = 69569, + [SMALL_STATE(1793)] = 69579, + [SMALL_STATE(1794)] = 69589, + [SMALL_STATE(1795)] = 69599, + [SMALL_STATE(1796)] = 69609, + [SMALL_STATE(1797)] = 69619, + [SMALL_STATE(1798)] = 69629, + [SMALL_STATE(1799)] = 69639, + [SMALL_STATE(1800)] = 69647, + [SMALL_STATE(1801)] = 69657, + [SMALL_STATE(1802)] = 69667, + [SMALL_STATE(1803)] = 69677, + [SMALL_STATE(1804)] = 69687, + [SMALL_STATE(1805)] = 69695, + [SMALL_STATE(1806)] = 69703, + [SMALL_STATE(1807)] = 69711, + [SMALL_STATE(1808)] = 69719, + [SMALL_STATE(1809)] = 69729, + [SMALL_STATE(1810)] = 69737, + [SMALL_STATE(1811)] = 69747, + [SMALL_STATE(1812)] = 69757, + [SMALL_STATE(1813)] = 69765, + [SMALL_STATE(1814)] = 69775, + [SMALL_STATE(1815)] = 69785, + [SMALL_STATE(1816)] = 69793, + [SMALL_STATE(1817)] = 69803, + [SMALL_STATE(1818)] = 69813, + [SMALL_STATE(1819)] = 69823, + [SMALL_STATE(1820)] = 69831, + [SMALL_STATE(1821)] = 69841, + [SMALL_STATE(1822)] = 69851, + [SMALL_STATE(1823)] = 69861, + [SMALL_STATE(1824)] = 69871, + [SMALL_STATE(1825)] = 69881, + [SMALL_STATE(1826)] = 69891, + [SMALL_STATE(1827)] = 69901, + [SMALL_STATE(1828)] = 69909, + [SMALL_STATE(1829)] = 69917, + [SMALL_STATE(1830)] = 69925, + [SMALL_STATE(1831)] = 69935, + [SMALL_STATE(1832)] = 69943, + [SMALL_STATE(1833)] = 69953, + [SMALL_STATE(1834)] = 69963, + [SMALL_STATE(1835)] = 69973, + [SMALL_STATE(1836)] = 69983, + [SMALL_STATE(1837)] = 69991, + [SMALL_STATE(1838)] = 70001, + [SMALL_STATE(1839)] = 70011, + [SMALL_STATE(1840)] = 70019, + [SMALL_STATE(1841)] = 70029, + [SMALL_STATE(1842)] = 70037, + [SMALL_STATE(1843)] = 70047, + [SMALL_STATE(1844)] = 70057, + [SMALL_STATE(1845)] = 70064, + [SMALL_STATE(1846)] = 70071, + [SMALL_STATE(1847)] = 70078, + [SMALL_STATE(1848)] = 70085, + [SMALL_STATE(1849)] = 70092, + [SMALL_STATE(1850)] = 70099, + [SMALL_STATE(1851)] = 70106, + [SMALL_STATE(1852)] = 70113, + [SMALL_STATE(1853)] = 70120, + [SMALL_STATE(1854)] = 70127, + [SMALL_STATE(1855)] = 70134, + [SMALL_STATE(1856)] = 70141, + [SMALL_STATE(1857)] = 70148, + [SMALL_STATE(1858)] = 70155, + [SMALL_STATE(1859)] = 70162, + [SMALL_STATE(1860)] = 70169, + [SMALL_STATE(1861)] = 70176, + [SMALL_STATE(1862)] = 70183, + [SMALL_STATE(1863)] = 70190, + [SMALL_STATE(1864)] = 70197, + [SMALL_STATE(1865)] = 70204, + [SMALL_STATE(1866)] = 70211, + [SMALL_STATE(1867)] = 70218, + [SMALL_STATE(1868)] = 70225, + [SMALL_STATE(1869)] = 70232, + [SMALL_STATE(1870)] = 70239, + [SMALL_STATE(1871)] = 70246, + [SMALL_STATE(1872)] = 70253, + [SMALL_STATE(1873)] = 70260, + [SMALL_STATE(1874)] = 70267, + [SMALL_STATE(1875)] = 70274, + [SMALL_STATE(1876)] = 70281, + [SMALL_STATE(1877)] = 70288, + [SMALL_STATE(1878)] = 70295, + [SMALL_STATE(1879)] = 70302, + [SMALL_STATE(1880)] = 70309, + [SMALL_STATE(1881)] = 70316, + [SMALL_STATE(1882)] = 70323, + [SMALL_STATE(1883)] = 70330, + [SMALL_STATE(1884)] = 70337, + [SMALL_STATE(1885)] = 70344, + [SMALL_STATE(1886)] = 70351, + [SMALL_STATE(1887)] = 70358, + [SMALL_STATE(1888)] = 70365, + [SMALL_STATE(1889)] = 70372, + [SMALL_STATE(1890)] = 70379, + [SMALL_STATE(1891)] = 70386, + [SMALL_STATE(1892)] = 70393, + [SMALL_STATE(1893)] = 70400, + [SMALL_STATE(1894)] = 70407, + [SMALL_STATE(1895)] = 70414, + [SMALL_STATE(1896)] = 70421, + [SMALL_STATE(1897)] = 70428, + [SMALL_STATE(1898)] = 70435, + [SMALL_STATE(1899)] = 70442, + [SMALL_STATE(1900)] = 70449, + [SMALL_STATE(1901)] = 70456, + [SMALL_STATE(1902)] = 70463, + [SMALL_STATE(1903)] = 70470, + [SMALL_STATE(1904)] = 70477, + [SMALL_STATE(1905)] = 70484, + [SMALL_STATE(1906)] = 70491, + [SMALL_STATE(1907)] = 70498, + [SMALL_STATE(1908)] = 70505, + [SMALL_STATE(1909)] = 70512, + [SMALL_STATE(1910)] = 70519, + [SMALL_STATE(1911)] = 70526, + [SMALL_STATE(1912)] = 70533, + [SMALL_STATE(1913)] = 70540, + [SMALL_STATE(1914)] = 70547, + [SMALL_STATE(1915)] = 70554, + [SMALL_STATE(1916)] = 70561, + [SMALL_STATE(1917)] = 70568, + [SMALL_STATE(1918)] = 70575, + [SMALL_STATE(1919)] = 70582, + [SMALL_STATE(1920)] = 70589, + [SMALL_STATE(1921)] = 70596, + [SMALL_STATE(1922)] = 70603, + [SMALL_STATE(1923)] = 70610, + [SMALL_STATE(1924)] = 70617, + [SMALL_STATE(1925)] = 70624, + [SMALL_STATE(1926)] = 70631, + [SMALL_STATE(1927)] = 70638, + [SMALL_STATE(1928)] = 70645, + [SMALL_STATE(1929)] = 70652, + [SMALL_STATE(1930)] = 70659, + [SMALL_STATE(1931)] = 70666, + [SMALL_STATE(1932)] = 70673, + [SMALL_STATE(1933)] = 70680, + [SMALL_STATE(1934)] = 70687, + [SMALL_STATE(1935)] = 70694, + [SMALL_STATE(1936)] = 70701, + [SMALL_STATE(1937)] = 70708, + [SMALL_STATE(1938)] = 70715, + [SMALL_STATE(1939)] = 70722, + [SMALL_STATE(1940)] = 70729, + [SMALL_STATE(1941)] = 70736, + [SMALL_STATE(1942)] = 70743, + [SMALL_STATE(1943)] = 70750, + [SMALL_STATE(1944)] = 70757, + [SMALL_STATE(1945)] = 70764, + [SMALL_STATE(1946)] = 70771, + [SMALL_STATE(1947)] = 70778, + [SMALL_STATE(1948)] = 70785, + [SMALL_STATE(1949)] = 70792, + [SMALL_STATE(1950)] = 70799, + [SMALL_STATE(1951)] = 70806, + [SMALL_STATE(1952)] = 70813, + [SMALL_STATE(1953)] = 70820, + [SMALL_STATE(1954)] = 70827, + [SMALL_STATE(1955)] = 70834, + [SMALL_STATE(1956)] = 70841, + [SMALL_STATE(1957)] = 70848, + [SMALL_STATE(1958)] = 70855, + [SMALL_STATE(1959)] = 70862, + [SMALL_STATE(1960)] = 70869, + [SMALL_STATE(1961)] = 70876, + [SMALL_STATE(1962)] = 70883, + [SMALL_STATE(1963)] = 70890, + [SMALL_STATE(1964)] = 70897, + [SMALL_STATE(1965)] = 70904, + [SMALL_STATE(1966)] = 70911, + [SMALL_STATE(1967)] = 70918, + [SMALL_STATE(1968)] = 70925, + [SMALL_STATE(1969)] = 70932, + [SMALL_STATE(1970)] = 70939, + [SMALL_STATE(1971)] = 70946, + [SMALL_STATE(1972)] = 70953, + [SMALL_STATE(1973)] = 70960, + [SMALL_STATE(1974)] = 70967, + [SMALL_STATE(1975)] = 70974, + [SMALL_STATE(1976)] = 70981, + [SMALL_STATE(1977)] = 70988, + [SMALL_STATE(1978)] = 70995, + [SMALL_STATE(1979)] = 71002, + [SMALL_STATE(1980)] = 71009, + [SMALL_STATE(1981)] = 71016, + [SMALL_STATE(1982)] = 71023, + [SMALL_STATE(1983)] = 71030, + [SMALL_STATE(1984)] = 71037, + [SMALL_STATE(1985)] = 71044, + [SMALL_STATE(1986)] = 71051, + [SMALL_STATE(1987)] = 71058, + [SMALL_STATE(1988)] = 71065, + [SMALL_STATE(1989)] = 71072, + [SMALL_STATE(1990)] = 71079, + [SMALL_STATE(1991)] = 71086, + [SMALL_STATE(1992)] = 71093, + [SMALL_STATE(1993)] = 71100, + [SMALL_STATE(1994)] = 71107, + [SMALL_STATE(1995)] = 71114, + [SMALL_STATE(1996)] = 71121, + [SMALL_STATE(1997)] = 71128, + [SMALL_STATE(1998)] = 71135, + [SMALL_STATE(1999)] = 71142, + [SMALL_STATE(2000)] = 71149, + [SMALL_STATE(2001)] = 71156, + [SMALL_STATE(2002)] = 71163, + [SMALL_STATE(2003)] = 71170, + [SMALL_STATE(2004)] = 71177, + [SMALL_STATE(2005)] = 71184, + [SMALL_STATE(2006)] = 71191, + [SMALL_STATE(2007)] = 71198, + [SMALL_STATE(2008)] = 71205, + [SMALL_STATE(2009)] = 71212, + [SMALL_STATE(2010)] = 71219, + [SMALL_STATE(2011)] = 71226, + [SMALL_STATE(2012)] = 71233, + [SMALL_STATE(2013)] = 71240, + [SMALL_STATE(2014)] = 71247, + [SMALL_STATE(2015)] = 71254, + [SMALL_STATE(2016)] = 71261, + [SMALL_STATE(2017)] = 71268, + [SMALL_STATE(2018)] = 71275, + [SMALL_STATE(2019)] = 71282, + [SMALL_STATE(2020)] = 71289, + [SMALL_STATE(2021)] = 71296, + [SMALL_STATE(2022)] = 71303, + [SMALL_STATE(2023)] = 71310, + [SMALL_STATE(2024)] = 71317, + [SMALL_STATE(2025)] = 71324, + [SMALL_STATE(2026)] = 71331, + [SMALL_STATE(2027)] = 71338, + [SMALL_STATE(2028)] = 71345, + [SMALL_STATE(2029)] = 71352, + [SMALL_STATE(2030)] = 71359, + [SMALL_STATE(2031)] = 71366, + [SMALL_STATE(2032)] = 71373, + [SMALL_STATE(2033)] = 71380, + [SMALL_STATE(2034)] = 71387, + [SMALL_STATE(2035)] = 71394, + [SMALL_STATE(2036)] = 71401, + [SMALL_STATE(2037)] = 71408, + [SMALL_STATE(2038)] = 71415, + [SMALL_STATE(2039)] = 71422, + [SMALL_STATE(2040)] = 71429, + [SMALL_STATE(2041)] = 71436, + [SMALL_STATE(2042)] = 71443, + [SMALL_STATE(2043)] = 71450, + [SMALL_STATE(2044)] = 71457, + [SMALL_STATE(2045)] = 71464, + [SMALL_STATE(2046)] = 71471, + [SMALL_STATE(2047)] = 71478, + [SMALL_STATE(2048)] = 71485, + [SMALL_STATE(2049)] = 71492, + [SMALL_STATE(2050)] = 71499, + [SMALL_STATE(2051)] = 71506, + [SMALL_STATE(2052)] = 71513, + [SMALL_STATE(2053)] = 71520, + [SMALL_STATE(2054)] = 71527, + [SMALL_STATE(2055)] = 71534, + [SMALL_STATE(2056)] = 71541, + [SMALL_STATE(2057)] = 71548, + [SMALL_STATE(2058)] = 71555, + [SMALL_STATE(2059)] = 71562, + [SMALL_STATE(2060)] = 71569, + [SMALL_STATE(2061)] = 71576, + [SMALL_STATE(2062)] = 71583, + [SMALL_STATE(2063)] = 71590, + [SMALL_STATE(2064)] = 71597, + [SMALL_STATE(2065)] = 71604, + [SMALL_STATE(2066)] = 71611, + [SMALL_STATE(2067)] = 71618, + [SMALL_STATE(2068)] = 71625, + [SMALL_STATE(2069)] = 71632, + [SMALL_STATE(2070)] = 71639, + [SMALL_STATE(2071)] = 71646, + [SMALL_STATE(2072)] = 71653, + [SMALL_STATE(2073)] = 71660, + [SMALL_STATE(2074)] = 71667, + [SMALL_STATE(2075)] = 71674, + [SMALL_STATE(2076)] = 71681, + [SMALL_STATE(2077)] = 71688, + [SMALL_STATE(2078)] = 71695, + [SMALL_STATE(2079)] = 71702, + [SMALL_STATE(2080)] = 71709, + [SMALL_STATE(2081)] = 71716, + [SMALL_STATE(2082)] = 71723, + [SMALL_STATE(2083)] = 71730, + [SMALL_STATE(2084)] = 71737, + [SMALL_STATE(2085)] = 71744, + [SMALL_STATE(2086)] = 71751, + [SMALL_STATE(2087)] = 71758, + [SMALL_STATE(2088)] = 71765, + [SMALL_STATE(2089)] = 71772, + [SMALL_STATE(2090)] = 71779, + [SMALL_STATE(2091)] = 71786, + [SMALL_STATE(2092)] = 71793, + [SMALL_STATE(2093)] = 71800, + [SMALL_STATE(2094)] = 71807, + [SMALL_STATE(2095)] = 71814, + [SMALL_STATE(2096)] = 71821, + [SMALL_STATE(2097)] = 71828, + [SMALL_STATE(2098)] = 71835, + [SMALL_STATE(2099)] = 71842, + [SMALL_STATE(2100)] = 71849, + [SMALL_STATE(2101)] = 71856, + [SMALL_STATE(2102)] = 71863, + [SMALL_STATE(2103)] = 71870, + [SMALL_STATE(2104)] = 71877, + [SMALL_STATE(2105)] = 71884, + [SMALL_STATE(2106)] = 71891, + [SMALL_STATE(2107)] = 71898, + [SMALL_STATE(2108)] = 71905, + [SMALL_STATE(2109)] = 71912, + [SMALL_STATE(2110)] = 71919, + [SMALL_STATE(2111)] = 71926, + [SMALL_STATE(2112)] = 71933, + [SMALL_STATE(2113)] = 71940, + [SMALL_STATE(2114)] = 71947, + [SMALL_STATE(2115)] = 71954, + [SMALL_STATE(2116)] = 71961, + [SMALL_STATE(2117)] = 71968, + [SMALL_STATE(2118)] = 71975, + [SMALL_STATE(2119)] = 71982, + [SMALL_STATE(2120)] = 71989, + [SMALL_STATE(2121)] = 71996, + [SMALL_STATE(2122)] = 72003, + [SMALL_STATE(2123)] = 72010, + [SMALL_STATE(2124)] = 72017, + [SMALL_STATE(2125)] = 72024, + [SMALL_STATE(2126)] = 72031, + [SMALL_STATE(2127)] = 72038, + [SMALL_STATE(2128)] = 72045, + [SMALL_STATE(2129)] = 72052, + [SMALL_STATE(2130)] = 72059, + [SMALL_STATE(2131)] = 72066, + [SMALL_STATE(2132)] = 72073, + [SMALL_STATE(2133)] = 72080, + [SMALL_STATE(2134)] = 72087, + [SMALL_STATE(2135)] = 72094, + [SMALL_STATE(2136)] = 72101, + [SMALL_STATE(2137)] = 72108, + [SMALL_STATE(2138)] = 72115, + [SMALL_STATE(2139)] = 72122, + [SMALL_STATE(2140)] = 72129, + [SMALL_STATE(2141)] = 72136, + [SMALL_STATE(2142)] = 72143, + [SMALL_STATE(2143)] = 72150, + [SMALL_STATE(2144)] = 72157, + [SMALL_STATE(2145)] = 72164, + [SMALL_STATE(2146)] = 72171, + [SMALL_STATE(2147)] = 72178, + [SMALL_STATE(2148)] = 72185, + [SMALL_STATE(2149)] = 72192, + [SMALL_STATE(2150)] = 72199, + [SMALL_STATE(2151)] = 72206, + [SMALL_STATE(2152)] = 72213, + [SMALL_STATE(2153)] = 72220, + [SMALL_STATE(2154)] = 72227, + [SMALL_STATE(2155)] = 72234, + [SMALL_STATE(2156)] = 72241, + [SMALL_STATE(2157)] = 72248, + [SMALL_STATE(2158)] = 72255, + [SMALL_STATE(2159)] = 72262, + [SMALL_STATE(2160)] = 72269, + [SMALL_STATE(2161)] = 72276, + [SMALL_STATE(2162)] = 72283, + [SMALL_STATE(2163)] = 72290, + [SMALL_STATE(2164)] = 72297, + [SMALL_STATE(2165)] = 72304, + [SMALL_STATE(2166)] = 72311, + [SMALL_STATE(2167)] = 72318, + [SMALL_STATE(2168)] = 72325, + [SMALL_STATE(2169)] = 72332, + [SMALL_STATE(2170)] = 72339, + [SMALL_STATE(2171)] = 72346, + [SMALL_STATE(2172)] = 72353, + [SMALL_STATE(2173)] = 72360, + [SMALL_STATE(2174)] = 72367, + [SMALL_STATE(2175)] = 72374, + [SMALL_STATE(2176)] = 72381, + [SMALL_STATE(2177)] = 72388, + [SMALL_STATE(2178)] = 72395, + [SMALL_STATE(2179)] = 72402, + [SMALL_STATE(2180)] = 72409, + [SMALL_STATE(2181)] = 72416, + [SMALL_STATE(2182)] = 72423, + [SMALL_STATE(2183)] = 72430, + [SMALL_STATE(2184)] = 72437, + [SMALL_STATE(2185)] = 72444, + [SMALL_STATE(2186)] = 72451, + [SMALL_STATE(2187)] = 72458, + [SMALL_STATE(2188)] = 72465, + [SMALL_STATE(2189)] = 72472, + [SMALL_STATE(2190)] = 72479, + [SMALL_STATE(2191)] = 72486, + [SMALL_STATE(2192)] = 72493, + [SMALL_STATE(2193)] = 72500, + [SMALL_STATE(2194)] = 72507, + [SMALL_STATE(2195)] = 72514, + [SMALL_STATE(2196)] = 72521, + [SMALL_STATE(2197)] = 72528, + [SMALL_STATE(2198)] = 72535, + [SMALL_STATE(2199)] = 72542, + [SMALL_STATE(2200)] = 72549, + [SMALL_STATE(2201)] = 72556, + [SMALL_STATE(2202)] = 72563, + [SMALL_STATE(2203)] = 72570, + [SMALL_STATE(2204)] = 72577, + [SMALL_STATE(2205)] = 72584, + [SMALL_STATE(2206)] = 72591, + [SMALL_STATE(2207)] = 72598, + [SMALL_STATE(2208)] = 72605, + [SMALL_STATE(2209)] = 72612, + [SMALL_STATE(2210)] = 72619, + [SMALL_STATE(2211)] = 72626, + [SMALL_STATE(2212)] = 72633, + [SMALL_STATE(2213)] = 72640, + [SMALL_STATE(2214)] = 72647, + [SMALL_STATE(2215)] = 72654, + [SMALL_STATE(2216)] = 72661, + [SMALL_STATE(2217)] = 72668, + [SMALL_STATE(2218)] = 72675, + [SMALL_STATE(2219)] = 72682, + [SMALL_STATE(2220)] = 72689, + [SMALL_STATE(2221)] = 72696, + [SMALL_STATE(2222)] = 72703, + [SMALL_STATE(2223)] = 72710, + [SMALL_STATE(2224)] = 72717, + [SMALL_STATE(2225)] = 72724, + [SMALL_STATE(2226)] = 72731, + [SMALL_STATE(2227)] = 72738, + [SMALL_STATE(2228)] = 72745, + [SMALL_STATE(2229)] = 72752, + [SMALL_STATE(2230)] = 72759, + [SMALL_STATE(2231)] = 72766, + [SMALL_STATE(2232)] = 72773, + [SMALL_STATE(2233)] = 72780, + [SMALL_STATE(2234)] = 72787, + [SMALL_STATE(2235)] = 72794, + [SMALL_STATE(2236)] = 72801, + [SMALL_STATE(2237)] = 72808, + [SMALL_STATE(2238)] = 72815, + [SMALL_STATE(2239)] = 72822, + [SMALL_STATE(2240)] = 72829, + [SMALL_STATE(2241)] = 72836, + [SMALL_STATE(2242)] = 72843, + [SMALL_STATE(2243)] = 72850, + [SMALL_STATE(2244)] = 72857, + [SMALL_STATE(2245)] = 72864, + [SMALL_STATE(2246)] = 72871, + [SMALL_STATE(2247)] = 72878, + [SMALL_STATE(2248)] = 72885, + [SMALL_STATE(2249)] = 72892, + [SMALL_STATE(2250)] = 72899, + [SMALL_STATE(2251)] = 72906, + [SMALL_STATE(2252)] = 72913, + [SMALL_STATE(2253)] = 72920, + [SMALL_STATE(2254)] = 72927, + [SMALL_STATE(2255)] = 72934, + [SMALL_STATE(2256)] = 72941, + [SMALL_STATE(2257)] = 72948, + [SMALL_STATE(2258)] = 72955, + [SMALL_STATE(2259)] = 72962, + [SMALL_STATE(2260)] = 72969, + [SMALL_STATE(2261)] = 72976, + [SMALL_STATE(2262)] = 72983, + [SMALL_STATE(2263)] = 72990, + [SMALL_STATE(2264)] = 72997, + [SMALL_STATE(2265)] = 73004, + [SMALL_STATE(2266)] = 73011, + [SMALL_STATE(2267)] = 73018, + [SMALL_STATE(2268)] = 73025, + [SMALL_STATE(2269)] = 73032, + [SMALL_STATE(2270)] = 73039, + [SMALL_STATE(2271)] = 73046, + [SMALL_STATE(2272)] = 73053, + [SMALL_STATE(2273)] = 73060, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -92809,2095 +82574,2201 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), [31] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [35] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 2), - [43] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 2), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), - [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), - [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_length, 3), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_length, 3), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 3), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 5), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_repeat1, 2), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2004), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), - [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2174), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1825), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1780), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1023), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2390), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1579), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2387), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2386), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1452), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1580), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1581), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1994), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(851), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1924), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1986), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1413), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(738), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(699), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(693), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(411), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1050), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), - [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 4), - [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 4), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 5), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 5), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), - [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 3), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 3), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2048), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2102), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2233), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2249), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2222), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2026), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2198), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2150), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2126), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1825), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1780), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1023), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2390), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1579), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2387), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1580), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1581), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(411), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [35] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [45] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 2), + [51] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 2), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(894), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(873), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(896), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(657), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(657), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(894), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(873), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(92), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(891), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(891), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(886), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1189), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(894), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(873), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(896), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(657), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(657), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(894), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(873), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(92), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(891), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(891), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(886), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1189), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(894), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(873), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(896), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(657), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(657), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(894), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(873), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(92), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(891), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(891), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(886), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1189), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(896), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(716), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(716), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(102), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1175), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(896), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(716), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(716), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(102), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1175), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(896), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(716), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(716), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(102), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1175), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 3), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_length, 3), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_length, 3), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precision, 5), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_repeat1, 2), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1862), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2020), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(655), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(655), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(241), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1222), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(676), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(676), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(279), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(279), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1203), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 1), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(676), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(676), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(279), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(279), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1203), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(676), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(676), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(279), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(279), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1203), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(655), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(655), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(241), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1222), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(655), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(655), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(241), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1222), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(665), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(665), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(306), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1199), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interval_fields, 3), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 3), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 5), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 5), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(665), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(665), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(306), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1199), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(665), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(665), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(306), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1199), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 4), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 4), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 4), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 4), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1770), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1840), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(841), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2235), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1446), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2231), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2230), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1415), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1447), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1449), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1710), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1715), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1717), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1266), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(708), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(637), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(617), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(368), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(878), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 3), + [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 3), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_null, 1), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_null, 1), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_constructor, 3), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_constructor, 3), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(678), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(678), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(341), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1168), + [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(668), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(668), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(342), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(342), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1215), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(678), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(678), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(341), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1168), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(668), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(668), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(342), + [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(342), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1215), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(678), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(678), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(341), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1168), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(668), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(668), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(342), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(342), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1215), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(705), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(705), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(417), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(417), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1207), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(705), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(705), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(417), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(417), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1207), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_column_constraint_ty, 2), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(664), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(664), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(384), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1198), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(705), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(705), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(417), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(417), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1207), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(664), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(664), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(384), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1198), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(664), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(664), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(384), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1198), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1894), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1948), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2079), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1930), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_select_statement, 1), SHIFT(1465), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2068), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_select_statement, 2), SHIFT(1465), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1864), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2044), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(707), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(707), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(552), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(552), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1166), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(707), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(707), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(552), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(552), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1166), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(707), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(707), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(552), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(552), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1166), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(713), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(713), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(558), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 2), SHIFT(558), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 2), SHIFT(1230), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value_expression, 4), REDUCE(sym_select_group_by, 6), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value_expression, 3), REDUCE(sym_select_group_by, 5), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(713), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(713), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(558), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_time_expression, 5), SHIFT(558), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_time_expression, 5), SHIFT(1230), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(713), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(713), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(558), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_op_expression, 3), SHIFT(558), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_op_expression, 3), SHIFT(1230), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1996), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1972), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1770), + [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1840), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(841), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1446), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2230), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1415), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1447), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1449), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(368), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1383), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2318), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1943), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2091), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1941), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1341), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2090), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1897), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1996), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1686), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1989), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2034), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2032), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1983), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2028), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1171), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2023), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1374), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2330), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1328), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2273), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1369), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2306), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1788), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(753), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1089), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2176), - [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2161), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2160), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1906), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1908), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(716), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2077), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1214), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(767), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1362), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2293), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(726), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(710), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1236), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1251), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(707), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 5), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 3), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, .production_id = 1), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1431), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1434), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1242), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(1812), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1253), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 5), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 2), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 1), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1646), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 3), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 4), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(843), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1266), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 3), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 2), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(743), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(717), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1405), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 3), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1849), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1807), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(706), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1272), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1518), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1772), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 5), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 1), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 3), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1940), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(697), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1956), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1304), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), SHIFT_REPEAT(695), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1554), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1770), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1695), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1538), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1319), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(1155), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1288), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), - [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1530), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 2), SHIFT(1465), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 3), SHIFT(1465), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 4), SHIFT(1465), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1204), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(2167), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1799), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1888), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1810), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1204), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(2167), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1799), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1888), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1810), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1204), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2167), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1799), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1888), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1810), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 5), SHIFT(1465), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 6), SHIFT(1465), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1163), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1901), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1163), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1901), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1163), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1901), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1194), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2180), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1672), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1637), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1606), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1664), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1987), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1985), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1671), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1983), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1026), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1942), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1194), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(2180), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1194), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(2180), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 7), SHIFT(1465), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1191), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2119), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1191), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(2119), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1191), + [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(2119), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 8), SHIFT(1465), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(699), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(946), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1989), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1991), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1993), + [2472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1662), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1660), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1161), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(2154), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1161), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(2154), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), + [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1720), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1161), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2154), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 1), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(629), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1923), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1069), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 9), SHIFT(1465), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1219), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2140), + [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(663), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(635), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(1219), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 1), SHIFT(2140), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(1219), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_from_item, 2), SHIFT(2140), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 10), SHIFT(1465), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(647), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1105), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(646), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1084), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, .production_id = 1), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 5), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1237), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1116), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1236), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(1725), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1059), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(686), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 4), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1085), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 3), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_select_statement, 11), SHIFT(1465), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 5), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1525), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 3), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 2), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 1), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1280), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 2), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(621), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 3), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning, 3), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 2), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(675), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 5), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 3), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1524), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 6), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 1), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 5), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1141), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1832), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 4), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1388), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(627), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 1), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 3), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10, .production_id = 5), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 6), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 4), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 6), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 7), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4205] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 3), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1834), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_type_statement_repeat1, 2), SHIFT_REPEAT(1802), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1441), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1153), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1635), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(615), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1384), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(1226), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), SHIFT_REPEAT(1131), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_item_repeat1, 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(978), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), SHIFT_REPEAT(616), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1332), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1367), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1558), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 1), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9, .production_id = 3), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10, .production_id = 5), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 13), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 5), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 6), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 4), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 6), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 7), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 11), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4617] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), }; #ifdef __cplusplus diff --git a/test/corpus/alter_table_statement.txt b/test/corpus/alter_table_statement.txt index ab9a56c..7f90280 100644 --- a/test/corpus/alter_table_statement.txt +++ b/test/corpus/alter_table_statement.txt @@ -223,7 +223,13 @@ alter table foo add constraint u_bar unique(bar); (table_constraint (identifier) (table_constraint_ty - (identifier))))))) + (identifier) + ) + ) + ) + ) + ) +) ================================================================================ column drop constraint