diff --git a/grammar.js b/grammar.js index 95602f4..270f645 100644 --- a/grammar.js +++ b/grammar.js @@ -1,1087 +1,73 @@ -function kw(word) { - let pattern = Array.from(word).reduce( - (acc, letter) => acc + `[${letter}${letter.toUpperCase()}]`, - "" - ); - return new RegExp(pattern); -} - -function separated(separator, rule) { - return optional(separated1(separator, rule)); -} - -function separated1(separator, rule) { - return seq(rule, repeat(seq(separator, rule))); -} - -function commaSep1(rule) { - return separated1(",", rule); -} - -function commaSep(rule) { - return optional(commaSep1(rule)); -} - module.exports = grammar({ name: "plpgsql", - // NOTE(chrde): https://github.com/tree-sitter/tree-sitter-javascript/blob/1ddbf1588c353edab37791cdcc9f17e56fb4ea73/grammar.js#L9 - extras: ($) => [$.comment, /[\s\uFEFF\u2060\u200B\u00A0]/], + + extras: ($) => [/\s\n/, /\s/, $.comment, $.marginalia], + + word: ($) => $._identifier, rules: { - source_file: ($) => - repeat(choice($.psql_statement, seq($._statement, ";"))), + source_file: ($) => repeat(choice($.statement)), - _statement: ($) => - choice( - $.psql_statement, - $.create_function_statement, - $.drop_function_statement, - $.drop_type_statement, - $.create_table_statement, - $.create_schema_statement, - $.create_type_statement, - $.select_statement, - $.insert_statement, - $.delete_statement, - $.update_statement, - $.grant_statement, - $.create_trigger_statement, - $.create_sequence_statement, - $.create_index_statement, - $.alter_table_statement, - $.do_block - ), + statement: ($) => seq(optional($._ddl_statement), ";"), - drop_type_statement: ($) => + _ddl_statement: ($) => choice($._create_statement), + + _create_statement: ($) => choice($.create_table), + + // References: https://www.postgresql.org/docs/15/sql-createtable.html + create_table: ($) => seq( - kw("drop"), - kw("type"), - optional($.if_exists), - commaSep1($.identifier), - optional(choice(kw("cascade"), kw("restrict"))) + $.keyword_create, + optional(choice($.keyword_temporary, $.keyword_unlogged)), + $.keyword_table, + optional($._if_not_exists), + $.table_reference, + $.column_definitions ), - update_statement: ($) => + table_reference: ($) => seq( - optional($.with_query), - kw("update"), - $.identifier, - optional(seq(optional(kw("as")), $.identifier)), - kw("set"), - commaSep1($.update_set), - optional(seq(kw("from"), commaSep1($.from_item))), - optional($.where_filter), - optional($.returning) + optional(seq(field("schema", $.identifier), ".")), + field("name", $.identifier) ), - drop_function_statement: ($) => + column_definitions: ($) => seq( - kw("drop"), - kw("function"), - commaSep1($.drop_function_item), - optional(choice(kw("cascade"), kw("restrict"))) - ), - - drop_function_item: ($) => - seq( - optional($.if_exists), - $.identifier, - optional(seq("(", commaSep(choice($.var_declaration, $._type)), ")")) - ), - - create_type_statement: ($) => - seq( - kw("create"), - kw("type"), - $.identifier, - optional( - choice( - seq(kw("as"), kw("enum"), "(", commaSep1($.string), ")"), - seq(kw("as"), "(", commaSep1($.var_declaration), ")") - ) - ) - ), - - // TODO(chrde): values - _with_query_statement: ($) => - choice( - $.select_statement, - $.insert_statement, - $.delete_statement, - $.update_statement - ), - - insert_statement: ($) => - seq( - optional($.with_query), - kw("insert"), - kw("into"), - $.identifier, - optional($.as), - optional(alias($._list_of_identifiers, $.columns)), - $.insert_items, - optional($.insert_conflict), - optional($.returning), - optional($.into) - ), - - insert_items: ($) => - choice( - seq(kw("default"), kw("values")), - seq(kw("values"), commaSep1($.insert_values)), - $.select_statement, - seq("(", $.select_statement, ")") - ), - - insert_values: ($) => seq("(", commaSep($.insert_item), ")"), - - insert_item: ($) => choice(kw("default"), $._value_expression), - - insert_conflict: ($) => - choice( - seq( - kw("on"), - kw("conflict"), - optional($.conflict_target), - kw("do"), - kw("nothing") - ), - seq( - kw("on"), - kw("conflict"), - $.conflict_target, - kw("do"), - kw("update"), - kw("set"), - commaSep1($.update_set), - optional($.where_filter) - ) - ), - - conflict_target: ($) => - choice( - seq(kw("on"), kw("constraint"), $.identifier), - seq("(", commaSep($._value_expression), ")") - ), - - update_set: ($) => - choice( - seq($.identifier, "=", $.update_value), - seq( - $._list_of_identifiers, - "=", - optional(kw("row")), - "(", - commaSep1($.update_value), - ")" - ) - ), - - update_value: ($) => choice(kw("default"), $._value_expression), - - returning: ($) => seq(kw("returning"), commaSep1($.select_item)), - - create_table_statement: ($) => - seq( - kw("create"), - optional($.temporary), - optional($.unlogged), - kw("table"), - optional($.if_not_exists), - $.identifier, "(", - commaSep($.create_table_item), + optional(commaSepRepeat1(choice($.column_definition /*$.constraint*/))), ")" ), - create_table_item: ($) => choice($.table_column_item, $.table_constraint), + column_definition: ($) => seq(field("name", $.identifier)), - create_schema_statement: ($) => - seq( - kw("create"), - kw("schema"), - optional($.if_not_exists), - choice(seq($.identifier, optional($.schema_role)), $.schema_role) - ), + //constraint: $ => seq(), - schema_role: ($) => - seq( - kw("authorization"), - choice($.identifier, kw("current_user"), kw("session_user")) - ), + // keywords + keyword_create: (_) => mkKeyword("create"), + keyword_table: (_) => mkKeyword("table"), + keyword_temporary: (_) => choice(mkKeyword("temporary"), mkKeyword("temp")), + keyword_unlogged: (_) => mkKeyword("unlogged"), + keyword_if: (_) => mkKeyword("if"), + keyword_not: (_) => mkKeyword("not"), + keyword_exists: (_) => mkKeyword("exists"), - create_index_statement: ($) => - seq( - kw("create"), - optional(kw("unique")), - kw("index"), - optional(kw("concurrently")), - optional($.if_not_exists), - optional($.identifier), - kw("on"), - $.identifier, - optional($.index_using), - "(", - commaSep1($.index_col), - ")", - optional($.index_includes), - optional($.where_filter) - ), + _if_not_exists: ($) => seq($.keyword_if, $.keyword_not, $.keyword_exists), + // ------- - index_using: ($) => seq(kw("using"), $.identifier), + comment: (_) => seq("--", /.*\n/), + // https://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment + marginalia: (_) => seq("/*", /[^*]*\*+(?:[^/*][^*]*\*+)*/, "/"), - index_col: ($) => - choice( - seq( - $.identifier, - optional($.index_col_dir), - optional($.index_col_nulls) - ), - seq( - "(", - $._value_expression, - ")", - optional($.index_col_dir), - optional($.index_col_nulls) - ) - ), + identifier: ($) => choice($._identifier, seq('"', $._identifier, '"')), - index_col_dir: ($) => choice(kw("asc"), kw("desc")), - - index_col_nulls: ($) => - choice(seq(kw("nulls"), kw("first")), seq(kw("nulls"), kw("last"))), - - index_includes: ($) => seq(kw("include"), $._list_of_identifiers), - - delete_statement: ($) => - seq( - optional($.with_query), - kw("delete"), - kw("from"), - $.identifier, - optional(kw("as")), - optional($.identifier), - optional($.delete_using), - optional($.where_filter), - optional(seq(kw("returning"), commaSep1($.select_item))), - optional($.into) - ), - - delete_using: ($) => seq(kw("using"), commaSep1($.from_item)), - - alter_table_statement: ($) => - seq( - kw("alter"), - kw("table"), - optional($.if_exists), - $.identifier, - $.alter_table_change - ), - - alter_table_change: ($) => - choice( - commaSep1($.alter_table_action), - $.alter_table_rename_column, - $.alter_table_rename_constraint, - $.alter_table_rename_table, - $.alter_table_change_schema - ), - - alter_table_action: ($) => - choice( - seq(kw("add"), $.table_constraint), - seq( - kw("add"), - optional(kw("column")), - optional($.if_not_exists), - $.table_column_item - ), - seq( - kw("drop"), - kw("constraint"), - optional($.if_exists), - $.identifier, - optional($.alter_table_fk_ref_action) - ), - seq( - kw("drop"), - optional(kw("column")), - optional($.if_exists), - $.identifier, - optional($.alter_table_fk_ref_action) - ), - seq( - kw("alter"), - optional(kw("column")), - $.identifier, - optional($.alter_column_action) - ) - ), - - alter_column_action: ($) => - choice( - seq(kw("set"), kw("default"), $._value_expression), - seq(kw("drop"), kw("default")), - seq(kw("set"), kw("not"), kw("null")), - seq(kw("drop"), kw("not"), kw("null")), - seq(kw("type"), $.alter_column_type), - seq(kw("set"), kw("data"), kw("type"), $.alter_column_type) - ), - - table_constraint: ($) => - seq( - optional(seq(kw("constraint"), $.identifier)), - $.table_constraint_ty, - optional($.constraint_when) - ), - - constraint_when: ($) => - seq( - kw("deferrable"), - optional(seq(kw("initially"), choice(kw("immediate"), kw("deferred")))) - ), - - table_constraint_ty: ($) => - choice( - seq(kw("check"), "(", $._value_expression, ")"), - seq(kw("unique"), $._list_of_identifiers), - seq(kw("primary"), kw("key"), $._list_of_identifiers), - seq( - kw("foreign"), - kw("key"), - $._list_of_identifiers, - $.constraint_foreign_key - ) - ), - - constraint_foreign_key: ($) => - seq( - kw("references"), - $.identifier, - optional($._list_of_identifiers), - repeat($.fk_action) - ), - - fk_action: ($) => - choice( - seq(kw("on"), kw("delete"), $.fk_ref_action), - seq(kw("on"), kw("update"), $.fk_ref_action) - ), - - fk_ref_action: ($) => - choice( - seq(kw("no"), kw("action")), - kw("restrict"), - kw("cascade"), - seq(kw("set"), kw("null")), - seq(kw("set"), kw("default")) - ), - - alter_column_type: ($) => - seq($._type, optional(seq(kw("using"), $._value_expression))), - alter_table_fk_ref_action: ($) => choice(kw("restrict"), kw("cascade")), - table_column_item: ($) => - seq($.identifier, $._type, repeat($.column_constraint)), - - column_constraint: ($) => - choice( - seq( - kw("constraint"), - $.identifier, - $.column_constraint_ty, - optional($.constraint_when) - ), - seq($.column_constraint_ty, optional($.constraint_when)) - ), - - column_constraint_ty: ($) => - choice( - seq(kw("not"), kw("null")), - kw("null"), - seq(kw("check"), "(", $._value_expression, ")"), - seq(kw("default"), $._value_expression), - kw("unique"), - seq(kw("primary"), kw("key")), - $.constraint_foreign_key - ), - - alter_table_rename_column: ($) => - seq( - kw("rename"), - optional(kw("column")), - $.identifier, - kw("to"), - $.identifier - ), - alter_table_rename_constraint: ($) => - seq(kw("rename"), kw("constraint"), $.identifier, kw("to"), $.identifier), - alter_table_rename_table: ($) => seq(kw("rename"), kw("to"), $.identifier), - alter_table_change_schema: ($) => - seq(kw("set"), kw("schema"), $.identifier), - - grant_statement: ($) => - seq( - kw("grant"), - $.grant_privileges, - kw("on"), - $.grant_targets, - kw("to"), - $.grant_roles - ), - - grant_roles: ($) => - commaSep1( - choice( - kw("public"), - kw("current_user"), - kw("session_user"), - seq(optional(kw("group")), $.identifier) - ) - ), - - grant_privileges: ($) => - choice( - seq(kw("all"), optional(kw("privileges"))), - commaSep1($.identifier) - ), - - grant_targets: ($) => - choice( - seq( - kw("all"), - choice(kw("tables"), kw("sequences"), kw("functions")), - kw("in"), - kw("schema"), - $.identifier - ), - seq(kw("sequence"), commaSep1($.identifier)), - seq(optional(kw("table")), commaSep1($.identifier)), - seq(kw("schema"), commaSep1($.identifier)), - seq( - choice(kw("function"), kw("procedure"), kw("routine")), - commaSep1($.grant_function) - ) - ), - - grant_function: ($) => - seq( - $.identifier, - "(", - commaSep1(seq(optional($.identifier), $._type)), - ")" - ), - - grant_all_in_schema: ($) => seq(kw("in"), kw("schema")), - - psql_statement: ($) => seq("\\", repeat1($.identifier), /[\n\r]/), - - create_sequence_statement: ($) => - seq( - kw("create"), - optional($.temporary), - kw("sequence"), - optional($.if_not_exists), - $.identifier, - repeat( - choice( - $.as, - $.sequence_increment, - $.sequence_min, - $.sequence_max, - $.sequence_start, - $.sequence_cache, - $.sequence_cycle, - $.sequence_owned - ) - ) - ), - - sequence_increment: ($) => - seq(kw("increment"), optional(kw("by")), $.number), - - sequence_min: ($) => - choice(seq(kw("no"), kw("minvalue")), seq(kw("minvalue"), $.number)), - - sequence_max: ($) => - choice(seq(kw("no"), kw("maxvalue")), seq(kw("maxvalue"), $.number)), - - sequence_start: ($) => seq(kw("start"), optional(kw("with")), $.number), - - sequence_cache: ($) => seq(kw("cache"), $.number), - - sequence_cycle: ($) => seq(optional(kw("no")), kw("cycle")), - - sequence_owned: ($) => - seq(kw("owned"), kw("by"), choice(kw("none"), $.identifier)), - - create_trigger_statement: ($) => - seq( - kw("create"), - optional(kw("constraint")), - kw("trigger"), - $.identifier, - $.trigger_when, - $.trigger_event, - kw("on"), - $.identifier, - optional($.trigger_scope), - optional($.trigger_cond), - $.trigger_exec - ), - - trigger_when: ($) => choice(kw("before"), kw("after"), kw("instead of")), - - trigger_event: ($) => - separated1( - kw("or"), - choice(kw("insert"), kw("update"), kw("delete"), kw("truncate")) - ), - - trigger_scope: ($) => - seq( - optional(seq(kw("for"), optional(kw("each")))), - choice(kw("statement"), kw("row")) - ), - - trigger_exec: ($) => - seq( - kw("execute"), - optional(choice(kw("procedure"), kw("function"))), - $.function_call - ), - - trigger_cond: ($) => seq(kw("when"), "(", $._value_expression, ")"), - - _plpgsql_statement: ($) => - seq( - choice( - $._statement, - $.assign_statement, - $.get_diagnostics_statement, - $.open_cursor_statement, - $.return_statement, - $.raise_statement, - $.if_statement, - $.for_statement, - $.execute_statement, - $.perform_statement - ), - ";" - ), - - open_cursor_statement: ($) => - seq( - kw("open"), - $.identifier, - kw("for"), - choice($.select_statement, $.execute_statement) - ), - - get_diagnostics_statement: ($) => - seq( - kw("get"), - optional(kw("current")), - kw("diagnostics"), - $.assign_statement - ), - - for_statement: ($) => - seq( - kw("for"), - commaSep1($.identifier), - kw("in"), - choice( - seq( - optional(kw("reverse")), - $._value_expression, - "..", - $._value_expression, - optional(seq(kw("by"), $._value_expression)) - ), - $.select_statement, - $.execute_statement - ), - kw("loop"), - repeat($._plpgsql_statement), - kw("end"), - kw("loop") - ), - - // TODO(chrde): https://www.postgresql.org/docs/13/plpgsql-errors-and-messages.html - raise_statement: ($) => - seq( - kw("raise"), - optional( - seq( - optional($.identifier), - $.string, - optional(seq(",", commaSep($._value_expression))) - ) - ) - ), - - if_statement: ($) => - seq( - kw("if"), - $._value_expression, - kw("then"), - repeat1($._plpgsql_statement), - repeat( - seq( - choice(kw("elsif"), kw("elseif")), - $._value_expression, - kw("then"), - repeat1($._plpgsql_statement) - ) - ), - optional(seq(kw("else"), repeat1($._plpgsql_statement))), - kw("end"), - kw("if") - ), - - execute_statement: ($) => - seq( - kw("execute"), - $._value_expression, - optional($.into), - optional($.execute_using) - ), - execute_using: ($) => seq(kw("using"), commaSep1($._value_expression)), - assign_statement: ($) => - seq($.identifier, choice("=", ":="), $._value_expression), - return_statement: ($) => - seq( - kw("return"), - choice( - seq(kw("query"), $.select_statement), - seq(kw("query"), $.execute_statement), - $._value_expression - ) - ), - perform_statement: ($) => seq(kw("perform"), commaSep($.select_item)), - - 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) - ) - ), - - with_query: ($) => seq(kw("with"), commaSep1($.with_query_item)), - - with_query_item: ($) => - seq( - $.identifier, - optional($._list_of_identifiers), - kw("as"), - optional( - choice(kw("materialized"), seq(kw("not"), kw("materialized"))) - ), - "(", - $._with_query_statement, - ")" - ), - - into: ($) => - seq(kw("into"), optional(kw("strict")), commaSep1($.identifier)), - - select_having: ($) => seq(kw("having"), $._value_expression), - - _select_limit_offset: ($) => - choice( - seq($.select_limit, optional($.select_offset)), - seq($.select_offset, optional($.select_limit)) - ), - - select_limit: ($) => - seq(kw("limit"), choice(kw("all"), $._value_expression)), - - select_offset: ($) => - seq( - kw("offset"), - $._value_expression, - optional(choice(kw("row"), kw("rows"))) - ), - - // TODO(chrde): rollup, cube, grouping sets - select_group_by: ($) => - prec( - 1, - seq( - kw("group"), - kw("by"), - choice( - seq("(", commaSep1($._value_expression), ")"), - commaSep1($._value_expression) - ) - ) - ), - - select_order_by: ($) => - seq(kw("order"), kw("by"), commaSep1($.order_by_item)), - - order_by_item: ($) => - seq($._value_expression, optional($.order_by_direction)), - - order_by_direction: ($) => choice(kw("asc"), kw("desc")), - - select_where: ($) => $.where_filter, - - select_item: ($) => - seq($._value_expression, optional(kw("as")), optional($.identifier)), - - 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) - ) - ), - - from_select: ($) => - seq("(", $.select_statement, ")", optional(kw("as")), $.identifier), - - from_table: ($) => - seq($.identifier, optional(kw("as")), optional($.identifier)), - - from_function: ($) => - seq( - $.function_call, - optional( - choice( - seq(kw("as"), $.identifier, optional($._list_of_identifiers)), - seq($.identifier, optional($._list_of_identifiers)), - seq(kw("as"), $._list_of_identifiers) - ) - ) - ), - - 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) - ) - ), - - join_condition: ($) => - choice( - seq(kw("on"), $._value_expression), - seq(kw("using"), $._list_of_identifiers) - ), - - join_type: ($) => - seq( - choice( - optional(kw("inner")), - seq(kw("left"), optional(kw("outer"))), - seq(kw("right"), optional(kw("outer"))), - seq(kw("full"), optional(kw("outer"))) - ), - kw("join") - ), - - create_function_statement: ($) => - seq( - kw("create"), - optional($.or_replace), - kw("function"), - $.function_signature, - $.function_return, - kw("as"), - choice($.block, $.string), - kw("language"), - choice($.identifier, $.string), - optional($.function_volatility), - optional($.function_run_as) - ), - - function_run_as: ($) => - seq(kw("security"), choice(kw("invoker"), kw("definer"))), - - function_return: ($) => - seq(kw("returns"), choice($._type, $.return_setof, $.return_table)), - - return_setof: ($) => seq(kw("setof"), $._type), - - return_table: ($) => - seq(kw("table"), "(", commaSep1($.var_declaration), ")"), - - function_volatility: ($) => - choice(kw("immutable"), kw("stable"), kw("volatile")), - - block: ($) => - seq($.dollar_quote, repeat($.declarations), $.body, $.dollar_quote), - - body: ($) => - seq(kw("begin"), repeat($._plpgsql_statement), kw("end"), optional(";")), - - dollar_quote: ($) => seq("$", optional($.identifier), "$"), - - declarations: ($) => seq(kw("declare"), repeat($.var_definition)), - - var_definition: ($) => - seq($.var_declaration, optional(seq(":=", $._value_expression)), ";"), - - function_signature: ($) => seq($.identifier, $.function_parameters), - - function_parameters: ($) => - seq( - "(", - commaSep($.var_declaration), - optional( - seq(kw("default"), field("default_value", $._value_expression)) - ), - ")" - ), - - var_declaration: ($) => - seq(field("name", $.identifier), field("type", $._type)), - - where_filter: ($) => seq(kw("where"), $._value_expression), - - or_replace: ($) => seq(kw("or"), kw("replace")), - - temporary: ($) => choice(kw("temp"), kw("temporary")), - - unlogged: ($) => kw("unlogged"), - - if_not_exists: ($) => seq(kw("if"), kw("not"), kw("exists")), - - if_exists: ($) => seq(kw("if"), kw("exists")), - - as: ($) => seq(kw("as"), $.identifier), - - _type: ($) => - seq( - choice($.predefined_type, $.identifier), - optional(choice(repeat1(seq("[", "]")), kw("%rowtype"), kw("%type"))) - ), - - // predefined_type: - // | BIGINT { BigInt } - // | BIT VARYING? l = type_length? { BitVarying(l) } - // | BOOLEAN { Boolean } - // | CHAR VARYING? l = type_length? { Char(l) } - // | CHARACTER VARYING? l = type_length? { Char(l) } - // | DEC p = precision_param? { Dec(p) } - // | DECIMAL p = precision_param? { Decimal(p) } - // | DOUBLE PRECISION { Double } - // | FLOAT p = precision_param? { Float(p) } - // | INT { Int } - // | INTEGER { Integer } - // | INTERVAL interval = interval_field? l = type_length? { Interval(interval, l) } - // | NCHAR VARYING? l = type_length? { Nchar(l) } - // | NUMERIC p = precision_param? { Numeric(p) } - // | REAL { Real } - // | SMALLINT { SmallInt } - // | TEXT { Text } - // (* | TIME l = type_length? (1* NOTE(chrde): what here? *1) *) - // | TIME l = type_length? WITH TIME ZONE { TimeTz(l) } - // | TIME l = type_length? WITHOUT TIME ZONE { Time(l) } - // (* | TIMESTAMP l = type_length? (1* NOTE(chrde): what here? *1) *) - // | TIMESTAMP l = type_length? WITH TIME ZONE { TimestampTz(l) } - // | TIMESTAMPTZ l = type_length? { TimestampTz(l) } - // | TIMESTAMP l = type_length? WITHOUT TIME ZONE { Timestamp(l) } - // | VARCHAR l = type_length? { VarChar(l) } - // (* | schema_qualified_name_nontype (LEFT_PAREN vex (COMMA vex)* RIGHT_PAREN)? *) - // TODO(chrde): moar types!! - predefined_type: ($) => - choice( - seq(kw("numeric"), optional($.precision)), - seq(kw("varchar"), optional($.type_length)) - ), - - precision: ($) => seq("(", $.number, optional(seq(",", $.number)), ")"), - - type_length: ($) => seq("(", $.number, ")"), - - string: ($) => - seq("'", repeat(choice(prec(1, /''/), prec(2, /[^']/))), "'"), - - // NOTE(chrde): taken from https://github.com/tree-sitter/tree-sitter-javascript/blob/1ddbf1588c353edab37791cdcc9f17e56fb4ea73/grammar.js#L899 - comment: ($) => - token( - choice(seq("--", /.*/), seq("/*", /[^*]*\*+([^/*][^*]*\*+)*/, "/")) - ), - - _value_expression: ($) => - choice( - $.number, - $.dollar_quote_string, - $.string, - $.true, - $.false, - $.null, - $.star, - seq("(", $.select_statement, ")"), - seq("(", commaSep1($._value_expression), ")"), - $.function_call, - $.array_constructor, - $.op_expression, - $.time_expression, - // TODO(chrde): this one feels a bit hacky? perhaps move to identifier regexp - seq($.identifier, ".", $.star), - $.identifier - ), - - array_constructor: ($) => - seq(kw("array"), "[", commaSep($._value_expression), "]"), - - // TODO(chrde): it does not handle nested dollar quotes... perhaps move to an external scanner? - dollar_quote_string: ($) => - seq( - "$", - $._identifier, - "$", - /(([^$]+)|(%\d+\$[sI])|(\$\d+))+/, - // ^ - // |- matches $1 (execute ... using placeholders) - // ^ - // |- matches %d1s (format placeholders) - // ^ - // |- matches anything other than $ - "$", - $._identifier, - "$" - ), - - time_expression: ($) => - choice( - seq( - $.identifier, - kw("at"), - kw("time"), - kw("zone"), - $._value_expression - ), - // TODO(chrde): this is plain wrong - https://www.postgresql.org/docs/13/datatype-datetime.html - seq(kw("interval"), $.string, optional($._interval_fields)) - ), - - _interval_fields: ($) => - choice( - kw("year"), - kw("month"), - kw("day"), - kw("hour"), - kw("minute"), - kw("second"), - seq(kw("year"), kw("to"), kw("month")), - seq(kw("day"), kw("to"), kw("hour")), - seq(kw("day"), kw("to"), kw("minute")), - seq(kw("day"), kw("to"), kw("second")), - seq(kw("hour"), kw("to"), kw("minute")), - seq(kw("hour"), kw("to"), kw("second")), - seq(kw("minute"), kw("to"), kw("second")) - ), - - function_call: ($) => - seq( - $.identifier, - "(", - choice($.select_statement, commaSep($._value_expression)), - ")" - ), - - op_expression: ($) => - choice( - prec.left(12, seq($._value_expression, $.cast, $._type)), - // array access - prec.right(10, 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) - ) - ), - - _list_of_identifiers: ($) => seq("(", commaSep($.identifier), ")"), - - // TODO(chrde): https://www.postgresql.org/docs/13/sql-syntax-lexical.html - comparison_op: ($) => choice("<", ">", "=", "<=", ">=", "<>", "!="), - - // TODO(chrde): is there a better name other than `contains_op`? - contains_op: ($) => - choice(kw("between"), kw("in"), kw("like"), kw("ilike")), - - comparison_null: ($) => - choice(kw("is null"), kw("isnull"), kw("is not null"), kw("notnull")), - - comparison_kw: ($) => - choice(kw("is"), kw("is distinct from"), kw("is not distinct from")), - - // TODO(chrde): this should be a regex - other_op: ($) => - choice("||", "<@", "@>", "<<", ">>", "&&", "&<", "&>", "-|-"), - - cast: ($) => "::", - - minus: ($) => "-", - - plus: ($) => "+", - - not: ($) => kw("not"), - - and: ($) => kw("and"), - - or: ($) => kw("or"), - - true: ($) => kw("true"), - - false: ($) => kw("false"), - - null: ($) => kw("null"), - - star: ($) => "*", - - any: ($) => /.*/, - - number: ($) => /-?\d+/, - - identifier: ($) => $._identifier, - - _identifier: ($) => /[a-zA-Z0-9_]+(\.?[a-zA-Z0-9_]+)*/, - // ^ - // |- we dont want to match consecutive dots, e.g: 1..2 consists of 3 tokens + _identifier: (_) => /([a-zA-Z_][0-9a-zA-Z_]*)/, }, }); + +function mkKeyword(word) { + return new RegExp(word + "|" + word.toUpperCase()); +} + +function commaSepRepeat1(field) { + return seq(field, repeat(seq(",", field))); +} diff --git a/scripts/pre-commit b/scripts/pre-commit index 1d4d70b..6b06a4e 100755 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -8,8 +8,7 @@ set -xe if [ ! -z $(git diff --cached --name-only | grep -e "^grammar.js$") ] then make build - # TODO: Enable when performance improves - # make build-wasm + make build-wasm git add src bindings *.wasm fi diff --git a/src/grammar.json b/src/grammar.json index 05a74a3..f172826 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,6 @@ { "name": "plpgsql", + "word": "_identifier", "rules": { "source_file": { "type": "REPEAT", @@ -8,114 +9,20 @@ "members": [ { "type": "SYMBOL", - "name": "psql_statement" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "STRING", - "value": ";" - } - ] + "name": "statement" } ] } }, - "_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "psql_statement" - }, - { - "type": "SYMBOL", - "name": "create_function_statement" - }, - { - "type": "SYMBOL", - "name": "drop_function_statement" - }, - { - "type": "SYMBOL", - "name": "drop_type_statement" - }, - { - "type": "SYMBOL", - "name": "create_table_statement" - }, - { - "type": "SYMBOL", - "name": "create_schema_statement" - }, - { - "type": "SYMBOL", - "name": "create_type_statement" - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "SYMBOL", - "name": "insert_statement" - }, - { - "type": "SYMBOL", - "name": "delete_statement" - }, - { - "type": "SYMBOL", - "name": "update_statement" - }, - { - "type": "SYMBOL", - "name": "grant_statement" - }, - { - "type": "SYMBOL", - "name": "create_trigger_statement" - }, - { - "type": "SYMBOL", - "name": "create_sequence_statement" - }, - { - "type": "SYMBOL", - "name": "create_index_statement" - }, - { - "type": "SYMBOL", - "name": "alter_table_statement" - }, - { - "type": "SYMBOL", - "name": "do_block" - } - ] - }, - "drop_type_statement": { + "statement": { "type": "SEQ", "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "PATTERN", - "value": "[tT][yY][pP][eE]" - }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "if_exists" + "name": "_ddl_statement" }, { "type": "BLANK" @@ -123,696 +30,103 @@ ] }, { - "type": "SEQ", + "type": "STRING", + "value": ";" + } + ] + }, + "_ddl_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_create_statement" + } + ] + }, + "_create_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "create_table" + } + ] + }, + "create_table": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keyword_create" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "keyword_temporary" + }, + { + "type": "SYMBOL", + "name": "keyword_unlogged" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "keyword_table" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "_if_not_exists" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "table_reference" + }, + { + "type": "SYMBOL", + "name": "column_definitions" + } + ] + }, + "table_reference": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "schema", + "content": { "type": "SYMBOL", "name": "identifier" } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][aA][sS][cC][aA][dD][eE]" - }, - { - "type": "PATTERN", - "value": "[rR][eE][sS][tT][rR][iI][cC][tT]" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "update_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "with_query" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[uU][pP][dD][aA][tT][eE]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "update_set" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "update_set" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][rR][oO][mM]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "from_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "from_item" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_filter" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "returning" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "drop_function_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "drop_function_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "drop_function_item" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][aA][sS][cC][aA][dD][eE]" - }, - { - "type": "PATTERN", - "value": "[rR][eE][sS][tT][rR][iI][cC][tT]" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "drop_function_item": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] }, { "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "create_type_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[tT][yY][pP][eE]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "PATTERN", - "value": "[eE][nN][uU][mM]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "var_declaration" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_with_query_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "SYMBOL", - "name": "insert_statement" - }, - { - "type": "SYMBOL", - "name": "delete_statement" - }, - { - "type": "SYMBOL", - "name": "update_statement" - } - ] - }, - "insert_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "with_query" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[iI][nN][sS][eE][rR][tT]" - }, - { - "type": "PATTERN", - "value": "[iI][nN][tT][oO]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "as" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - "named": true, - "value": "columns" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "insert_items" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "insert_conflict" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "returning" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "into" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "insert_items": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "PATTERN", - "value": "[vV][aA][lL][uU][eE][sS]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[vV][aA][lL][uU][eE][sS]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "insert_values" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "insert_values" - } - ] - } - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "insert_values": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "insert_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "insert_item" - } - ] - } + "value": "." } ] }, @@ -822,3121 +136,22 @@ ] }, { - "type": "STRING", - "value": ")" - } - ] - }, - "insert_item": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - "insert_conflict": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "PATTERN", - "value": "[cC][oO][nN][fF][lL][iI][cC][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "conflict_target" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[dD][oO]" - }, - { - "type": "PATTERN", - "value": "[nN][oO][tT][hH][iI][nN][gG]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "PATTERN", - "value": "[cC][oO][nN][fF][lL][iI][cC][tT]" - }, - { - "type": "SYMBOL", - "name": "conflict_target" - }, - { - "type": "PATTERN", - "value": "[dD][oO]" - }, - { - "type": "PATTERN", - "value": "[uU][pP][dD][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "update_set" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "update_set" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_filter" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "conflict_target": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "update_set": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "update_value" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[rR][oO][wW]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "update_value" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "update_value" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "update_value": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - "returning": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][tT][uU][rR][nN][iI][nN][gG]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "select_item" - } - ] - } - } - ] - } - ] - }, - "create_table_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "temporary" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "unlogged" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[tT][aA][bB][lL][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_not_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "create_table_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "create_table_item" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "create_table_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "table_column_item" - }, - { - "type": "SYMBOL", - "name": "table_constraint" - } - ] - }, - "create_schema_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[sS][cC][hH][eE][mM][aA]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_not_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "schema_role" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "schema_role" - } - ] - } - ] - }, - "schema_role": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][uU][tT][hH][oO][rR][iI][zZ][aA][tT][iI][oO][nN]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PATTERN", - "value": "[cC][uU][rR][rR][eE][nN][tT][__][uU][sS][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][sS][sS][iI][oO][nN][__][uU][sS][eE][rR]" - } - ] - } - ] - }, - "create_index_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[uU][nN][iI][qQ][uU][eE]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[iI][nN][dD][eE][xX]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][nN][cC][uU][rR][rR][eE][nN][tT][lL][yY]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_not_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_using" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "index_col" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "index_col" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_includes" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_filter" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "index_using": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "index_col": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_col_dir" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_col_nulls" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_col_dir" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "index_col_nulls" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "index_col_dir": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS][cC]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][sS][cC]" - } - ] - }, - "index_col_nulls": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL][sS]" - }, - { - "type": "PATTERN", - "value": "[fF][iI][rR][sS][tT]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL][sS]" - }, - { - "type": "PATTERN", - "value": "[lL][aA][sS][tT]" - } - ] - } - ] - }, - "index_includes": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][cC][lL][uU][dD][eE]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - } - ] - }, - "delete_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "with_query" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[dD][eE][lL][eE][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[fF][rR][oO][mM]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "delete_using" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "where_filter" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][tT][uU][rR][nN][iI][nN][gG]" - }, - { - "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" - } - ] - } - ] - }, - "delete_using": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "from_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "from_item" - } - ] - } - } - ] - } - ] - }, - "alter_table_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][lL][tT][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[tT][aA][bB][lL][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "alter_table_change" - } - ] - }, - "alter_table_change": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "alter_table_action" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "alter_table_action" - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "alter_table_rename_column" - }, - { - "type": "SYMBOL", - "name": "alter_table_rename_constraint" - }, - { - "type": "SYMBOL", - "name": "alter_table_rename_table" - }, - { - "type": "SYMBOL", - "name": "alter_table_change_schema" - } - ] - }, - "alter_table_action": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][dD][dD]" - }, - { - "type": "SYMBOL", - "name": "table_constraint" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][dD][dD]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][lL][uU][mM][nN]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_not_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "table_column_item" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "alter_table_fk_ref_action" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][lL][uU][mM][nN]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "alter_table_fk_ref_action" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][lL][tT][eE][rR]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][lL][uU][mM][nN]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "alter_column_action" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "alter_column_action": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][rR][oO][pP]" - }, - { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[tT][yY][pP][eE]" - }, - { - "type": "SYMBOL", - "name": "alter_column_type" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[dD][aA][tT][aA]" - }, - { - "type": "PATTERN", - "value": "[tT][yY][pP][eE]" - }, - { - "type": "SYMBOL", - "name": "alter_column_type" - } - ] - } - ] - }, - "table_constraint": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "table_constraint_ty" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constraint_when" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "constraint_when": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][eE][rR][rR][aA][bB][lL][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][iI][tT][iI][aA][lL][lL][yY]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][mM][mM][eE][dD][iI][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][fF][eE][rR][rR][eE][dD]" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "table_constraint_ty": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][hH][eE][cC][kK]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][nN][iI][qQ][uU][eE]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[pP][rR][iI][mM][aA][rR][yY]" - }, - { - "type": "PATTERN", - "value": "[kK][eE][yY]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][oO][rR][eE][iI][gG][nN]" - }, - { - "type": "PATTERN", - "value": "[kK][eE][yY]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "SYMBOL", - "name": "constraint_foreign_key" - } - ] - } - ] - }, - "constraint_foreign_key": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][fF][eE][rR][eE][nN][cC][eE][sS]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "fk_action" - } - } - ] - }, - "fk_action": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][lL][eE][tT][eE]" - }, - { - "type": "SYMBOL", - "name": "fk_ref_action" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "PATTERN", - "value": "[uU][pP][dD][aA][tT][eE]" - }, - { - "type": "SYMBOL", - "name": "fk_ref_action" - } - ] - } - ] - }, - "fk_ref_action": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO]" - }, - { - "type": "PATTERN", - "value": "[aA][cC][tT][iI][oO][nN]" - } - ] - }, - { - "type": "PATTERN", - "value": "[rR][eE][sS][tT][rR][iI][cC][tT]" - }, - { - "type": "PATTERN", - "value": "[cC][aA][sS][cC][aA][dD][eE]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - } - ] - } - ] - }, - "alter_column_type": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "alter_table_fk_ref_action": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][sS][tT][rR][iI][cC][tT]" - }, - { - "type": "PATTERN", - "value": "[cC][aA][sS][cC][aA][dD][eE]" - } - ] - }, - "table_column_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "column_constraint" - } - } - ] - }, - "column_constraint": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "column_constraint_ty" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constraint_when" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "column_constraint_ty" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constraint_when" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "column_constraint_ty": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - } - ] - }, - { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][hH][eE][cC][kK]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "PATTERN", - "value": "[uU][nN][iI][qQ][uU][eE]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[pP][rR][iI][mM][aA][rR][yY]" - }, - { - "type": "PATTERN", - "value": "[kK][eE][yY]" - } - ] - }, - { - "type": "SYMBOL", - "name": "constraint_foreign_key" - } - ] - }, - "alter_table_rename_column": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][nN][aA][mM][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][lL][uU][mM][nN]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "alter_table_rename_constraint": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][nN][aA][mM][eE]" - }, - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "alter_table_rename_table": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][nN][aA][mM][eE]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "alter_table_change_schema": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT]" - }, - { - "type": "PATTERN", - "value": "[sS][cC][hH][eE][mM][aA]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "grant_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[gG][rR][aA][nN][tT]" - }, - { - "type": "SYMBOL", - "name": "grant_privileges" - }, - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "SYMBOL", - "name": "grant_targets" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "SYMBOL", - "name": "grant_roles" - } - ] - }, - "grant_roles": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[pP][uU][bB][lL][iI][cC]" - }, - { - "type": "PATTERN", - "value": "[cC][uU][rR][rR][eE][nN][tT][__][uU][sS][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][sS][sS][iI][oO][nN][__][uU][sS][eE][rR]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[gG][rR][oO][uU][pP]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[pP][uU][bB][lL][iI][cC]" - }, - { - "type": "PATTERN", - "value": "[cC][uU][rR][rR][eE][nN][tT][__][uU][sS][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][sS][sS][iI][oO][nN][__][uU][sS][eE][rR]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[gG][rR][oO][uU][pP]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - ] - } - ] - } - } - ] - }, - "grant_privileges": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][lL][lL]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[pP][rR][iI][vV][iI][lL][eE][gG][eE][sS]" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - ] - }, - "grant_targets": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][lL][lL]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[tT][aA][bB][lL][eE][sS]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][qQ][uU][eE][nN][cC][eE][sS]" - }, - { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN][sS]" - } - ] - }, - { - "type": "PATTERN", - "value": "[iI][nN]" - }, - { - "type": "PATTERN", - "value": "[sS][cC][hH][eE][mM][aA]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][qQ][uU][eE][nN][cC][eE]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[tT][aA][bB][lL][eE]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][cC][hH][eE][mM][aA]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" - }, - { - "type": "PATTERN", - "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" - }, - { - "type": "PATTERN", - "value": "[rR][oO][uU][tT][iI][nN][eE]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "grant_function" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "grant_function" - } - ] - } - } - ] - } - ] - } - ] - }, - "grant_function": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "grant_all_in_schema": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN]" - }, - { - "type": "PATTERN", - "value": "[sS][cC][hH][eE][mM][aA]" - } - ] - }, - "psql_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "REPEAT1", + "type": "FIELD", + "name": "name", "content": { "type": "SYMBOL", "name": "identifier" } - }, - { - "type": "PATTERN", - "value": "[\\n\\r]" } ] }, - "create_sequence_statement": { + "column_definitions": { "type": "SEQ", "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "temporary" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[sS][eE][qQ][uU][eE][nN][cC][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_not_exists" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "as" - }, - { - "type": "SYMBOL", - "name": "sequence_increment" - }, - { - "type": "SYMBOL", - "name": "sequence_min" - }, - { - "type": "SYMBOL", - "name": "sequence_max" - }, - { - "type": "SYMBOL", - "name": "sequence_start" - }, - { - "type": "SYMBOL", - "name": "sequence_cache" - }, - { - "type": "SYMBOL", - "name": "sequence_cycle" - }, - { - "type": "SYMBOL", - "name": "sequence_owned" - } - ] - } - } - ] - }, - "sequence_increment": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][cC][rR][eE][mM][eE][nN][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[bB][yY]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - }, - "sequence_min": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO]" - }, - { - "type": "PATTERN", - "value": "[mM][iI][nN][vV][aA][lL][uU][eE]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[mM][iI][nN][vV][aA][lL][uU][eE]" - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - } - ] - }, - "sequence_max": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO]" - }, - { - "type": "PATTERN", - "value": "[mM][aA][xX][vV][aA][lL][uU][eE]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[mM][aA][xX][vV][aA][lL][uU][eE]" - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - } - ] - }, - "sequence_start": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][tT][aA][rR][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[wW][iI][tT][hH]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - }, - "sequence_cache": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][aA][cC][hH][eE]" - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - }, - "sequence_cycle": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[cC][yY][cC][lL][eE]" - } - ] - }, - "sequence_owned": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][wW][nN][eE][dD]" - }, - { - "type": "PATTERN", - "value": "[bB][yY]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO][nN][eE]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - ] - }, - "create_trigger_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][oO][nN][sS][tT][rR][aA][iI][nN][tT]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[tT][rR][iI][gG][gG][eE][rR]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "trigger_when" - }, - { - "type": "SYMBOL", - "name": "trigger_event" - }, - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "trigger_scope" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "trigger_cond" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "trigger_exec" - } - ] - }, - "trigger_when": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[bB][eE][fF][oO][rR][eE]" - }, - { - "type": "PATTERN", - "value": "[aA][fF][tT][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[iI][nN][sS][tT][eE][aA][dD][ ][oO][fF]" - } - ] - }, - "trigger_event": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][sS][eE][rR][tT]" - }, - { - "type": "PATTERN", - "value": "[uU][pP][dD][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][lL][eE][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[tT][rR][uU][nN][cC][aA][tT][eE]" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][rR]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][sS][eE][rR][tT]" - }, - { - "type": "PATTERN", - "value": "[uU][pP][dD][aA][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][lL][eE][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[tT][rR][uU][nN][cC][aA][tT][eE]" - } - ] - } - ] - } - } - ] - }, - "trigger_scope": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][oO][rR]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[eE][aA][cC][hH]" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[sS][tT][aA][tT][eE][mM][eE][nN][tT]" - }, - { - "type": "PATTERN", - "value": "[rR][oO][wW]" - } - ] - } - ] - }, - "trigger_exec": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eE][xX][eE][cC][uU][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[pP][rR][oO][cC][eE][dD][uU][rR][eE]" - }, - { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "function_call" - } - ] - }, - "trigger_cond": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[wW][hH][eE][nN]" - }, { "type": "STRING", "value": "(" }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_plpgsql_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "assign_statement" - }, - { - "type": "SYMBOL", - "name": "get_diagnostics_statement" - }, - { - "type": "SYMBOL", - "name": "open_cursor_statement" - }, - { - "type": "SYMBOL", - "name": "return_statement" - }, - { - "type": "SYMBOL", - "name": "raise_statement" - }, - { - "type": "SYMBOL", - "name": "if_statement" - }, - { - "type": "SYMBOL", - "name": "for_statement" - }, - { - "type": "SYMBOL", - "name": "execute_statement" - }, - { - "type": "SYMBOL", - "name": "perform_statement" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "open_cursor_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][pP][eE][nN]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PATTERN", - "value": "[fF][oO][rR]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "SYMBOL", - "name": "execute_statement" - } - ] - } - ] - }, - "get_diagnostics_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[gG][eE][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[cC][uU][rR][rR][eE][nN][tT]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[dD][iI][aA][gG][nN][oO][sS][tT][iI][cC][sS]" - }, - { - "type": "SYMBOL", - "name": "assign_statement" - } - ] - }, - "for_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][oO][rR]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - }, - { - "type": "PATTERN", - "value": "[iI][nN]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][vV][eE][rR][sS][eE]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "STRING", - "value": ".." - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[bB][yY]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "SYMBOL", - "name": "execute_statement" - } - ] - }, - { - "type": "PATTERN", - "value": "[lL][oO][oO][pP]" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_plpgsql_statement" - } - }, - { - "type": "PATTERN", - "value": "[eE][nN][dD]" - }, - { - "type": "PATTERN", - "value": "[lL][oO][oO][pP]" - } - ] - }, - "raise_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][aA][iI][sS][eE]" - }, { "type": "CHOICE", "members": [ @@ -3948,326 +163,10 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" + "name": "column_definition" } ] }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "if_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][fF]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "PATTERN", - "value": "[tT][hH][eE][nN]" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_plpgsql_statement" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[eE][lL][sS][iI][fF]" - }, - { - "type": "PATTERN", - "value": "[eE][lL][sS][eE][iI][fF]" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "PATTERN", - "value": "[tT][hH][eE][nN]" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_plpgsql_statement" - } - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eE][lL][sS][eE]" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_plpgsql_statement" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[eE][nN][dD]" - }, - { - "type": "PATTERN", - "value": "[iI][fF]" - } - ] - }, - "execute_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[eE][xX][eE][cC][uU][tT][eE]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "into" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "execute_using" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "execute_using": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - } - ] - }, - "assign_statement": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - "return_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][tT][uU][rR][nN]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[qQ][uU][eE][rR][yY]" - }, - { - "type": "SYMBOL", - "name": "select_statement" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[qQ][uU][eE][rR][yY]" - }, - { - "type": "SYMBOL", - "name": "execute_statement" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - ] - }, - "perform_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[pP][eE][rR][fF][oO][rR][mM]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_item" - }, { "type": "REPEAT", "content": { @@ -4278,1423 +177,13 @@ "value": "," }, { - "type": "SYMBOL", - "name": "select_item" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "do_block": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][oO]" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "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": "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", - "members": [ - { - "type": "PATTERN", - "value": "[wW][iI][tT][hH]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "with_query_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "with_query_item" - } - ] - } - } - ] - } - ] - }, - "with_query_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[mM][aA][tT][eE][rR][iI][aA][lL][iI][zZ][eE][dD]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - { - "type": "PATTERN", - "value": "[mM][aA][tT][eE][rR][iI][aA][lL][iI][zZ][eE][dD]" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_with_query_statement" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "into": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][tT][oO]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[sS][tT][rR][iI][cC][tT]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - ] - }, - "select_having": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[hH][aA][vV][iI][nN][gG]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - "_select_limit_offset": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_limit" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_offset" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_offset" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_limit" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "select_limit": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[lL][iI][mM][iI][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][lL][lL]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - ] - }, - "select_offset": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][fF][fF][sS][eE][tT]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[rR][oO][wW]" - }, - { - "type": "PATTERN", - "value": "[rR][oO][wW][sS]" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "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": "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": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - } - ] - } - ] - } - }, - "select_order_by": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][rR][dD][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[bB][yY]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "order_by_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "order_by_item" - } - ] - } - } - ] - } - ] - }, - "order_by_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "order_by_direction" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "order_by_direction": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS][cC]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][sS][cC]" - } - ] - }, - "select_where": { - "type": "SYMBOL", - "name": "where_filter" - }, - "select_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "select_from": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][rR][oO][mM]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "from_item" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "from_item" - } - ] - } - } - ] - } - ] - }, - "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": "SYMBOL", - "name": "join_item" - } - } - ] - } - }, - "from_select": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "from_table": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "from_function": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "function_call" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "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" - } - ] - } - ] - } - }, - "join_condition": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][nN]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - { - "type": "SYMBOL", - "name": "_list_of_identifiers" - } - ] - } - ] - }, - "join_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][nN][eE][rR]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[lL][eE][fF][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[oO][uU][tT][eE][rR]" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][iI][gG][hH][tT]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[oO][uU][tT][eE][rR]" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[fF][uU][lL][lL]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[oO][uU][tT][eE][rR]" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "PATTERN", - "value": "[jJ][oO][iI][nN]" - } - ] - }, - "create_function_statement": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[cC][rR][eE][aA][tT][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "or_replace" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[fF][uU][nN][cC][tT][iI][oO][nN]" - }, - { - "type": "SYMBOL", - "name": "function_signature" - }, - { - "type": "SYMBOL", - "name": "function_return" - }, - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - }, - { - "type": "PATTERN", - "value": "[lL][aA][nN][gG][uU][aA][gG][eE]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "string" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_volatility" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "function_run_as" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "function_run_as": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][cC][uU][rR][iI][tT][yY]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][vV][oO][kK][eE][rR]" - }, - { - "type": "PATTERN", - "value": "[dD][eE][fF][iI][nN][eE][rR]" - } - ] - } - ] - }, - "function_return": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[rR][eE][tT][uU][rR][nN][sS]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "SYMBOL", - "name": "return_setof" - }, - { - "type": "SYMBOL", - "name": "return_table" - } - ] - } - ] - }, - "return_setof": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[sS][eE][tT][oO][fF]" - }, - { - "type": "SYMBOL", - "name": "_type" - } - ] - }, - "return_table": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[tT][aA][bB][lL][eE]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "var_declaration" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "function_volatility": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][mM][mM][uU][tT][aA][bB][lL][eE]" - }, - { - "type": "PATTERN", - "value": "[sS][tT][aA][bB][lL][eE]" - }, - { - "type": "PATTERN", - "value": "[vV][oO][lL][aA][tT][iI][lL][eE]" - } - ] - }, - "block": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "dollar_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "declarations" - } - }, - { - "type": "SYMBOL", - "name": "body" - }, - { - "type": "SYMBOL", - "name": "dollar_quote" - } - ] - }, - "body": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[bB][eE][gG][iI][nN]" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_plpgsql_statement" - } - }, - { - "type": "PATTERN", - "value": "[eE][nN][dD]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "dollar_quote": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "$" - } - ] - }, - "declarations": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][cC][lL][aA][rR][eE]" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "var_definition" - } - } - ] - }, - "var_definition": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":=" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "function_signature": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "function_parameters" - } - ] - }, - "function_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "var_declaration" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "column_definition" + } + ] } ] } @@ -5706,38 +195,13 @@ } ] }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][eE][fF][aA][uU][lL][tT]" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_value_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": ")" } ] }, - "var_declaration": { + "column_definition": { "type": "SEQ", "members": [ { @@ -5747,1313 +211,140 @@ "type": "SYMBOL", "name": "identifier" } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type" - } } ] }, - "where_filter": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[wW][hH][eE][rR][eE]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - "or_replace": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[oO][rR]" - }, - { - "type": "PATTERN", - "value": "[rR][eE][pP][lL][aA][cC][eE]" - } - ] - }, - "temporary": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[tT][eE][mM][pP]" - }, - { - "type": "PATTERN", - "value": "[tT][eE][mM][pP][oO][rR][aA][rR][yY]" - } - ] - }, - "unlogged": { + "keyword_create": { "type": "PATTERN", - "value": "[uU][nN][lL][oO][gG][gG][eE][dD]" + "value": "create|CREATE" }, - "if_not_exists": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][fF]" - }, - { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - { - "type": "PATTERN", - "value": "[eE][xX][iI][sS][tT][sS]" - } - ] + "keyword_table": { + "type": "PATTERN", + "value": "table|TABLE" }, - "if_exists": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][fF]" - }, - { - "type": "PATTERN", - "value": "[eE][xX][iI][sS][tT][sS]" - } - ] - }, - "as": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][sS]" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "predefined_type" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - { - "type": "PATTERN", - "value": "[%%][rR][oO][wW][tT][yY][pP][eE]" - }, - { - "type": "PATTERN", - "value": "[%%][tT][yY][pP][eE]" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "predefined_type": { + "keyword_temporary": { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[nN][uU][mM][eE][rR][iI][cC]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "precision" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "PATTERN", + "value": "temporary|TEMPORARY" }, { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[vV][aA][rR][cC][hH][aA][rR]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_length" - }, - { - "type": "BLANK" - } - ] - } - ] + "type": "PATTERN", + "value": "temp|TEMP" } ] }, - "precision": { + "keyword_unlogged": { + "type": "PATTERN", + "value": "unlogged|UNLOGGED" + }, + "keyword_if": { + "type": "PATTERN", + "value": "if|IF" + }, + "keyword_not": { + "type": "PATTERN", + "value": "not|NOT" + }, + "keyword_exists": { + "type": "PATTERN", + "value": "exists|EXISTS" + }, + "_if_not_exists": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "SYMBOL", + "name": "keyword_if" }, { "type": "SYMBOL", - "name": "number" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "number" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type_length": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" + "name": "keyword_not" }, { "type": "SYMBOL", - "name": "number" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "''" - } - }, - { - "type": "PREC", - "value": 2, - "content": { - "type": "PATTERN", - "value": "[^']" - } - } - ] - } - }, - { - "type": "STRING", - "value": "'" + "name": "keyword_exists" } ] }, "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "--" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" - }, - { - "type": "STRING", - "value": "/" - } - ] - } - ] - } - }, - "_value_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "dollar_quote_string" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "true" - }, - { - "type": "SYMBOL", - "name": "false" - }, - { - "type": "SYMBOL", - "name": "null" - }, - { - "type": "SYMBOL", - "name": "star" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "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": "SYMBOL", - "name": "function_call" - }, - { - "type": "SYMBOL", - "name": "array_constructor" - }, - { - "type": "SYMBOL", - "name": "op_expression" - }, - { - "type": "SYMBOL", - "name": "time_expression" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "star" - } - ] - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "array_constructor": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[aA][rR][rR][aA][yY]" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "dollar_quote_string": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "$" - }, - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "STRING", - "value": "$" + "value": "--" }, { "type": "PATTERN", - "value": "(([^$]+)|(%\\d+\\$[sI])|(\\$\\d+))+" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "STRING", - "value": "$" + "value": ".*\\n" } ] }, - "time_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "PATTERN", - "value": "[aA][tT]" - }, - { - "type": "PATTERN", - "value": "[tT][iI][mM][eE]" - }, - { - "type": "PATTERN", - "value": "[zZ][oO][nN][eE]" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[iI][nN][tT][eE][rR][vV][aA][lL]" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_interval_fields" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "_interval_fields": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[yY][eE][aA][rR]" - }, - { - "type": "PATTERN", - "value": "[mM][oO][nN][tT][hH]" - }, - { - "type": "PATTERN", - "value": "[dD][aA][yY]" - }, - { - "type": "PATTERN", - "value": "[hH][oO][uU][rR]" - }, - { - "type": "PATTERN", - "value": "[mM][iI][nN][uU][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][cC][oO][nN][dD]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[yY][eE][aA][rR]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[mM][oO][nN][tT][hH]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][aA][yY]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[hH][oO][uU][rR]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][aA][yY]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[mM][iI][nN][uU][tT][eE]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[dD][aA][yY]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][cC][oO][nN][dD]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[hH][oO][uU][rR]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[mM][iI][nN][uU][tT][eE]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[hH][oO][uU][rR]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][cC][oO][nN][dD]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[mM][iI][nN][uU][tT][eE]" - }, - { - "type": "PATTERN", - "value": "[tT][oO]" - }, - { - "type": "PATTERN", - "value": "[sS][eE][cC][oO][nN][dD]" - } - ] - } - ] - }, - "function_call": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "op_expression": { - "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": "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": "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": "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": "PREC_LEFT", - "value": 6, - "content": { - "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": "PREC_LEFT", - "value": 4, - "content": { - "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": "PREC_LEFT", - "value": 3, - "content": { - "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": "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" - } - ] - } - } - ] - }, - "_list_of_identifiers": { + "marginalia": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "(" + "value": "/*" }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "PATTERN", + "value": "[^*]*\\*+(?:[^/*][^*]*\\*+)*" }, { "type": "STRING", - "value": ")" + "value": "/" } ] }, - "comparison_op": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">=" - }, - { - "type": "STRING", - "value": "<>" - }, - { - "type": "STRING", - "value": "!=" - } - ] - }, - "contains_op": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[bB][eE][tT][wW][eE][eE][nN]" - }, - { - "type": "PATTERN", - "value": "[iI][nN]" - }, - { - "type": "PATTERN", - "value": "[lL][iI][kK][eE]" - }, - { - "type": "PATTERN", - "value": "[iI][lL][iI][kK][eE]" - } - ] - }, - "comparison_null": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][sS][ ][nN][uU][lL][lL]" - }, - { - "type": "PATTERN", - "value": "[iI][sS][nN][uU][lL][lL]" - }, - { - "type": "PATTERN", - "value": "[iI][sS][ ][nN][oO][tT][ ][nN][uU][lL][lL]" - }, - { - "type": "PATTERN", - "value": "[nN][oO][tT][nN][uU][lL][lL]" - } - ] - }, - "comparison_kw": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[iI][sS]" - }, - { - "type": "PATTERN", - "value": "[iI][sS][ ][dD][iI][sS][tT][iI][nN][cC][tT][ ][fF][rR][oO][mM]" - }, - { - "type": "PATTERN", - "value": "[iI][sS][ ][nN][oO][tT][ ][dD][iI][sS][tT][iI][nN][cC][tT][ ][fF][rR][oO][mM]" - } - ] - }, - "other_op": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "||" - }, - { - "type": "STRING", - "value": "<@" - }, - { - "type": "STRING", - "value": "@>" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - }, - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "&<" - }, - { - "type": "STRING", - "value": "&>" - }, - { - "type": "STRING", - "value": "-|-" - } - ] - }, - "cast": { - "type": "STRING", - "value": "::" - }, - "minus": { - "type": "STRING", - "value": "-" - }, - "plus": { - "type": "STRING", - "value": "+" - }, - "not": { - "type": "PATTERN", - "value": "[nN][oO][tT]" - }, - "and": { - "type": "PATTERN", - "value": "[aA][nN][dD]" - }, - "or": { - "type": "PATTERN", - "value": "[oO][rR]" - }, - "true": { - "type": "PATTERN", - "value": "[tT][rR][uU][eE]" - }, - "false": { - "type": "PATTERN", - "value": "[fF][aA][lL][sS][eE]" - }, - "null": { - "type": "PATTERN", - "value": "[nN][uU][lL][lL]" - }, - "star": { - "type": "STRING", - "value": "*" - }, - "any": { - "type": "PATTERN", - "value": ".*" - }, - "number": { - "type": "PATTERN", - "value": "-?\\d+" - }, "identifier": { - "type": "SYMBOL", - "name": "_identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "STRING", + "value": "\"" + } + ] + } + ] }, "_identifier": { "type": "PATTERN", - "value": "[a-zA-Z0-9_]+(\\.?[a-zA-Z0-9_]+)*" + "value": "([a-zA-Z_][0-9a-zA-Z_]*)" } }, "extras": [ + { + "type": "PATTERN", + "value": "\\s\\n" + }, + { + "type": "PATTERN", + "value": "\\s" + }, { "type": "SYMBOL", "name": "comment" }, { - "type": "PATTERN", - "value": "[\\s\\uFEFF\\u2060\\u200B\\u00A0]" + "type": "SYMBOL", + "name": "marginalia" } ], "conflicts": [], diff --git a/src/node-types.json b/src/node-types.json index 0ea9450..d7fb2de 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1,1796 +1,42 @@ [ { - "type": "alter_column_action", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "alter_column_type", - "named": true - }, - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "alter_column_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "predefined_type", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "alter_table_action", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "alter_column_action", - "named": true - }, - { - "type": "alter_table_fk_ref_action", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_exists", - "named": true - }, - { - "type": "if_not_exists", - "named": true - }, - { - "type": "table_column_item", - "named": true - }, - { - "type": "table_constraint", - "named": true - } - ] - } - }, - { - "type": "alter_table_change", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "alter_table_action", - "named": true - }, - { - "type": "alter_table_change_schema", - "named": true - }, - { - "type": "alter_table_rename_column", - "named": true - }, - { - "type": "alter_table_rename_constraint", - "named": true - }, - { - "type": "alter_table_rename_table", - "named": true - } - ] - } - }, - { - "type": "alter_table_change_schema", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "alter_table_fk_ref_action", - "named": true, - "fields": {} - }, - { - "type": "alter_table_rename_column", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "alter_table_rename_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "alter_table_rename_table", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "alter_table_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "alter_table_change", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_exists", - "named": true - } - ] - } - }, - { - "type": "array_constructor", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "as", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "assign_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "body", - "named": true - }, - { - "type": "declarations", - "named": true - }, - { - "type": "dollar_quote", - "named": true - } - ] - } - }, - { - "type": "body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "alter_table_statement", - "named": true - }, - { - "type": "assign_statement", - "named": true - }, - { - "type": "create_function_statement", - "named": true - }, - { - "type": "create_index_statement", - "named": true - }, - { - "type": "create_schema_statement", - "named": true - }, - { - "type": "create_sequence_statement", - "named": true - }, - { - "type": "create_table_statement", - "named": true - }, - { - "type": "create_trigger_statement", - "named": true - }, - { - "type": "create_type_statement", - "named": true - }, - { - "type": "delete_statement", - "named": true - }, - { - "type": "do_block", - "named": true - }, - { - "type": "drop_function_statement", - "named": true - }, - { - "type": "drop_type_statement", - "named": true - }, - { - "type": "execute_statement", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "get_diagnostics_statement", - "named": true - }, - { - "type": "grant_statement", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "insert_statement", - "named": true - }, - { - "type": "open_cursor_statement", - "named": true - }, - { - "type": "perform_statement", - "named": true - }, - { - "type": "psql_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "return_statement", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "update_statement", - "named": true - } - ] - } - }, - { - "type": "column_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "column_constraint_ty", - "named": true - }, - { - "type": "constraint_when", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "column_constraint_ty", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "constraint_foreign_key", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "columns", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "comparison_kw", - "named": true, - "fields": {} - }, - { - "type": "comparison_null", - "named": true, - "fields": {} - }, - { - "type": "comparison_op", - "named": true, - "fields": {} - }, - { - "type": "conflict_target", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "constraint_foreign_key", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "fk_action", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "constraint_when", - "named": true, - "fields": {} - }, - { - "type": "contains_op", - "named": true, - "fields": {} - }, - { - "type": "create_function_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "function_return", - "named": true - }, - { - "type": "function_run_as", - "named": true - }, - { - "type": "function_signature", - "named": true - }, - { - "type": "function_volatility", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "or_replace", - "named": true - }, - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "create_index_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "if_not_exists", - "named": true - }, - { - "type": "index_col", - "named": true - }, - { - "type": "index_includes", - "named": true - }, - { - "type": "index_using", - "named": true - }, - { - "type": "where_filter", - "named": true - } - ] - } - }, - { - "type": "create_schema_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "if_not_exists", - "named": true - }, - { - "type": "schema_role", - "named": true - } - ] - } - }, - { - "type": "create_sequence_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "as", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_not_exists", - "named": true - }, - { - "type": "sequence_cache", - "named": true - }, - { - "type": "sequence_cycle", - "named": true - }, - { - "type": "sequence_increment", - "named": true - }, - { - "type": "sequence_max", - "named": true - }, - { - "type": "sequence_min", - "named": true - }, - { - "type": "sequence_owned", - "named": true - }, - { - "type": "sequence_start", - "named": true - }, - { - "type": "temporary", - "named": true - } - ] - } - }, - { - "type": "create_table_item", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "table_column_item", - "named": true - }, - { - "type": "table_constraint", - "named": true - } - ] - } - }, - { - "type": "create_table_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "create_table_item", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_not_exists", - "named": true - }, - { - "type": "temporary", - "named": true - }, - { - "type": "unlogged", - "named": true - } - ] - } - }, - { - "type": "create_trigger_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "trigger_cond", - "named": true - }, - { - "type": "trigger_event", - "named": true - }, - { - "type": "trigger_exec", - "named": true - }, - { - "type": "trigger_scope", - "named": true - }, - { - "type": "trigger_when", - "named": true - } - ] - } - }, - { - "type": "create_type_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "declarations", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "var_definition", - "named": true - } - ] - } - }, - { - "type": "delete_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "delete_using", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "into", - "named": true - }, - { - "type": "select_item", - "named": true - }, - { - "type": "where_filter", - "named": true - }, - { - "type": "with_query", - "named": true - } - ] - } - }, - { - "type": "delete_using", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "from_item", - "named": true - } - ] - } - }, - { - "type": "do_block", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "dollar_quote", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "dollar_quote_string", - "named": true, - "fields": {} - }, - { - "type": "drop_function_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "if_exists", - "named": true - }, - { - "type": "predefined_type", - "named": true - }, - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "drop_function_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "drop_function_item", - "named": true - } - ] - } - }, - { - "type": "drop_type_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "if_exists", - "named": true - } - ] - } - }, - { - "type": "execute_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "execute_using", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "into", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "execute_using", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "fk_action", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "fk_ref_action", - "named": true - } - ] - } - }, - { - "type": "fk_ref_action", - "named": true, - "fields": {} - }, - { - "type": "for_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "alter_table_statement", - "named": true - }, - { - "type": "array_constructor", - "named": true - }, - { - "type": "assign_statement", - "named": true - }, - { - "type": "create_function_statement", - "named": true - }, - { - "type": "create_index_statement", - "named": true - }, - { - "type": "create_schema_statement", - "named": true - }, - { - "type": "create_sequence_statement", - "named": true - }, - { - "type": "create_table_statement", - "named": true - }, - { - "type": "create_trigger_statement", - "named": true - }, - { - "type": "create_type_statement", - "named": true - }, - { - "type": "delete_statement", - "named": true - }, - { - "type": "do_block", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "drop_function_statement", - "named": true - }, - { - "type": "drop_type_statement", - "named": true - }, - { - "type": "execute_statement", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "get_diagnostics_statement", - "named": true - }, - { - "type": "grant_statement", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "insert_statement", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "open_cursor_statement", - "named": true - }, - { - "type": "perform_statement", - "named": true - }, - { - "type": "psql_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "return_statement", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - }, - { - "type": "update_statement", - "named": true - } - ] - } - }, - { - "type": "from_function", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "from_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "from_function", - "named": true - }, - { - "type": "from_select", - "named": true - }, - { - "type": "from_table", - "named": true - }, - { - "type": "join_item", - "named": true - } - ] - } - }, - { - "type": "from_select", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "select_statement", - "named": true - } - ] - } - }, - { - "type": "from_table", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "function_call", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "function_parameters", + "type": "column_definition", "named": true, "fields": { - "default_value": { - "multiple": true, - "required": false, + "name": { + "multiple": false, + "required": true, "types": [ - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, { "type": "identifier", "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true } ] } - }, + } + }, + { + "type": "column_definitions", + "named": true, + "fields": {}, "children": { "multiple": true, "required": false, "types": [ { - "type": "var_declaration", + "type": "column_definition", "named": true } ] } }, { - "type": "function_return", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "predefined_type", - "named": true - }, - { - "type": "return_setof", - "named": true - }, - { - "type": "return_table", - "named": true - } - ] - } - }, - { - "type": "function_run_as", + "type": "comment", "named": true, "fields": {} }, { - "type": "function_signature", + "type": "create_table", "named": true, "fields": {}, "children": { @@ -1798,122 +44,39 @@ "required": true, "types": [ { - "type": "function_parameters", + "type": "column_definitions", "named": true }, { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "function_volatility", - "named": true, - "fields": {} - }, - { - "type": "get_diagnostics_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "assign_statement", - "named": true - } - ] - } - }, - { - "type": "grant_function", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", + "type": "keyword_create", "named": true }, { - "type": "predefined_type", - "named": true - } - ] - } - }, - { - "type": "grant_privileges", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "grant_roles", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "grant_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "grant_privileges", + "type": "keyword_exists", "named": true }, { - "type": "grant_roles", + "type": "keyword_if", "named": true }, { - "type": "grant_targets", - "named": true - } - ] - } - }, - { - "type": "grant_targets", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "grant_function", + "type": "keyword_not", "named": true }, { - "type": "identifier", + "type": "keyword_table", + "named": true + }, + { + "type": "keyword_temporary", + "named": true + }, + { + "type": "keyword_unlogged", + "named": true + }, + { + "type": "table_reference", "named": true } ] @@ -1925,1563 +88,15 @@ "fields": {} }, { - "type": "if_exists", + "type": "keyword_temporary", "named": true, "fields": {} }, { - "type": "if_not_exists", + "type": "marginalia", "named": true, "fields": {} }, - { - "type": "if_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "alter_table_statement", - "named": true - }, - { - "type": "array_constructor", - "named": true - }, - { - "type": "assign_statement", - "named": true - }, - { - "type": "create_function_statement", - "named": true - }, - { - "type": "create_index_statement", - "named": true - }, - { - "type": "create_schema_statement", - "named": true - }, - { - "type": "create_sequence_statement", - "named": true - }, - { - "type": "create_table_statement", - "named": true - }, - { - "type": "create_trigger_statement", - "named": true - }, - { - "type": "create_type_statement", - "named": true - }, - { - "type": "delete_statement", - "named": true - }, - { - "type": "do_block", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "drop_function_statement", - "named": true - }, - { - "type": "drop_type_statement", - "named": true - }, - { - "type": "execute_statement", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "get_diagnostics_statement", - "named": true - }, - { - "type": "grant_statement", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if_statement", - "named": true - }, - { - "type": "insert_statement", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "open_cursor_statement", - "named": true - }, - { - "type": "perform_statement", - "named": true - }, - { - "type": "psql_statement", - "named": true - }, - { - "type": "raise_statement", - "named": true - }, - { - "type": "return_statement", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - }, - { - "type": "update_statement", - "named": true - } - ] - } - }, - { - "type": "index_col", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "index_col_dir", - "named": true - }, - { - "type": "index_col_nulls", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "index_col_dir", - "named": true, - "fields": {} - }, - { - "type": "index_col_nulls", - "named": true, - "fields": {} - }, - { - "type": "index_includes", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "index_using", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "insert_conflict", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "conflict_target", - "named": true - }, - { - "type": "update_set", - "named": true - }, - { - "type": "where_filter", - "named": true - } - ] - } - }, - { - "type": "insert_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "insert_items", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "insert_values", - "named": true - }, - { - "type": "select_statement", - "named": true - } - ] - } - }, - { - "type": "insert_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "as", - "named": true - }, - { - "type": "columns", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "insert_conflict", - "named": true - }, - { - "type": "insert_items", - "named": true - }, - { - "type": "into", - "named": true - }, - { - "type": "returning", - "named": true - }, - { - "type": "with_query", - "named": true - } - ] - } - }, - { - "type": "insert_values", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "insert_item", - "named": true - } - ] - } - }, - { - "type": "into", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "join_condition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "join_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "from_item", - "named": true - }, - { - "type": "join_condition", - "named": true - }, - { - "type": "join_type", - "named": true - } - ] - } - }, - { - "type": "join_type", - "named": true, - "fields": {} - }, - { - "type": "minus", - "named": true, - "fields": {} - }, - { - "type": "not", - "named": true, - "fields": {} - }, - { - "type": "null", - "named": true, - "fields": {} - }, - { - "type": "op_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "and", - "named": true - }, - { - "type": "array_constructor", - "named": true - }, - { - "type": "cast", - "named": true - }, - { - "type": "comparison_kw", - "named": true - }, - { - "type": "comparison_null", - "named": true - }, - { - "type": "comparison_op", - "named": true - }, - { - "type": "contains_op", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "minus", - "named": true - }, - { - "type": "not", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "or", - "named": true - }, - { - "type": "other_op", - "named": true - }, - { - "type": "plus", - "named": true - }, - { - "type": "predefined_type", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "open_cursor_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "execute_statement", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "select_statement", - "named": true - } - ] - } - }, - { - "type": "or", - "named": true, - "fields": {} - }, - { - "type": "or_replace", - "named": true, - "fields": {} - }, - { - "type": "order_by_direction", - "named": true, - "fields": {} - }, - { - "type": "order_by_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "order_by_direction", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "other_op", - "named": true, - "fields": {} - }, - { - "type": "perform_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "select_item", - "named": true - } - ] - } - }, - { - "type": "plus", - "named": true, - "fields": {} - }, - { - "type": "precision", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "predefined_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "precision", - "named": true - }, - { - "type": "type_length", - "named": true - } - ] - } - }, - { - "type": "psql_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "raise_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "return_setof", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "predefined_type", - "named": true - } - ] - } - }, - { - "type": "return_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "execute_statement", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "return_table", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "returning", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "select_item", - "named": true - } - ] - } - }, - { - "type": "schema_role", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "select_from", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "from_item", - "named": true - } - ] - } - }, - { - "type": "select_group_by", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "select_having", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "select_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "select_limit", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "select_offset", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "select_order_by", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "order_by_item", - "named": true - } - ] - } - }, - { - "type": "select_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "into", - "named": true - }, - { - "type": "select_from", - "named": true - }, - { - "type": "select_group_by", - "named": true - }, - { - "type": "select_having", - "named": true - }, - { - "type": "select_item", - "named": true - }, - { - "type": "select_limit", - "named": true - }, - { - "type": "select_offset", - "named": true - }, - { - "type": "select_order_by", - "named": true - }, - { - "type": "select_where", - "named": true - }, - { - "type": "with_query", - "named": true - } - ] - } - }, - { - "type": "select_where", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "where_filter", - "named": true - } - ] - } - }, - { - "type": "sequence_cache", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "sequence_cycle", - "named": true, - "fields": {} - }, - { - "type": "sequence_increment", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "sequence_max", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "sequence_min", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "sequence_owned", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "sequence_start", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, { "type": "source_file", "named": true, @@ -3491,494 +106,29 @@ "required": false, "types": [ { - "type": "alter_table_statement", - "named": true - }, - { - "type": "create_function_statement", - "named": true - }, - { - "type": "create_index_statement", - "named": true - }, - { - "type": "create_schema_statement", - "named": true - }, - { - "type": "create_sequence_statement", - "named": true - }, - { - "type": "create_table_statement", - "named": true - }, - { - "type": "create_trigger_statement", - "named": true - }, - { - "type": "create_type_statement", - "named": true - }, - { - "type": "delete_statement", - "named": true - }, - { - "type": "do_block", - "named": true - }, - { - "type": "drop_function_statement", - "named": true - }, - { - "type": "drop_type_statement", - "named": true - }, - { - "type": "grant_statement", - "named": true - }, - { - "type": "insert_statement", - "named": true - }, - { - "type": "psql_statement", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "update_statement", + "type": "statement", "named": true } ] } }, { - "type": "star", - "named": true, - "fields": {} - }, - { - "type": "string", - "named": true, - "fields": {} - }, - { - "type": "table_column_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "column_constraint", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "predefined_type", - "named": true - } - ] - } - }, - { - "type": "table_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "constraint_when", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "table_constraint_ty", - "named": true - } - ] - } - }, - { - "type": "table_constraint_ty", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "constraint_foreign_key", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "temporary", - "named": true, - "fields": {} - }, - { - "type": "time_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "trigger_cond", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "trigger_event", - "named": true, - "fields": {} - }, - { - "type": "trigger_exec", + "type": "statement", "named": true, "fields": {}, "children": { "multiple": false, - "required": true, - "types": [ - { - "type": "function_call", - "named": true - } - ] - } - }, - { - "type": "trigger_scope", - "named": true, - "fields": {} - }, - { - "type": "trigger_when", - "named": true, - "fields": {} - }, - { - "type": "type_length", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "number", - "named": true - } - ] - } - }, - { - "type": "update_set", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "update_value", - "named": true - } - ] - } - }, - { - "type": "update_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "from_item", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "returning", - "named": true - }, - { - "type": "update_set", - "named": true - }, - { - "type": "where_filter", - "named": true - }, - { - "type": "with_query", - "named": true - } - ] - } - }, - { - "type": "update_value", - "named": true, - "fields": {}, - "children": { - "multiple": true, "required": false, "types": [ { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", + "type": "create_table", "named": true } ] } }, { - "type": "var_declaration", + "type": "table_reference", "named": true, "fields": { "name": { @@ -3991,232 +141,20 @@ } ] }, - "type": { - "multiple": true, - "required": true, + "schema": { + "multiple": false, + "required": false, "types": [ - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - }, { "type": "identifier", "named": true - }, - { - "type": "predefined_type", - "named": true } ] } } }, { - "type": "var_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - }, - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "where_filter", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_constructor", - "named": true - }, - { - "type": "dollar_quote_string", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "op_expression", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "star", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "time_expression", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "with_query", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "with_query_item", - "named": true - } - ] - } - }, - { - "type": "with_query_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "delete_statement", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "insert_statement", - "named": true - }, - { - "type": "select_statement", - "named": true - }, - { - "type": "update_statement", - "named": true - } - ] - } - }, - { - "type": "!=", - "named": false - }, - { - "type": "$", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "&<", - "named": false - }, - { - "type": "&>", - "named": false - }, - { - "type": "'", + "type": "\"", "named": false }, { @@ -4227,40 +165,24 @@ "type": ")", "named": false }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, { "type": ",", "named": false }, { - "type": "-", - "named": false - }, - { - "type": "-|-", + "type": "--", "named": false }, { "type": ".", "named": false }, - { - "type": "..", - "named": false - }, { "type": "/", "named": false }, { - "type": ":=", + "type": "/*", "named": false }, { @@ -4268,87 +190,27 @@ "named": false }, { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "<>", - "named": false - }, - { - "type": "<@", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": "@>", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "\\", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "and", + "type": "keyword_create", "named": true }, { - "type": "cast", + "type": "keyword_exists", "named": true }, { - "type": "comment", + "type": "keyword_if", "named": true }, { - "type": "false", + "type": "keyword_not", "named": true }, { - "type": "number", + "type": "keyword_table", "named": true }, { - "type": "true", + "type": "keyword_unlogged", "named": true - }, - { - "type": "unlogged", - "named": true - }, - { - "type": "||", - "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index d07f596..69a8723 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,1201 +5,131 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2428 -#define LARGE_STATE_COUNT 5 -#define SYMBOL_COUNT 389 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 209 +#define STATE_COUNT 49 +#define LARGE_STATE_COUNT 2 +#define SYMBOL_COUNT 36 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 21 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 3 -#define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 8 +#define FIELD_COUNT 2 +#define MAX_ALIAS_SEQUENCE_LENGTH 6 +#define PRODUCTION_ID_COUNT 3 enum { - anon_sym_SEMI = 1, - aux_sym_drop_type_statement_token1 = 2, - aux_sym_drop_type_statement_token2 = 3, - anon_sym_COMMA = 4, - aux_sym_drop_type_statement_token3 = 5, - aux_sym_drop_type_statement_token4 = 6, - aux_sym_update_statement_token1 = 7, - aux_sym_update_statement_token2 = 8, - aux_sym_update_statement_token3 = 9, - aux_sym_update_statement_token4 = 10, - aux_sym_drop_function_statement_token1 = 11, - anon_sym_LPAREN = 12, - anon_sym_RPAREN = 13, - aux_sym_create_type_statement_token1 = 14, - aux_sym_create_type_statement_token2 = 15, - aux_sym_insert_statement_token1 = 16, - aux_sym_insert_statement_token2 = 17, - aux_sym_insert_items_token1 = 18, - aux_sym_insert_items_token2 = 19, - aux_sym_insert_conflict_token1 = 20, - aux_sym_insert_conflict_token2 = 21, - aux_sym_insert_conflict_token3 = 22, - aux_sym_insert_conflict_token4 = 23, - aux_sym_conflict_target_token1 = 24, - anon_sym_EQ = 25, - aux_sym_update_set_token1 = 26, - aux_sym_returning_token1 = 27, - aux_sym_create_table_statement_token1 = 28, - aux_sym_create_schema_statement_token1 = 29, - aux_sym_schema_role_token1 = 30, - aux_sym_schema_role_token2 = 31, - aux_sym_schema_role_token3 = 32, - aux_sym_create_index_statement_token1 = 33, - aux_sym_create_index_statement_token2 = 34, - aux_sym_create_index_statement_token3 = 35, - aux_sym_index_using_token1 = 36, - aux_sym_index_col_dir_token1 = 37, - aux_sym_index_col_dir_token2 = 38, - aux_sym_index_col_nulls_token1 = 39, - aux_sym_index_col_nulls_token2 = 40, - aux_sym_index_col_nulls_token3 = 41, - aux_sym_index_includes_token1 = 42, - aux_sym_delete_statement_token1 = 43, - aux_sym_alter_table_statement_token1 = 44, - aux_sym_alter_table_action_token1 = 45, - aux_sym_alter_table_action_token2 = 46, - aux_sym_alter_column_action_token1 = 47, - aux_sym_alter_column_action_token2 = 48, - aux_sym_alter_column_action_token3 = 49, - aux_sym_constraint_when_token1 = 50, - aux_sym_constraint_when_token2 = 51, - aux_sym_constraint_when_token3 = 52, - aux_sym_constraint_when_token4 = 53, - aux_sym_table_constraint_ty_token1 = 54, - aux_sym_table_constraint_ty_token2 = 55, - aux_sym_table_constraint_ty_token3 = 56, - aux_sym_table_constraint_ty_token4 = 57, - aux_sym_constraint_foreign_key_token1 = 58, - aux_sym_fk_ref_action_token1 = 59, - aux_sym_fk_ref_action_token2 = 60, - aux_sym_alter_table_rename_column_token1 = 61, - aux_sym_alter_table_rename_column_token2 = 62, - aux_sym_grant_statement_token1 = 63, - aux_sym_grant_roles_token1 = 64, - aux_sym_grant_roles_token2 = 65, - aux_sym_grant_privileges_token1 = 66, - aux_sym_grant_privileges_token2 = 67, - aux_sym_grant_targets_token1 = 68, - aux_sym_grant_targets_token2 = 69, - aux_sym_grant_targets_token3 = 70, - aux_sym_grant_targets_token4 = 71, - aux_sym_grant_targets_token5 = 72, - aux_sym_grant_targets_token6 = 73, - aux_sym_grant_targets_token7 = 74, - anon_sym_BSLASH = 75, - aux_sym_psql_statement_token1 = 76, - aux_sym_sequence_increment_token1 = 77, - aux_sym_sequence_increment_token2 = 78, - aux_sym_sequence_min_token1 = 79, - aux_sym_sequence_max_token1 = 80, - aux_sym_sequence_start_token1 = 81, - aux_sym_sequence_start_token2 = 82, - aux_sym_sequence_cache_token1 = 83, - aux_sym_sequence_cycle_token1 = 84, - aux_sym_sequence_owned_token1 = 85, - aux_sym_sequence_owned_token2 = 86, - aux_sym_create_trigger_statement_token1 = 87, - aux_sym_trigger_when_token1 = 88, - aux_sym_trigger_when_token2 = 89, - aux_sym_trigger_when_token3 = 90, - aux_sym_trigger_event_token1 = 91, - aux_sym_trigger_event_token2 = 92, - aux_sym_trigger_scope_token1 = 93, - aux_sym_trigger_scope_token2 = 94, - aux_sym_trigger_scope_token3 = 95, - aux_sym_trigger_exec_token1 = 96, - aux_sym_trigger_cond_token1 = 97, - aux_sym_open_cursor_statement_token1 = 98, - aux_sym_get_diagnostics_statement_token1 = 99, - aux_sym_get_diagnostics_statement_token2 = 100, - aux_sym_get_diagnostics_statement_token3 = 101, - aux_sym_for_statement_token1 = 102, - anon_sym_DOT_DOT = 103, - aux_sym_for_statement_token2 = 104, - aux_sym_for_statement_token3 = 105, - aux_sym_raise_statement_token1 = 106, - aux_sym_if_statement_token1 = 107, - aux_sym_if_statement_token2 = 108, - aux_sym_if_statement_token3 = 109, - aux_sym_if_statement_token4 = 110, - aux_sym_if_statement_token5 = 111, - anon_sym_COLON_EQ = 112, - aux_sym_return_statement_token1 = 113, - aux_sym_return_statement_token2 = 114, - aux_sym_perform_statement_token1 = 115, - aux_sym_select_statement_token1 = 116, - aux_sym_with_query_item_token1 = 117, - aux_sym_into_token1 = 118, - aux_sym_select_having_token1 = 119, - aux_sym_select_limit_token1 = 120, - aux_sym_select_offset_token1 = 121, - aux_sym_select_offset_token2 = 122, - aux_sym_select_order_by_token1 = 123, - aux_sym_join_item_token1 = 124, - aux_sym_join_item_token2 = 125, - aux_sym_join_item_token3 = 126, - aux_sym_join_type_token1 = 127, - aux_sym_join_type_token2 = 128, - aux_sym_join_type_token3 = 129, - aux_sym_join_type_token4 = 130, - aux_sym_join_type_token5 = 131, - aux_sym_create_function_statement_token1 = 132, - aux_sym_function_run_as_token1 = 133, - aux_sym_function_run_as_token2 = 134, - aux_sym_function_run_as_token3 = 135, - aux_sym_function_return_token1 = 136, - aux_sym_return_setof_token1 = 137, - aux_sym_function_volatility_token1 = 138, - aux_sym_function_volatility_token2 = 139, - aux_sym_function_volatility_token3 = 140, - aux_sym_body_token1 = 141, - anon_sym_DOLLAR = 142, - aux_sym_declarations_token1 = 143, - aux_sym_where_filter_token1 = 144, - aux_sym_or_replace_token1 = 145, - aux_sym_temporary_token1 = 146, - aux_sym_temporary_token2 = 147, - sym_unlogged = 148, - aux_sym_if_not_exists_token1 = 149, - anon_sym_LBRACK = 150, - anon_sym_RBRACK = 151, - aux_sym__type_token1 = 152, - aux_sym__type_token2 = 153, - aux_sym_predefined_type_token1 = 154, - aux_sym_predefined_type_token2 = 155, - anon_sym_SQUOTE = 156, - aux_sym_string_token1 = 157, - aux_sym_string_token2 = 158, - sym_comment = 159, - anon_sym_DOT = 160, - aux_sym_array_constructor_token1 = 161, - aux_sym_dollar_quote_string_token1 = 162, - aux_sym_time_expression_token1 = 163, - aux_sym_time_expression_token2 = 164, - aux_sym_time_expression_token3 = 165, - aux_sym_time_expression_token4 = 166, - aux_sym__interval_fields_token1 = 167, - aux_sym__interval_fields_token2 = 168, - aux_sym__interval_fields_token3 = 169, - aux_sym__interval_fields_token4 = 170, - aux_sym__interval_fields_token5 = 171, - aux_sym__interval_fields_token6 = 172, - anon_sym_STAR = 173, - anon_sym_SLASH = 174, - anon_sym_PERCENT = 175, - anon_sym_DASH = 176, - anon_sym_PLUS = 177, - anon_sym_LT = 178, - anon_sym_GT = 179, - anon_sym_LT_EQ = 180, - anon_sym_GT_EQ = 181, - anon_sym_LT_GT = 182, - anon_sym_BANG_EQ = 183, - aux_sym_contains_op_token1 = 184, - aux_sym_contains_op_token2 = 185, - aux_sym_contains_op_token3 = 186, - aux_sym_comparison_null_token1 = 187, - aux_sym_comparison_null_token2 = 188, - aux_sym_comparison_null_token3 = 189, - aux_sym_comparison_null_token4 = 190, - aux_sym_comparison_kw_token1 = 191, - aux_sym_comparison_kw_token2 = 192, - aux_sym_comparison_kw_token3 = 193, - anon_sym_PIPE_PIPE = 194, - anon_sym_LT_AT = 195, - anon_sym_AT_GT = 196, - anon_sym_LT_LT = 197, - anon_sym_GT_GT = 198, - anon_sym_AMP_AMP = 199, - anon_sym_AMP_LT = 200, - anon_sym_AMP_GT = 201, - anon_sym_DASH_PIPE_DASH = 202, - sym_cast = 203, - sym_and = 204, - sym_true = 205, - sym_false = 206, - sym_number = 207, - sym__identifier = 208, - sym_source_file = 209, - sym__statement = 210, - sym_drop_type_statement = 211, - sym_update_statement = 212, - sym_drop_function_statement = 213, - sym_drop_function_item = 214, - sym_create_type_statement = 215, - sym__with_query_statement = 216, - sym_insert_statement = 217, - sym_insert_items = 218, - sym_insert_values = 219, - sym_insert_item = 220, - sym_insert_conflict = 221, - sym_conflict_target = 222, - sym_update_set = 223, - sym_update_value = 224, - sym_returning = 225, - sym_create_table_statement = 226, - sym_create_table_item = 227, - sym_create_schema_statement = 228, - sym_schema_role = 229, - sym_create_index_statement = 230, - sym_index_using = 231, - sym_index_col = 232, - sym_index_col_dir = 233, - sym_index_col_nulls = 234, - sym_index_includes = 235, - sym_delete_statement = 236, - sym_delete_using = 237, - sym_alter_table_statement = 238, - sym_alter_table_change = 239, - sym_alter_table_action = 240, - sym_alter_column_action = 241, - sym_table_constraint = 242, - sym_constraint_when = 243, - sym_table_constraint_ty = 244, - sym_constraint_foreign_key = 245, - sym_fk_action = 246, - sym_fk_ref_action = 247, - sym_alter_column_type = 248, - sym_alter_table_fk_ref_action = 249, - sym_table_column_item = 250, - sym_column_constraint = 251, - sym_column_constraint_ty = 252, - sym_alter_table_rename_column = 253, - sym_alter_table_rename_constraint = 254, - sym_alter_table_rename_table = 255, - sym_alter_table_change_schema = 256, - sym_grant_statement = 257, - sym_grant_roles = 258, - sym_grant_privileges = 259, - sym_grant_targets = 260, - sym_grant_function = 261, - sym_psql_statement = 262, - sym_create_sequence_statement = 263, - sym_sequence_increment = 264, - sym_sequence_min = 265, - sym_sequence_max = 266, - sym_sequence_start = 267, - sym_sequence_cache = 268, - sym_sequence_cycle = 269, - sym_sequence_owned = 270, - sym_create_trigger_statement = 271, - sym_trigger_when = 272, - sym_trigger_event = 273, - sym_trigger_scope = 274, - sym_trigger_exec = 275, - sym_trigger_cond = 276, - sym__plpgsql_statement = 277, - sym_open_cursor_statement = 278, - sym_get_diagnostics_statement = 279, - sym_for_statement = 280, - sym_raise_statement = 281, - sym_if_statement = 282, - sym_execute_statement = 283, - sym_execute_using = 284, - sym_assign_statement = 285, - sym_return_statement = 286, - sym_perform_statement = 287, - sym_do_block = 288, - sym_select_statement = 289, - sym_with_query = 290, - sym_with_query_item = 291, - sym_into = 292, - sym_select_having = 293, - sym__select_limit_offset = 294, - sym_select_limit = 295, - sym_select_offset = 296, - sym_select_group_by = 297, - sym_select_order_by = 298, - sym_order_by_item = 299, - sym_order_by_direction = 300, - sym_select_where = 301, - sym_select_item = 302, - sym_select_from = 303, - sym_from_item = 304, - sym_from_select = 305, - sym_from_table = 306, - sym_from_function = 307, - sym_join_item = 308, - sym_join_condition = 309, - sym_join_type = 310, - sym_create_function_statement = 311, - sym_function_run_as = 312, - sym_function_return = 313, - sym_return_setof = 314, - sym_return_table = 315, - sym_function_volatility = 316, - sym_block = 317, - sym_body = 318, - sym_dollar_quote = 319, - sym_declarations = 320, - sym_var_definition = 321, - sym_function_signature = 322, - sym_function_parameters = 323, - sym_var_declaration = 324, - sym_where_filter = 325, - sym_or_replace = 326, - sym_temporary = 327, - sym_if_not_exists = 328, - sym_if_exists = 329, - sym_as = 330, - sym__type = 331, - sym_predefined_type = 332, - sym_precision = 333, - sym_type_length = 334, - sym_string = 335, - sym__value_expression = 336, - sym_array_constructor = 337, - sym_dollar_quote_string = 338, - sym_time_expression = 339, - sym__interval_fields = 340, - sym_function_call = 341, - sym_op_expression = 342, - sym__list_of_identifiers = 343, - sym_comparison_op = 344, - sym_contains_op = 345, - sym_comparison_null = 346, - sym_comparison_kw = 347, - sym_other_op = 348, - sym_minus = 349, - sym_plus = 350, - sym_not = 351, - sym_or = 352, - sym_null = 353, - sym_star = 354, - sym_identifier = 355, - aux_sym_source_file_repeat1 = 356, - aux_sym_drop_type_statement_repeat1 = 357, - aux_sym_update_statement_repeat1 = 358, - aux_sym_update_statement_repeat2 = 359, - aux_sym_drop_function_statement_repeat1 = 360, - aux_sym_drop_function_item_repeat1 = 361, - aux_sym_create_type_statement_repeat1 = 362, - aux_sym_create_type_statement_repeat2 = 363, - aux_sym_insert_items_repeat1 = 364, - aux_sym_insert_values_repeat1 = 365, - aux_sym_conflict_target_repeat1 = 366, - aux_sym_update_set_repeat1 = 367, - aux_sym_returning_repeat1 = 368, - aux_sym_create_table_statement_repeat1 = 369, - aux_sym_create_index_statement_repeat1 = 370, - aux_sym_alter_table_change_repeat1 = 371, - aux_sym_constraint_foreign_key_repeat1 = 372, - aux_sym_table_column_item_repeat1 = 373, - aux_sym_grant_roles_repeat1 = 374, - aux_sym_grant_targets_repeat1 = 375, - aux_sym_grant_function_repeat1 = 376, - aux_sym_psql_statement_repeat1 = 377, - aux_sym_create_sequence_statement_repeat1 = 378, - aux_sym_trigger_event_repeat1 = 379, - aux_sym_for_statement_repeat1 = 380, - aux_sym_if_statement_repeat1 = 381, - aux_sym_with_query_repeat1 = 382, - aux_sym_select_order_by_repeat1 = 383, - aux_sym_from_item_repeat1 = 384, - aux_sym_block_repeat1 = 385, - aux_sym_declarations_repeat1 = 386, - aux_sym__type_repeat1 = 387, - aux_sym_string_repeat1 = 388, - alias_sym_columns = 389, + sym__identifier = 1, + anon_sym_SEMI = 2, + anon_sym_DOT = 3, + anon_sym_LPAREN = 4, + anon_sym_COMMA = 5, + anon_sym_RPAREN = 6, + sym_keyword_create = 7, + sym_keyword_table = 8, + aux_sym_keyword_temporary_token1 = 9, + aux_sym_keyword_temporary_token2 = 10, + sym_keyword_unlogged = 11, + sym_keyword_if = 12, + sym_keyword_not = 13, + sym_keyword_exists = 14, + anon_sym_DASH_DASH = 15, + aux_sym_comment_token1 = 16, + anon_sym_SLASH_STAR = 17, + aux_sym_marginalia_token1 = 18, + anon_sym_SLASH = 19, + anon_sym_DQUOTE = 20, + sym_source_file = 21, + sym_statement = 22, + sym__ddl_statement = 23, + sym__create_statement = 24, + sym_create_table = 25, + sym_table_reference = 26, + sym_column_definitions = 27, + sym_column_definition = 28, + sym_keyword_temporary = 29, + sym__if_not_exists = 30, + sym_comment = 31, + sym_marginalia = 32, + sym_identifier = 33, + aux_sym_source_file_repeat1 = 34, + aux_sym_column_definitions_repeat1 = 35, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_SEMI] = ";", - [aux_sym_drop_type_statement_token1] = "drop_type_statement_token1", - [aux_sym_drop_type_statement_token2] = "drop_type_statement_token2", - [anon_sym_COMMA] = ",", - [aux_sym_drop_type_statement_token3] = "drop_type_statement_token3", - [aux_sym_drop_type_statement_token4] = "drop_type_statement_token4", - [aux_sym_update_statement_token1] = "update_statement_token1", - [aux_sym_update_statement_token2] = "update_statement_token2", - [aux_sym_update_statement_token3] = "update_statement_token3", - [aux_sym_update_statement_token4] = "update_statement_token4", - [aux_sym_drop_function_statement_token1] = "drop_function_statement_token1", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [aux_sym_create_type_statement_token1] = "create_type_statement_token1", - [aux_sym_create_type_statement_token2] = "create_type_statement_token2", - [aux_sym_insert_statement_token1] = "insert_statement_token1", - [aux_sym_insert_statement_token2] = "insert_statement_token2", - [aux_sym_insert_items_token1] = "insert_items_token1", - [aux_sym_insert_items_token2] = "insert_items_token2", - [aux_sym_insert_conflict_token1] = "insert_conflict_token1", - [aux_sym_insert_conflict_token2] = "insert_conflict_token2", - [aux_sym_insert_conflict_token3] = "insert_conflict_token3", - [aux_sym_insert_conflict_token4] = "insert_conflict_token4", - [aux_sym_conflict_target_token1] = "conflict_target_token1", - [anon_sym_EQ] = "=", - [aux_sym_update_set_token1] = "update_set_token1", - [aux_sym_returning_token1] = "returning_token1", - [aux_sym_create_table_statement_token1] = "create_table_statement_token1", - [aux_sym_create_schema_statement_token1] = "create_schema_statement_token1", - [aux_sym_schema_role_token1] = "schema_role_token1", - [aux_sym_schema_role_token2] = "schema_role_token2", - [aux_sym_schema_role_token3] = "schema_role_token3", - [aux_sym_create_index_statement_token1] = "create_index_statement_token1", - [aux_sym_create_index_statement_token2] = "create_index_statement_token2", - [aux_sym_create_index_statement_token3] = "create_index_statement_token3", - [aux_sym_index_using_token1] = "index_using_token1", - [aux_sym_index_col_dir_token1] = "index_col_dir_token1", - [aux_sym_index_col_dir_token2] = "index_col_dir_token2", - [aux_sym_index_col_nulls_token1] = "index_col_nulls_token1", - [aux_sym_index_col_nulls_token2] = "index_col_nulls_token2", - [aux_sym_index_col_nulls_token3] = "index_col_nulls_token3", - [aux_sym_index_includes_token1] = "index_includes_token1", - [aux_sym_delete_statement_token1] = "delete_statement_token1", - [aux_sym_alter_table_statement_token1] = "alter_table_statement_token1", - [aux_sym_alter_table_action_token1] = "alter_table_action_token1", - [aux_sym_alter_table_action_token2] = "alter_table_action_token2", - [aux_sym_alter_column_action_token1] = "alter_column_action_token1", - [aux_sym_alter_column_action_token2] = "alter_column_action_token2", - [aux_sym_alter_column_action_token3] = "alter_column_action_token3", - [aux_sym_constraint_when_token1] = "constraint_when_token1", - [aux_sym_constraint_when_token2] = "constraint_when_token2", - [aux_sym_constraint_when_token3] = "constraint_when_token3", - [aux_sym_constraint_when_token4] = "constraint_when_token4", - [aux_sym_table_constraint_ty_token1] = "table_constraint_ty_token1", - [aux_sym_table_constraint_ty_token2] = "table_constraint_ty_token2", - [aux_sym_table_constraint_ty_token3] = "table_constraint_ty_token3", - [aux_sym_table_constraint_ty_token4] = "table_constraint_ty_token4", - [aux_sym_constraint_foreign_key_token1] = "constraint_foreign_key_token1", - [aux_sym_fk_ref_action_token1] = "fk_ref_action_token1", - [aux_sym_fk_ref_action_token2] = "fk_ref_action_token2", - [aux_sym_alter_table_rename_column_token1] = "alter_table_rename_column_token1", - [aux_sym_alter_table_rename_column_token2] = "alter_table_rename_column_token2", - [aux_sym_grant_statement_token1] = "grant_statement_token1", - [aux_sym_grant_roles_token1] = "grant_roles_token1", - [aux_sym_grant_roles_token2] = "grant_roles_token2", - [aux_sym_grant_privileges_token1] = "grant_privileges_token1", - [aux_sym_grant_privileges_token2] = "grant_privileges_token2", - [aux_sym_grant_targets_token1] = "grant_targets_token1", - [aux_sym_grant_targets_token2] = "grant_targets_token2", - [aux_sym_grant_targets_token3] = "grant_targets_token3", - [aux_sym_grant_targets_token4] = "grant_targets_token4", - [aux_sym_grant_targets_token5] = "grant_targets_token5", - [aux_sym_grant_targets_token6] = "grant_targets_token6", - [aux_sym_grant_targets_token7] = "grant_targets_token7", - [anon_sym_BSLASH] = "\\", - [aux_sym_psql_statement_token1] = "psql_statement_token1", - [aux_sym_sequence_increment_token1] = "sequence_increment_token1", - [aux_sym_sequence_increment_token2] = "sequence_increment_token2", - [aux_sym_sequence_min_token1] = "sequence_min_token1", - [aux_sym_sequence_max_token1] = "sequence_max_token1", - [aux_sym_sequence_start_token1] = "sequence_start_token1", - [aux_sym_sequence_start_token2] = "sequence_start_token2", - [aux_sym_sequence_cache_token1] = "sequence_cache_token1", - [aux_sym_sequence_cycle_token1] = "sequence_cycle_token1", - [aux_sym_sequence_owned_token1] = "sequence_owned_token1", - [aux_sym_sequence_owned_token2] = "sequence_owned_token2", - [aux_sym_create_trigger_statement_token1] = "create_trigger_statement_token1", - [aux_sym_trigger_when_token1] = "trigger_when_token1", - [aux_sym_trigger_when_token2] = "trigger_when_token2", - [aux_sym_trigger_when_token3] = "trigger_when_token3", - [aux_sym_trigger_event_token1] = "trigger_event_token1", - [aux_sym_trigger_event_token2] = "trigger_event_token2", - [aux_sym_trigger_scope_token1] = "trigger_scope_token1", - [aux_sym_trigger_scope_token2] = "trigger_scope_token2", - [aux_sym_trigger_scope_token3] = "trigger_scope_token3", - [aux_sym_trigger_exec_token1] = "trigger_exec_token1", - [aux_sym_trigger_cond_token1] = "trigger_cond_token1", - [aux_sym_open_cursor_statement_token1] = "open_cursor_statement_token1", - [aux_sym_get_diagnostics_statement_token1] = "get_diagnostics_statement_token1", - [aux_sym_get_diagnostics_statement_token2] = "get_diagnostics_statement_token2", - [aux_sym_get_diagnostics_statement_token3] = "get_diagnostics_statement_token3", - [aux_sym_for_statement_token1] = "for_statement_token1", - [anon_sym_DOT_DOT] = "..", - [aux_sym_for_statement_token2] = "for_statement_token2", - [aux_sym_for_statement_token3] = "for_statement_token3", - [aux_sym_raise_statement_token1] = "raise_statement_token1", - [aux_sym_if_statement_token1] = "if_statement_token1", - [aux_sym_if_statement_token2] = "if_statement_token2", - [aux_sym_if_statement_token3] = "if_statement_token3", - [aux_sym_if_statement_token4] = "if_statement_token4", - [aux_sym_if_statement_token5] = "if_statement_token5", - [anon_sym_COLON_EQ] = ":=", - [aux_sym_return_statement_token1] = "return_statement_token1", - [aux_sym_return_statement_token2] = "return_statement_token2", - [aux_sym_perform_statement_token1] = "perform_statement_token1", - [aux_sym_select_statement_token1] = "select_statement_token1", - [aux_sym_with_query_item_token1] = "with_query_item_token1", - [aux_sym_into_token1] = "into_token1", - [aux_sym_select_having_token1] = "select_having_token1", - [aux_sym_select_limit_token1] = "select_limit_token1", - [aux_sym_select_offset_token1] = "select_offset_token1", - [aux_sym_select_offset_token2] = "select_offset_token2", - [aux_sym_select_order_by_token1] = "select_order_by_token1", - [aux_sym_join_item_token1] = "join_item_token1", - [aux_sym_join_item_token2] = "join_item_token2", - [aux_sym_join_item_token3] = "join_item_token3", - [aux_sym_join_type_token1] = "join_type_token1", - [aux_sym_join_type_token2] = "join_type_token2", - [aux_sym_join_type_token3] = "join_type_token3", - [aux_sym_join_type_token4] = "join_type_token4", - [aux_sym_join_type_token5] = "join_type_token5", - [aux_sym_create_function_statement_token1] = "create_function_statement_token1", - [aux_sym_function_run_as_token1] = "function_run_as_token1", - [aux_sym_function_run_as_token2] = "function_run_as_token2", - [aux_sym_function_run_as_token3] = "function_run_as_token3", - [aux_sym_function_return_token1] = "function_return_token1", - [aux_sym_return_setof_token1] = "return_setof_token1", - [aux_sym_function_volatility_token1] = "function_volatility_token1", - [aux_sym_function_volatility_token2] = "function_volatility_token2", - [aux_sym_function_volatility_token3] = "function_volatility_token3", - [aux_sym_body_token1] = "body_token1", - [anon_sym_DOLLAR] = "$", - [aux_sym_declarations_token1] = "declarations_token1", - [aux_sym_where_filter_token1] = "where_filter_token1", - [aux_sym_or_replace_token1] = "or_replace_token1", - [aux_sym_temporary_token1] = "temporary_token1", - [aux_sym_temporary_token2] = "temporary_token2", - [sym_unlogged] = "unlogged", - [aux_sym_if_not_exists_token1] = "if_not_exists_token1", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [aux_sym__type_token1] = "_type_token1", - [aux_sym__type_token2] = "_type_token2", - [aux_sym_predefined_type_token1] = "predefined_type_token1", - [aux_sym_predefined_type_token2] = "predefined_type_token2", - [anon_sym_SQUOTE] = "'", - [aux_sym_string_token1] = "string_token1", - [aux_sym_string_token2] = "string_token2", - [sym_comment] = "comment", - [anon_sym_DOT] = ".", - [aux_sym_array_constructor_token1] = "array_constructor_token1", - [aux_sym_dollar_quote_string_token1] = "dollar_quote_string_token1", - [aux_sym_time_expression_token1] = "time_expression_token1", - [aux_sym_time_expression_token2] = "time_expression_token2", - [aux_sym_time_expression_token3] = "time_expression_token3", - [aux_sym_time_expression_token4] = "time_expression_token4", - [aux_sym__interval_fields_token1] = "_interval_fields_token1", - [aux_sym__interval_fields_token2] = "_interval_fields_token2", - [aux_sym__interval_fields_token3] = "_interval_fields_token3", - [aux_sym__interval_fields_token4] = "_interval_fields_token4", - [aux_sym__interval_fields_token5] = "_interval_fields_token5", - [aux_sym__interval_fields_token6] = "_interval_fields_token6", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_DASH] = "-", - [anon_sym_PLUS] = "+", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_LT_GT] = "<>", - [anon_sym_BANG_EQ] = "!=", - [aux_sym_contains_op_token1] = "contains_op_token1", - [aux_sym_contains_op_token2] = "contains_op_token2", - [aux_sym_contains_op_token3] = "contains_op_token3", - [aux_sym_comparison_null_token1] = "comparison_null_token1", - [aux_sym_comparison_null_token2] = "comparison_null_token2", - [aux_sym_comparison_null_token3] = "comparison_null_token3", - [aux_sym_comparison_null_token4] = "comparison_null_token4", - [aux_sym_comparison_kw_token1] = "comparison_kw_token1", - [aux_sym_comparison_kw_token2] = "comparison_kw_token2", - [aux_sym_comparison_kw_token3] = "comparison_kw_token3", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_LT_AT] = "<@", - [anon_sym_AT_GT] = "@>", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_AMP_LT] = "&<", - [anon_sym_AMP_GT] = "&>", - [anon_sym_DASH_PIPE_DASH] = "-|-", - [sym_cast] = "cast", - [sym_and] = "and", - [sym_true] = "true", - [sym_false] = "false", - [sym_number] = "number", [sym__identifier] = "_identifier", + [anon_sym_SEMI] = ";", + [anon_sym_DOT] = ".", + [anon_sym_LPAREN] = "(", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [sym_keyword_create] = "keyword_create", + [sym_keyword_table] = "keyword_table", + [aux_sym_keyword_temporary_token1] = "keyword_temporary_token1", + [aux_sym_keyword_temporary_token2] = "keyword_temporary_token2", + [sym_keyword_unlogged] = "keyword_unlogged", + [sym_keyword_if] = "keyword_if", + [sym_keyword_not] = "keyword_not", + [sym_keyword_exists] = "keyword_exists", + [anon_sym_DASH_DASH] = "--", + [aux_sym_comment_token1] = "comment_token1", + [anon_sym_SLASH_STAR] = "/*", + [aux_sym_marginalia_token1] = "marginalia_token1", + [anon_sym_SLASH] = "/", + [anon_sym_DQUOTE] = "\"", [sym_source_file] = "source_file", - [sym__statement] = "_statement", - [sym_drop_type_statement] = "drop_type_statement", - [sym_update_statement] = "update_statement", - [sym_drop_function_statement] = "drop_function_statement", - [sym_drop_function_item] = "drop_function_item", - [sym_create_type_statement] = "create_type_statement", - [sym__with_query_statement] = "_with_query_statement", - [sym_insert_statement] = "insert_statement", - [sym_insert_items] = "insert_items", - [sym_insert_values] = "insert_values", - [sym_insert_item] = "insert_item", - [sym_insert_conflict] = "insert_conflict", - [sym_conflict_target] = "conflict_target", - [sym_update_set] = "update_set", - [sym_update_value] = "update_value", - [sym_returning] = "returning", - [sym_create_table_statement] = "create_table_statement", - [sym_create_table_item] = "create_table_item", - [sym_create_schema_statement] = "create_schema_statement", - [sym_schema_role] = "schema_role", - [sym_create_index_statement] = "create_index_statement", - [sym_index_using] = "index_using", - [sym_index_col] = "index_col", - [sym_index_col_dir] = "index_col_dir", - [sym_index_col_nulls] = "index_col_nulls", - [sym_index_includes] = "index_includes", - [sym_delete_statement] = "delete_statement", - [sym_delete_using] = "delete_using", - [sym_alter_table_statement] = "alter_table_statement", - [sym_alter_table_change] = "alter_table_change", - [sym_alter_table_action] = "alter_table_action", - [sym_alter_column_action] = "alter_column_action", - [sym_table_constraint] = "table_constraint", - [sym_constraint_when] = "constraint_when", - [sym_table_constraint_ty] = "table_constraint_ty", - [sym_constraint_foreign_key] = "constraint_foreign_key", - [sym_fk_action] = "fk_action", - [sym_fk_ref_action] = "fk_ref_action", - [sym_alter_column_type] = "alter_column_type", - [sym_alter_table_fk_ref_action] = "alter_table_fk_ref_action", - [sym_table_column_item] = "table_column_item", - [sym_column_constraint] = "column_constraint", - [sym_column_constraint_ty] = "column_constraint_ty", - [sym_alter_table_rename_column] = "alter_table_rename_column", - [sym_alter_table_rename_constraint] = "alter_table_rename_constraint", - [sym_alter_table_rename_table] = "alter_table_rename_table", - [sym_alter_table_change_schema] = "alter_table_change_schema", - [sym_grant_statement] = "grant_statement", - [sym_grant_roles] = "grant_roles", - [sym_grant_privileges] = "grant_privileges", - [sym_grant_targets] = "grant_targets", - [sym_grant_function] = "grant_function", - [sym_psql_statement] = "psql_statement", - [sym_create_sequence_statement] = "create_sequence_statement", - [sym_sequence_increment] = "sequence_increment", - [sym_sequence_min] = "sequence_min", - [sym_sequence_max] = "sequence_max", - [sym_sequence_start] = "sequence_start", - [sym_sequence_cache] = "sequence_cache", - [sym_sequence_cycle] = "sequence_cycle", - [sym_sequence_owned] = "sequence_owned", - [sym_create_trigger_statement] = "create_trigger_statement", - [sym_trigger_when] = "trigger_when", - [sym_trigger_event] = "trigger_event", - [sym_trigger_scope] = "trigger_scope", - [sym_trigger_exec] = "trigger_exec", - [sym_trigger_cond] = "trigger_cond", - [sym__plpgsql_statement] = "_plpgsql_statement", - [sym_open_cursor_statement] = "open_cursor_statement", - [sym_get_diagnostics_statement] = "get_diagnostics_statement", - [sym_for_statement] = "for_statement", - [sym_raise_statement] = "raise_statement", - [sym_if_statement] = "if_statement", - [sym_execute_statement] = "execute_statement", - [sym_execute_using] = "execute_using", - [sym_assign_statement] = "assign_statement", - [sym_return_statement] = "return_statement", - [sym_perform_statement] = "perform_statement", - [sym_do_block] = "do_block", - [sym_select_statement] = "select_statement", - [sym_with_query] = "with_query", - [sym_with_query_item] = "with_query_item", - [sym_into] = "into", - [sym_select_having] = "select_having", - [sym__select_limit_offset] = "_select_limit_offset", - [sym_select_limit] = "select_limit", - [sym_select_offset] = "select_offset", - [sym_select_group_by] = "select_group_by", - [sym_select_order_by] = "select_order_by", - [sym_order_by_item] = "order_by_item", - [sym_order_by_direction] = "order_by_direction", - [sym_select_where] = "select_where", - [sym_select_item] = "select_item", - [sym_select_from] = "select_from", - [sym_from_item] = "from_item", - [sym_from_select] = "from_select", - [sym_from_table] = "from_table", - [sym_from_function] = "from_function", - [sym_join_item] = "join_item", - [sym_join_condition] = "join_condition", - [sym_join_type] = "join_type", - [sym_create_function_statement] = "create_function_statement", - [sym_function_run_as] = "function_run_as", - [sym_function_return] = "function_return", - [sym_return_setof] = "return_setof", - [sym_return_table] = "return_table", - [sym_function_volatility] = "function_volatility", - [sym_block] = "block", - [sym_body] = "body", - [sym_dollar_quote] = "dollar_quote", - [sym_declarations] = "declarations", - [sym_var_definition] = "var_definition", - [sym_function_signature] = "function_signature", - [sym_function_parameters] = "function_parameters", - [sym_var_declaration] = "var_declaration", - [sym_where_filter] = "where_filter", - [sym_or_replace] = "or_replace", - [sym_temporary] = "temporary", - [sym_if_not_exists] = "if_not_exists", - [sym_if_exists] = "if_exists", - [sym_as] = "as", - [sym__type] = "_type", - [sym_predefined_type] = "predefined_type", - [sym_precision] = "precision", - [sym_type_length] = "type_length", - [sym_string] = "string", - [sym__value_expression] = "_value_expression", - [sym_array_constructor] = "array_constructor", - [sym_dollar_quote_string] = "dollar_quote_string", - [sym_time_expression] = "time_expression", - [sym__interval_fields] = "_interval_fields", - [sym_function_call] = "function_call", - [sym_op_expression] = "op_expression", - [sym__list_of_identifiers] = "_list_of_identifiers", - [sym_comparison_op] = "comparison_op", - [sym_contains_op] = "contains_op", - [sym_comparison_null] = "comparison_null", - [sym_comparison_kw] = "comparison_kw", - [sym_other_op] = "other_op", - [sym_minus] = "minus", - [sym_plus] = "plus", - [sym_not] = "not", - [sym_or] = "or", - [sym_null] = "null", - [sym_star] = "star", + [sym_statement] = "statement", + [sym__ddl_statement] = "_ddl_statement", + [sym__create_statement] = "_create_statement", + [sym_create_table] = "create_table", + [sym_table_reference] = "table_reference", + [sym_column_definitions] = "column_definitions", + [sym_column_definition] = "column_definition", + [sym_keyword_temporary] = "keyword_temporary", + [sym__if_not_exists] = "_if_not_exists", + [sym_comment] = "comment", + [sym_marginalia] = "marginalia", [sym_identifier] = "identifier", [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_drop_type_statement_repeat1] = "drop_type_statement_repeat1", - [aux_sym_update_statement_repeat1] = "update_statement_repeat1", - [aux_sym_update_statement_repeat2] = "update_statement_repeat2", - [aux_sym_drop_function_statement_repeat1] = "drop_function_statement_repeat1", - [aux_sym_drop_function_item_repeat1] = "drop_function_item_repeat1", - [aux_sym_create_type_statement_repeat1] = "create_type_statement_repeat1", - [aux_sym_create_type_statement_repeat2] = "create_type_statement_repeat2", - [aux_sym_insert_items_repeat1] = "insert_items_repeat1", - [aux_sym_insert_values_repeat1] = "insert_values_repeat1", - [aux_sym_conflict_target_repeat1] = "conflict_target_repeat1", - [aux_sym_update_set_repeat1] = "update_set_repeat1", - [aux_sym_returning_repeat1] = "returning_repeat1", - [aux_sym_create_table_statement_repeat1] = "create_table_statement_repeat1", - [aux_sym_create_index_statement_repeat1] = "create_index_statement_repeat1", - [aux_sym_alter_table_change_repeat1] = "alter_table_change_repeat1", - [aux_sym_constraint_foreign_key_repeat1] = "constraint_foreign_key_repeat1", - [aux_sym_table_column_item_repeat1] = "table_column_item_repeat1", - [aux_sym_grant_roles_repeat1] = "grant_roles_repeat1", - [aux_sym_grant_targets_repeat1] = "grant_targets_repeat1", - [aux_sym_grant_function_repeat1] = "grant_function_repeat1", - [aux_sym_psql_statement_repeat1] = "psql_statement_repeat1", - [aux_sym_create_sequence_statement_repeat1] = "create_sequence_statement_repeat1", - [aux_sym_trigger_event_repeat1] = "trigger_event_repeat1", - [aux_sym_for_statement_repeat1] = "for_statement_repeat1", - [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_with_query_repeat1] = "with_query_repeat1", - [aux_sym_select_order_by_repeat1] = "select_order_by_repeat1", - [aux_sym_from_item_repeat1] = "from_item_repeat1", - [aux_sym_block_repeat1] = "block_repeat1", - [aux_sym_declarations_repeat1] = "declarations_repeat1", - [aux_sym__type_repeat1] = "_type_repeat1", - [aux_sym_string_repeat1] = "string_repeat1", - [alias_sym_columns] = "columns", + [aux_sym_column_definitions_repeat1] = "column_definitions_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_SEMI] = anon_sym_SEMI, - [aux_sym_drop_type_statement_token1] = aux_sym_drop_type_statement_token1, - [aux_sym_drop_type_statement_token2] = aux_sym_drop_type_statement_token2, - [anon_sym_COMMA] = anon_sym_COMMA, - [aux_sym_drop_type_statement_token3] = aux_sym_drop_type_statement_token3, - [aux_sym_drop_type_statement_token4] = aux_sym_drop_type_statement_token4, - [aux_sym_update_statement_token1] = aux_sym_update_statement_token1, - [aux_sym_update_statement_token2] = aux_sym_update_statement_token2, - [aux_sym_update_statement_token3] = aux_sym_update_statement_token3, - [aux_sym_update_statement_token4] = aux_sym_update_statement_token4, - [aux_sym_drop_function_statement_token1] = aux_sym_drop_function_statement_token1, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [aux_sym_create_type_statement_token1] = aux_sym_create_type_statement_token1, - [aux_sym_create_type_statement_token2] = aux_sym_create_type_statement_token2, - [aux_sym_insert_statement_token1] = aux_sym_insert_statement_token1, - [aux_sym_insert_statement_token2] = aux_sym_insert_statement_token2, - [aux_sym_insert_items_token1] = aux_sym_insert_items_token1, - [aux_sym_insert_items_token2] = aux_sym_insert_items_token2, - [aux_sym_insert_conflict_token1] = aux_sym_insert_conflict_token1, - [aux_sym_insert_conflict_token2] = aux_sym_insert_conflict_token2, - [aux_sym_insert_conflict_token3] = aux_sym_insert_conflict_token3, - [aux_sym_insert_conflict_token4] = aux_sym_insert_conflict_token4, - [aux_sym_conflict_target_token1] = aux_sym_conflict_target_token1, - [anon_sym_EQ] = anon_sym_EQ, - [aux_sym_update_set_token1] = aux_sym_update_set_token1, - [aux_sym_returning_token1] = aux_sym_returning_token1, - [aux_sym_create_table_statement_token1] = aux_sym_create_table_statement_token1, - [aux_sym_create_schema_statement_token1] = aux_sym_create_schema_statement_token1, - [aux_sym_schema_role_token1] = aux_sym_schema_role_token1, - [aux_sym_schema_role_token2] = aux_sym_schema_role_token2, - [aux_sym_schema_role_token3] = aux_sym_schema_role_token3, - [aux_sym_create_index_statement_token1] = aux_sym_create_index_statement_token1, - [aux_sym_create_index_statement_token2] = aux_sym_create_index_statement_token2, - [aux_sym_create_index_statement_token3] = aux_sym_create_index_statement_token3, - [aux_sym_index_using_token1] = aux_sym_index_using_token1, - [aux_sym_index_col_dir_token1] = aux_sym_index_col_dir_token1, - [aux_sym_index_col_dir_token2] = aux_sym_index_col_dir_token2, - [aux_sym_index_col_nulls_token1] = aux_sym_index_col_nulls_token1, - [aux_sym_index_col_nulls_token2] = aux_sym_index_col_nulls_token2, - [aux_sym_index_col_nulls_token3] = aux_sym_index_col_nulls_token3, - [aux_sym_index_includes_token1] = aux_sym_index_includes_token1, - [aux_sym_delete_statement_token1] = aux_sym_delete_statement_token1, - [aux_sym_alter_table_statement_token1] = aux_sym_alter_table_statement_token1, - [aux_sym_alter_table_action_token1] = aux_sym_alter_table_action_token1, - [aux_sym_alter_table_action_token2] = aux_sym_alter_table_action_token2, - [aux_sym_alter_column_action_token1] = aux_sym_alter_column_action_token1, - [aux_sym_alter_column_action_token2] = aux_sym_alter_column_action_token2, - [aux_sym_alter_column_action_token3] = aux_sym_alter_column_action_token3, - [aux_sym_constraint_when_token1] = aux_sym_constraint_when_token1, - [aux_sym_constraint_when_token2] = aux_sym_constraint_when_token2, - [aux_sym_constraint_when_token3] = aux_sym_constraint_when_token3, - [aux_sym_constraint_when_token4] = aux_sym_constraint_when_token4, - [aux_sym_table_constraint_ty_token1] = aux_sym_table_constraint_ty_token1, - [aux_sym_table_constraint_ty_token2] = aux_sym_table_constraint_ty_token2, - [aux_sym_table_constraint_ty_token3] = aux_sym_table_constraint_ty_token3, - [aux_sym_table_constraint_ty_token4] = aux_sym_table_constraint_ty_token4, - [aux_sym_constraint_foreign_key_token1] = aux_sym_constraint_foreign_key_token1, - [aux_sym_fk_ref_action_token1] = aux_sym_fk_ref_action_token1, - [aux_sym_fk_ref_action_token2] = aux_sym_fk_ref_action_token2, - [aux_sym_alter_table_rename_column_token1] = aux_sym_alter_table_rename_column_token1, - [aux_sym_alter_table_rename_column_token2] = aux_sym_alter_table_rename_column_token2, - [aux_sym_grant_statement_token1] = aux_sym_grant_statement_token1, - [aux_sym_grant_roles_token1] = aux_sym_grant_roles_token1, - [aux_sym_grant_roles_token2] = aux_sym_grant_roles_token2, - [aux_sym_grant_privileges_token1] = aux_sym_grant_privileges_token1, - [aux_sym_grant_privileges_token2] = aux_sym_grant_privileges_token2, - [aux_sym_grant_targets_token1] = aux_sym_grant_targets_token1, - [aux_sym_grant_targets_token2] = aux_sym_grant_targets_token2, - [aux_sym_grant_targets_token3] = aux_sym_grant_targets_token3, - [aux_sym_grant_targets_token4] = aux_sym_grant_targets_token4, - [aux_sym_grant_targets_token5] = aux_sym_grant_targets_token5, - [aux_sym_grant_targets_token6] = aux_sym_grant_targets_token6, - [aux_sym_grant_targets_token7] = aux_sym_grant_targets_token7, - [anon_sym_BSLASH] = anon_sym_BSLASH, - [aux_sym_psql_statement_token1] = aux_sym_psql_statement_token1, - [aux_sym_sequence_increment_token1] = aux_sym_sequence_increment_token1, - [aux_sym_sequence_increment_token2] = aux_sym_sequence_increment_token2, - [aux_sym_sequence_min_token1] = aux_sym_sequence_min_token1, - [aux_sym_sequence_max_token1] = aux_sym_sequence_max_token1, - [aux_sym_sequence_start_token1] = aux_sym_sequence_start_token1, - [aux_sym_sequence_start_token2] = aux_sym_sequence_start_token2, - [aux_sym_sequence_cache_token1] = aux_sym_sequence_cache_token1, - [aux_sym_sequence_cycle_token1] = aux_sym_sequence_cycle_token1, - [aux_sym_sequence_owned_token1] = aux_sym_sequence_owned_token1, - [aux_sym_sequence_owned_token2] = aux_sym_sequence_owned_token2, - [aux_sym_create_trigger_statement_token1] = aux_sym_create_trigger_statement_token1, - [aux_sym_trigger_when_token1] = aux_sym_trigger_when_token1, - [aux_sym_trigger_when_token2] = aux_sym_trigger_when_token2, - [aux_sym_trigger_when_token3] = aux_sym_trigger_when_token3, - [aux_sym_trigger_event_token1] = aux_sym_trigger_event_token1, - [aux_sym_trigger_event_token2] = aux_sym_trigger_event_token2, - [aux_sym_trigger_scope_token1] = aux_sym_trigger_scope_token1, - [aux_sym_trigger_scope_token2] = aux_sym_trigger_scope_token2, - [aux_sym_trigger_scope_token3] = aux_sym_trigger_scope_token3, - [aux_sym_trigger_exec_token1] = aux_sym_trigger_exec_token1, - [aux_sym_trigger_cond_token1] = aux_sym_trigger_cond_token1, - [aux_sym_open_cursor_statement_token1] = aux_sym_open_cursor_statement_token1, - [aux_sym_get_diagnostics_statement_token1] = aux_sym_get_diagnostics_statement_token1, - [aux_sym_get_diagnostics_statement_token2] = aux_sym_get_diagnostics_statement_token2, - [aux_sym_get_diagnostics_statement_token3] = aux_sym_get_diagnostics_statement_token3, - [aux_sym_for_statement_token1] = aux_sym_for_statement_token1, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [aux_sym_for_statement_token2] = aux_sym_for_statement_token2, - [aux_sym_for_statement_token3] = aux_sym_for_statement_token3, - [aux_sym_raise_statement_token1] = aux_sym_raise_statement_token1, - [aux_sym_if_statement_token1] = aux_sym_if_statement_token1, - [aux_sym_if_statement_token2] = aux_sym_if_statement_token2, - [aux_sym_if_statement_token3] = aux_sym_if_statement_token3, - [aux_sym_if_statement_token4] = aux_sym_if_statement_token4, - [aux_sym_if_statement_token5] = aux_sym_if_statement_token5, - [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, - [aux_sym_return_statement_token1] = aux_sym_return_statement_token1, - [aux_sym_return_statement_token2] = aux_sym_return_statement_token2, - [aux_sym_perform_statement_token1] = aux_sym_perform_statement_token1, - [aux_sym_select_statement_token1] = aux_sym_select_statement_token1, - [aux_sym_with_query_item_token1] = aux_sym_with_query_item_token1, - [aux_sym_into_token1] = aux_sym_into_token1, - [aux_sym_select_having_token1] = aux_sym_select_having_token1, - [aux_sym_select_limit_token1] = aux_sym_select_limit_token1, - [aux_sym_select_offset_token1] = aux_sym_select_offset_token1, - [aux_sym_select_offset_token2] = aux_sym_select_offset_token2, - [aux_sym_select_order_by_token1] = aux_sym_select_order_by_token1, - [aux_sym_join_item_token1] = aux_sym_join_item_token1, - [aux_sym_join_item_token2] = aux_sym_join_item_token2, - [aux_sym_join_item_token3] = aux_sym_join_item_token3, - [aux_sym_join_type_token1] = aux_sym_join_type_token1, - [aux_sym_join_type_token2] = aux_sym_join_type_token2, - [aux_sym_join_type_token3] = aux_sym_join_type_token3, - [aux_sym_join_type_token4] = aux_sym_join_type_token4, - [aux_sym_join_type_token5] = aux_sym_join_type_token5, - [aux_sym_create_function_statement_token1] = aux_sym_create_function_statement_token1, - [aux_sym_function_run_as_token1] = aux_sym_function_run_as_token1, - [aux_sym_function_run_as_token2] = aux_sym_function_run_as_token2, - [aux_sym_function_run_as_token3] = aux_sym_function_run_as_token3, - [aux_sym_function_return_token1] = aux_sym_function_return_token1, - [aux_sym_return_setof_token1] = aux_sym_return_setof_token1, - [aux_sym_function_volatility_token1] = aux_sym_function_volatility_token1, - [aux_sym_function_volatility_token2] = aux_sym_function_volatility_token2, - [aux_sym_function_volatility_token3] = aux_sym_function_volatility_token3, - [aux_sym_body_token1] = aux_sym_body_token1, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [aux_sym_declarations_token1] = aux_sym_declarations_token1, - [aux_sym_where_filter_token1] = aux_sym_where_filter_token1, - [aux_sym_or_replace_token1] = aux_sym_or_replace_token1, - [aux_sym_temporary_token1] = aux_sym_temporary_token1, - [aux_sym_temporary_token2] = aux_sym_temporary_token2, - [sym_unlogged] = sym_unlogged, - [aux_sym_if_not_exists_token1] = aux_sym_if_not_exists_token1, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [aux_sym__type_token1] = aux_sym__type_token1, - [aux_sym__type_token2] = aux_sym__type_token2, - [aux_sym_predefined_type_token1] = aux_sym_predefined_type_token1, - [aux_sym_predefined_type_token2] = aux_sym_predefined_type_token2, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [aux_sym_string_token1] = aux_sym_string_token1, - [aux_sym_string_token2] = aux_sym_string_token2, - [sym_comment] = sym_comment, - [anon_sym_DOT] = anon_sym_DOT, - [aux_sym_array_constructor_token1] = aux_sym_array_constructor_token1, - [aux_sym_dollar_quote_string_token1] = aux_sym_dollar_quote_string_token1, - [aux_sym_time_expression_token1] = aux_sym_time_expression_token1, - [aux_sym_time_expression_token2] = aux_sym_time_expression_token2, - [aux_sym_time_expression_token3] = aux_sym_time_expression_token3, - [aux_sym_time_expression_token4] = aux_sym_time_expression_token4, - [aux_sym__interval_fields_token1] = aux_sym__interval_fields_token1, - [aux_sym__interval_fields_token2] = aux_sym__interval_fields_token2, - [aux_sym__interval_fields_token3] = aux_sym__interval_fields_token3, - [aux_sym__interval_fields_token4] = aux_sym__interval_fields_token4, - [aux_sym__interval_fields_token5] = aux_sym__interval_fields_token5, - [aux_sym__interval_fields_token6] = aux_sym__interval_fields_token6, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_LT_GT] = anon_sym_LT_GT, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [aux_sym_contains_op_token1] = aux_sym_contains_op_token1, - [aux_sym_contains_op_token2] = aux_sym_contains_op_token2, - [aux_sym_contains_op_token3] = aux_sym_contains_op_token3, - [aux_sym_comparison_null_token1] = aux_sym_comparison_null_token1, - [aux_sym_comparison_null_token2] = aux_sym_comparison_null_token2, - [aux_sym_comparison_null_token3] = aux_sym_comparison_null_token3, - [aux_sym_comparison_null_token4] = aux_sym_comparison_null_token4, - [aux_sym_comparison_kw_token1] = aux_sym_comparison_kw_token1, - [aux_sym_comparison_kw_token2] = aux_sym_comparison_kw_token2, - [aux_sym_comparison_kw_token3] = aux_sym_comparison_kw_token3, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_LT_AT] = anon_sym_LT_AT, - [anon_sym_AT_GT] = anon_sym_AT_GT, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_AMP_LT] = anon_sym_AMP_LT, - [anon_sym_AMP_GT] = anon_sym_AMP_GT, - [anon_sym_DASH_PIPE_DASH] = anon_sym_DASH_PIPE_DASH, - [sym_cast] = sym_cast, - [sym_and] = sym_and, - [sym_true] = sym_true, - [sym_false] = sym_false, - [sym_number] = sym_number, [sym__identifier] = sym__identifier, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [sym_keyword_create] = sym_keyword_create, + [sym_keyword_table] = sym_keyword_table, + [aux_sym_keyword_temporary_token1] = aux_sym_keyword_temporary_token1, + [aux_sym_keyword_temporary_token2] = aux_sym_keyword_temporary_token2, + [sym_keyword_unlogged] = sym_keyword_unlogged, + [sym_keyword_if] = sym_keyword_if, + [sym_keyword_not] = sym_keyword_not, + [sym_keyword_exists] = sym_keyword_exists, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [aux_sym_comment_token1] = aux_sym_comment_token1, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [aux_sym_marginalia_token1] = aux_sym_marginalia_token1, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, [sym_source_file] = sym_source_file, - [sym__statement] = sym__statement, - [sym_drop_type_statement] = sym_drop_type_statement, - [sym_update_statement] = sym_update_statement, - [sym_drop_function_statement] = sym_drop_function_statement, - [sym_drop_function_item] = sym_drop_function_item, - [sym_create_type_statement] = sym_create_type_statement, - [sym__with_query_statement] = sym__with_query_statement, - [sym_insert_statement] = sym_insert_statement, - [sym_insert_items] = sym_insert_items, - [sym_insert_values] = sym_insert_values, - [sym_insert_item] = sym_insert_item, - [sym_insert_conflict] = sym_insert_conflict, - [sym_conflict_target] = sym_conflict_target, - [sym_update_set] = sym_update_set, - [sym_update_value] = sym_update_value, - [sym_returning] = sym_returning, - [sym_create_table_statement] = sym_create_table_statement, - [sym_create_table_item] = sym_create_table_item, - [sym_create_schema_statement] = sym_create_schema_statement, - [sym_schema_role] = sym_schema_role, - [sym_create_index_statement] = sym_create_index_statement, - [sym_index_using] = sym_index_using, - [sym_index_col] = sym_index_col, - [sym_index_col_dir] = sym_index_col_dir, - [sym_index_col_nulls] = sym_index_col_nulls, - [sym_index_includes] = sym_index_includes, - [sym_delete_statement] = sym_delete_statement, - [sym_delete_using] = sym_delete_using, - [sym_alter_table_statement] = sym_alter_table_statement, - [sym_alter_table_change] = sym_alter_table_change, - [sym_alter_table_action] = sym_alter_table_action, - [sym_alter_column_action] = sym_alter_column_action, - [sym_table_constraint] = sym_table_constraint, - [sym_constraint_when] = sym_constraint_when, - [sym_table_constraint_ty] = sym_table_constraint_ty, - [sym_constraint_foreign_key] = sym_constraint_foreign_key, - [sym_fk_action] = sym_fk_action, - [sym_fk_ref_action] = sym_fk_ref_action, - [sym_alter_column_type] = sym_alter_column_type, - [sym_alter_table_fk_ref_action] = sym_alter_table_fk_ref_action, - [sym_table_column_item] = sym_table_column_item, - [sym_column_constraint] = sym_column_constraint, - [sym_column_constraint_ty] = sym_column_constraint_ty, - [sym_alter_table_rename_column] = sym_alter_table_rename_column, - [sym_alter_table_rename_constraint] = sym_alter_table_rename_constraint, - [sym_alter_table_rename_table] = sym_alter_table_rename_table, - [sym_alter_table_change_schema] = sym_alter_table_change_schema, - [sym_grant_statement] = sym_grant_statement, - [sym_grant_roles] = sym_grant_roles, - [sym_grant_privileges] = sym_grant_privileges, - [sym_grant_targets] = sym_grant_targets, - [sym_grant_function] = sym_grant_function, - [sym_psql_statement] = sym_psql_statement, - [sym_create_sequence_statement] = sym_create_sequence_statement, - [sym_sequence_increment] = sym_sequence_increment, - [sym_sequence_min] = sym_sequence_min, - [sym_sequence_max] = sym_sequence_max, - [sym_sequence_start] = sym_sequence_start, - [sym_sequence_cache] = sym_sequence_cache, - [sym_sequence_cycle] = sym_sequence_cycle, - [sym_sequence_owned] = sym_sequence_owned, - [sym_create_trigger_statement] = sym_create_trigger_statement, - [sym_trigger_when] = sym_trigger_when, - [sym_trigger_event] = sym_trigger_event, - [sym_trigger_scope] = sym_trigger_scope, - [sym_trigger_exec] = sym_trigger_exec, - [sym_trigger_cond] = sym_trigger_cond, - [sym__plpgsql_statement] = sym__plpgsql_statement, - [sym_open_cursor_statement] = sym_open_cursor_statement, - [sym_get_diagnostics_statement] = sym_get_diagnostics_statement, - [sym_for_statement] = sym_for_statement, - [sym_raise_statement] = sym_raise_statement, - [sym_if_statement] = sym_if_statement, - [sym_execute_statement] = sym_execute_statement, - [sym_execute_using] = sym_execute_using, - [sym_assign_statement] = sym_assign_statement, - [sym_return_statement] = sym_return_statement, - [sym_perform_statement] = sym_perform_statement, - [sym_do_block] = sym_do_block, - [sym_select_statement] = sym_select_statement, - [sym_with_query] = sym_with_query, - [sym_with_query_item] = sym_with_query_item, - [sym_into] = sym_into, - [sym_select_having] = sym_select_having, - [sym__select_limit_offset] = sym__select_limit_offset, - [sym_select_limit] = sym_select_limit, - [sym_select_offset] = sym_select_offset, - [sym_select_group_by] = sym_select_group_by, - [sym_select_order_by] = sym_select_order_by, - [sym_order_by_item] = sym_order_by_item, - [sym_order_by_direction] = sym_order_by_direction, - [sym_select_where] = sym_select_where, - [sym_select_item] = sym_select_item, - [sym_select_from] = sym_select_from, - [sym_from_item] = sym_from_item, - [sym_from_select] = sym_from_select, - [sym_from_table] = sym_from_table, - [sym_from_function] = sym_from_function, - [sym_join_item] = sym_join_item, - [sym_join_condition] = sym_join_condition, - [sym_join_type] = sym_join_type, - [sym_create_function_statement] = sym_create_function_statement, - [sym_function_run_as] = sym_function_run_as, - [sym_function_return] = sym_function_return, - [sym_return_setof] = sym_return_setof, - [sym_return_table] = sym_return_table, - [sym_function_volatility] = sym_function_volatility, - [sym_block] = sym_block, - [sym_body] = sym_body, - [sym_dollar_quote] = sym_dollar_quote, - [sym_declarations] = sym_declarations, - [sym_var_definition] = sym_var_definition, - [sym_function_signature] = sym_function_signature, - [sym_function_parameters] = sym_function_parameters, - [sym_var_declaration] = sym_var_declaration, - [sym_where_filter] = sym_where_filter, - [sym_or_replace] = sym_or_replace, - [sym_temporary] = sym_temporary, - [sym_if_not_exists] = sym_if_not_exists, - [sym_if_exists] = sym_if_exists, - [sym_as] = sym_as, - [sym__type] = sym__type, - [sym_predefined_type] = sym_predefined_type, - [sym_precision] = sym_precision, - [sym_type_length] = sym_type_length, - [sym_string] = sym_string, - [sym__value_expression] = sym__value_expression, - [sym_array_constructor] = sym_array_constructor, - [sym_dollar_quote_string] = sym_dollar_quote_string, - [sym_time_expression] = sym_time_expression, - [sym__interval_fields] = sym__interval_fields, - [sym_function_call] = sym_function_call, - [sym_op_expression] = sym_op_expression, - [sym__list_of_identifiers] = sym__list_of_identifiers, - [sym_comparison_op] = sym_comparison_op, - [sym_contains_op] = sym_contains_op, - [sym_comparison_null] = sym_comparison_null, - [sym_comparison_kw] = sym_comparison_kw, - [sym_other_op] = sym_other_op, - [sym_minus] = sym_minus, - [sym_plus] = sym_plus, - [sym_not] = sym_not, - [sym_or] = sym_or, - [sym_null] = sym_null, - [sym_star] = sym_star, + [sym_statement] = sym_statement, + [sym__ddl_statement] = sym__ddl_statement, + [sym__create_statement] = sym__create_statement, + [sym_create_table] = sym_create_table, + [sym_table_reference] = sym_table_reference, + [sym_column_definitions] = sym_column_definitions, + [sym_column_definition] = sym_column_definition, + [sym_keyword_temporary] = sym_keyword_temporary, + [sym__if_not_exists] = sym__if_not_exists, + [sym_comment] = sym_comment, + [sym_marginalia] = sym_marginalia, [sym_identifier] = sym_identifier, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_drop_type_statement_repeat1] = aux_sym_drop_type_statement_repeat1, - [aux_sym_update_statement_repeat1] = aux_sym_update_statement_repeat1, - [aux_sym_update_statement_repeat2] = aux_sym_update_statement_repeat2, - [aux_sym_drop_function_statement_repeat1] = aux_sym_drop_function_statement_repeat1, - [aux_sym_drop_function_item_repeat1] = aux_sym_drop_function_item_repeat1, - [aux_sym_create_type_statement_repeat1] = aux_sym_create_type_statement_repeat1, - [aux_sym_create_type_statement_repeat2] = aux_sym_create_type_statement_repeat2, - [aux_sym_insert_items_repeat1] = aux_sym_insert_items_repeat1, - [aux_sym_insert_values_repeat1] = aux_sym_insert_values_repeat1, - [aux_sym_conflict_target_repeat1] = aux_sym_conflict_target_repeat1, - [aux_sym_update_set_repeat1] = aux_sym_update_set_repeat1, - [aux_sym_returning_repeat1] = aux_sym_returning_repeat1, - [aux_sym_create_table_statement_repeat1] = aux_sym_create_table_statement_repeat1, - [aux_sym_create_index_statement_repeat1] = aux_sym_create_index_statement_repeat1, - [aux_sym_alter_table_change_repeat1] = aux_sym_alter_table_change_repeat1, - [aux_sym_constraint_foreign_key_repeat1] = aux_sym_constraint_foreign_key_repeat1, - [aux_sym_table_column_item_repeat1] = aux_sym_table_column_item_repeat1, - [aux_sym_grant_roles_repeat1] = aux_sym_grant_roles_repeat1, - [aux_sym_grant_targets_repeat1] = aux_sym_grant_targets_repeat1, - [aux_sym_grant_function_repeat1] = aux_sym_grant_function_repeat1, - [aux_sym_psql_statement_repeat1] = aux_sym_psql_statement_repeat1, - [aux_sym_create_sequence_statement_repeat1] = aux_sym_create_sequence_statement_repeat1, - [aux_sym_trigger_event_repeat1] = aux_sym_trigger_event_repeat1, - [aux_sym_for_statement_repeat1] = aux_sym_for_statement_repeat1, - [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_with_query_repeat1] = aux_sym_with_query_repeat1, - [aux_sym_select_order_by_repeat1] = aux_sym_select_order_by_repeat1, - [aux_sym_from_item_repeat1] = aux_sym_from_item_repeat1, - [aux_sym_block_repeat1] = aux_sym_block_repeat1, - [aux_sym_declarations_repeat1] = aux_sym_declarations_repeat1, - [aux_sym__type_repeat1] = aux_sym__type_repeat1, - [aux_sym_string_repeat1] = aux_sym_string_repeat1, - [alias_sym_columns] = alias_sym_columns, + [aux_sym_column_definitions_repeat1] = aux_sym_column_definitions_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1207,1419 +137,131 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__identifier] = { + .visible = false, + .named = true, + }, [anon_sym_SEMI] = { .visible = true, .named = false, }, - [aux_sym_drop_type_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_drop_type_statement_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_COMMA] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, - [aux_sym_drop_type_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_drop_type_statement_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_update_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_update_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_update_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_update_statement_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_drop_function_statement_token1] = { - .visible = false, - .named = false, - }, [anon_sym_LPAREN] = { .visible = true, .named = false, }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, [anon_sym_RPAREN] = { .visible = true, .named = false, }, - [aux_sym_create_type_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_type_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_items_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_items_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_conflict_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_conflict_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_conflict_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_conflict_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_conflict_target_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [aux_sym_update_set_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_returning_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_table_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_schema_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_schema_role_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_schema_role_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_schema_role_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_create_index_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_index_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_create_index_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_index_using_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_index_col_dir_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_index_col_dir_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_index_col_nulls_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_index_col_nulls_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_index_col_nulls_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_index_includes_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_delete_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_action_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_action_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_column_action_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_column_action_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_column_action_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_when_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_when_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_when_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_when_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_table_constraint_ty_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_table_constraint_ty_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_table_constraint_ty_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_table_constraint_ty_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_foreign_key_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_fk_ref_action_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_fk_ref_action_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_rename_column_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_rename_column_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_roles_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_roles_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_privileges_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_privileges_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token5] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token6] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_token7] = { - .visible = false, - .named = false, - }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [aux_sym_psql_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_increment_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_increment_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_min_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_max_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_start_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_start_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_cache_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_cycle_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_owned_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_sequence_owned_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_create_trigger_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_when_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_when_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_when_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_event_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_event_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_scope_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_scope_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_scope_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_exec_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_cond_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_open_cursor_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_get_diagnostics_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_get_diagnostics_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_get_diagnostics_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_for_statement_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [aux_sym_for_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_for_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_raise_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_token5] = { - .visible = false, - .named = false, - }, - [anon_sym_COLON_EQ] = { - .visible = true, - .named = false, - }, - [aux_sym_return_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_return_statement_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_perform_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_with_query_item_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_into_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_having_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_limit_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_offset_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_offset_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_select_order_by_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_join_item_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_join_item_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_join_item_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_join_type_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_join_type_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_join_type_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_join_type_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_join_type_token5] = { - .visible = false, - .named = false, - }, - [aux_sym_create_function_statement_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_run_as_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_run_as_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_function_run_as_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_function_return_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_return_setof_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_volatility_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_function_volatility_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_function_volatility_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_body_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [aux_sym_declarations_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_where_filter_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_or_replace_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_temporary_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_temporary_token2] = { - .visible = false, - .named = false, - }, - [sym_unlogged] = { + [sym_keyword_create] = { .visible = true, .named = true, }, - [aux_sym_if_not_exists_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [aux_sym__type_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__type_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_predefined_type_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_predefined_type_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_string_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_token2] = { - .visible = false, - .named = false, - }, - [sym_comment] = { + [sym_keyword_table] = { .visible = true, .named = true, }, - [anon_sym_DOT] = { + [aux_sym_keyword_temporary_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_keyword_temporary_token2] = { + .visible = false, + .named = false, + }, + [sym_keyword_unlogged] = { + .visible = true, + .named = true, + }, + [sym_keyword_if] = { + .visible = true, + .named = true, + }, + [sym_keyword_not] = { + .visible = true, + .named = true, + }, + [sym_keyword_exists] = { + .visible = true, + .named = true, + }, + [anon_sym_DASH_DASH] = { .visible = true, .named = false, }, - [aux_sym_array_constructor_token1] = { + [aux_sym_comment_token1] = { .visible = false, .named = false, }, - [aux_sym_dollar_quote_string_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_time_expression_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_time_expression_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_time_expression_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_time_expression_token4] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token2] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token3] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token4] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token5] = { - .visible = false, - .named = false, - }, - [aux_sym__interval_fields_token6] = { - .visible = false, - .named = false, - }, - [anon_sym_STAR] = { + [anon_sym_SLASH_STAR] = { .visible = true, .named = false, }, + [aux_sym_marginalia_token1] = { + .visible = false, + .named = false, + }, [anon_sym_SLASH] = { .visible = true, .named = false, }, - [anon_sym_PERCENT] = { + [anon_sym_DQUOTE] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [aux_sym_contains_op_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_contains_op_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_contains_op_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_null_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_null_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_null_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_null_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_kw_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_kw_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_comparison_kw_token3] = { - .visible = false, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_AT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_PIPE_DASH] = { - .visible = true, - .named = false, - }, - [sym_cast] = { - .visible = true, - .named = true, - }, - [sym_and] = { - .visible = true, - .named = true, - }, - [sym_true] = { - .visible = true, - .named = true, - }, - [sym_false] = { - .visible = true, - .named = true, - }, - [sym_number] = { - .visible = true, - .named = true, - }, - [sym__identifier] = { - .visible = false, - .named = true, - }, [sym_source_file] = { .visible = true, .named = true, }, - [sym__statement] = { + [sym_statement] = { + .visible = true, + .named = true, + }, + [sym__ddl_statement] = { .visible = false, .named = true, }, - [sym_drop_type_statement] = { - .visible = true, - .named = true, - }, - [sym_update_statement] = { - .visible = true, - .named = true, - }, - [sym_drop_function_statement] = { - .visible = true, - .named = true, - }, - [sym_drop_function_item] = { - .visible = true, - .named = true, - }, - [sym_create_type_statement] = { - .visible = true, - .named = true, - }, - [sym__with_query_statement] = { + [sym__create_statement] = { .visible = false, .named = true, }, - [sym_insert_statement] = { + [sym_create_table] = { .visible = true, .named = true, }, - [sym_insert_items] = { + [sym_table_reference] = { .visible = true, .named = true, }, - [sym_insert_values] = { + [sym_column_definitions] = { .visible = true, .named = true, }, - [sym_insert_item] = { + [sym_column_definition] = { .visible = true, .named = true, }, - [sym_insert_conflict] = { + [sym_keyword_temporary] = { .visible = true, .named = true, }, - [sym_conflict_target] = { - .visible = true, - .named = true, - }, - [sym_update_set] = { - .visible = true, - .named = true, - }, - [sym_update_value] = { - .visible = true, - .named = true, - }, - [sym_returning] = { - .visible = true, - .named = true, - }, - [sym_create_table_statement] = { - .visible = true, - .named = true, - }, - [sym_create_table_item] = { - .visible = true, - .named = true, - }, - [sym_create_schema_statement] = { - .visible = true, - .named = true, - }, - [sym_schema_role] = { - .visible = true, - .named = true, - }, - [sym_create_index_statement] = { - .visible = true, - .named = true, - }, - [sym_index_using] = { - .visible = true, - .named = true, - }, - [sym_index_col] = { - .visible = true, - .named = true, - }, - [sym_index_col_dir] = { - .visible = true, - .named = true, - }, - [sym_index_col_nulls] = { - .visible = true, - .named = true, - }, - [sym_index_includes] = { - .visible = true, - .named = true, - }, - [sym_delete_statement] = { - .visible = true, - .named = true, - }, - [sym_delete_using] = { - .visible = true, - .named = true, - }, - [sym_alter_table_statement] = { - .visible = true, - .named = true, - }, - [sym_alter_table_change] = { - .visible = true, - .named = true, - }, - [sym_alter_table_action] = { - .visible = true, - .named = true, - }, - [sym_alter_column_action] = { - .visible = true, - .named = true, - }, - [sym_table_constraint] = { - .visible = true, - .named = true, - }, - [sym_constraint_when] = { - .visible = true, - .named = true, - }, - [sym_table_constraint_ty] = { - .visible = true, - .named = true, - }, - [sym_constraint_foreign_key] = { - .visible = true, - .named = true, - }, - [sym_fk_action] = { - .visible = true, - .named = true, - }, - [sym_fk_ref_action] = { - .visible = true, - .named = true, - }, - [sym_alter_column_type] = { - .visible = true, - .named = true, - }, - [sym_alter_table_fk_ref_action] = { - .visible = true, - .named = true, - }, - [sym_table_column_item] = { - .visible = true, - .named = true, - }, - [sym_column_constraint] = { - .visible = true, - .named = true, - }, - [sym_column_constraint_ty] = { - .visible = true, - .named = true, - }, - [sym_alter_table_rename_column] = { - .visible = true, - .named = true, - }, - [sym_alter_table_rename_constraint] = { - .visible = true, - .named = true, - }, - [sym_alter_table_rename_table] = { - .visible = true, - .named = true, - }, - [sym_alter_table_change_schema] = { - .visible = true, - .named = true, - }, - [sym_grant_statement] = { - .visible = true, - .named = true, - }, - [sym_grant_roles] = { - .visible = true, - .named = true, - }, - [sym_grant_privileges] = { - .visible = true, - .named = true, - }, - [sym_grant_targets] = { - .visible = true, - .named = true, - }, - [sym_grant_function] = { - .visible = true, - .named = true, - }, - [sym_psql_statement] = { - .visible = true, - .named = true, - }, - [sym_create_sequence_statement] = { - .visible = true, - .named = true, - }, - [sym_sequence_increment] = { - .visible = true, - .named = true, - }, - [sym_sequence_min] = { - .visible = true, - .named = true, - }, - [sym_sequence_max] = { - .visible = true, - .named = true, - }, - [sym_sequence_start] = { - .visible = true, - .named = true, - }, - [sym_sequence_cache] = { - .visible = true, - .named = true, - }, - [sym_sequence_cycle] = { - .visible = true, - .named = true, - }, - [sym_sequence_owned] = { - .visible = true, - .named = true, - }, - [sym_create_trigger_statement] = { - .visible = true, - .named = true, - }, - [sym_trigger_when] = { - .visible = true, - .named = true, - }, - [sym_trigger_event] = { - .visible = true, - .named = true, - }, - [sym_trigger_scope] = { - .visible = true, - .named = true, - }, - [sym_trigger_exec] = { - .visible = true, - .named = true, - }, - [sym_trigger_cond] = { - .visible = true, - .named = true, - }, - [sym__plpgsql_statement] = { + [sym__if_not_exists] = { .visible = false, .named = true, }, - [sym_open_cursor_statement] = { + [sym_comment] = { .visible = true, .named = true, }, - [sym_get_diagnostics_statement] = { - .visible = true, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym_raise_statement] = { - .visible = true, - .named = true, - }, - [sym_if_statement] = { - .visible = true, - .named = true, - }, - [sym_execute_statement] = { - .visible = true, - .named = true, - }, - [sym_execute_using] = { - .visible = true, - .named = true, - }, - [sym_assign_statement] = { - .visible = true, - .named = true, - }, - [sym_return_statement] = { - .visible = true, - .named = true, - }, - [sym_perform_statement] = { - .visible = true, - .named = true, - }, - [sym_do_block] = { - .visible = true, - .named = true, - }, - [sym_select_statement] = { - .visible = true, - .named = true, - }, - [sym_with_query] = { - .visible = true, - .named = true, - }, - [sym_with_query_item] = { - .visible = true, - .named = true, - }, - [sym_into] = { - .visible = true, - .named = true, - }, - [sym_select_having] = { - .visible = true, - .named = true, - }, - [sym__select_limit_offset] = { - .visible = false, - .named = true, - }, - [sym_select_limit] = { - .visible = true, - .named = true, - }, - [sym_select_offset] = { - .visible = true, - .named = true, - }, - [sym_select_group_by] = { - .visible = true, - .named = true, - }, - [sym_select_order_by] = { - .visible = true, - .named = true, - }, - [sym_order_by_item] = { - .visible = true, - .named = true, - }, - [sym_order_by_direction] = { - .visible = true, - .named = true, - }, - [sym_select_where] = { - .visible = true, - .named = true, - }, - [sym_select_item] = { - .visible = true, - .named = true, - }, - [sym_select_from] = { - .visible = true, - .named = true, - }, - [sym_from_item] = { - .visible = true, - .named = true, - }, - [sym_from_select] = { - .visible = true, - .named = true, - }, - [sym_from_table] = { - .visible = true, - .named = true, - }, - [sym_from_function] = { - .visible = true, - .named = true, - }, - [sym_join_item] = { - .visible = true, - .named = true, - }, - [sym_join_condition] = { - .visible = true, - .named = true, - }, - [sym_join_type] = { - .visible = true, - .named = true, - }, - [sym_create_function_statement] = { - .visible = true, - .named = true, - }, - [sym_function_run_as] = { - .visible = true, - .named = true, - }, - [sym_function_return] = { - .visible = true, - .named = true, - }, - [sym_return_setof] = { - .visible = true, - .named = true, - }, - [sym_return_table] = { - .visible = true, - .named = true, - }, - [sym_function_volatility] = { - .visible = true, - .named = true, - }, - [sym_block] = { - .visible = true, - .named = true, - }, - [sym_body] = { - .visible = true, - .named = true, - }, - [sym_dollar_quote] = { - .visible = true, - .named = true, - }, - [sym_declarations] = { - .visible = true, - .named = true, - }, - [sym_var_definition] = { - .visible = true, - .named = true, - }, - [sym_function_signature] = { - .visible = true, - .named = true, - }, - [sym_function_parameters] = { - .visible = true, - .named = true, - }, - [sym_var_declaration] = { - .visible = true, - .named = true, - }, - [sym_where_filter] = { - .visible = true, - .named = true, - }, - [sym_or_replace] = { - .visible = true, - .named = true, - }, - [sym_temporary] = { - .visible = true, - .named = true, - }, - [sym_if_not_exists] = { - .visible = true, - .named = true, - }, - [sym_if_exists] = { - .visible = true, - .named = true, - }, - [sym_as] = { - .visible = true, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - }, - [sym_predefined_type] = { - .visible = true, - .named = true, - }, - [sym_precision] = { - .visible = true, - .named = true, - }, - [sym_type_length] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym__value_expression] = { - .visible = false, - .named = true, - }, - [sym_array_constructor] = { - .visible = true, - .named = true, - }, - [sym_dollar_quote_string] = { - .visible = true, - .named = true, - }, - [sym_time_expression] = { - .visible = true, - .named = true, - }, - [sym__interval_fields] = { - .visible = false, - .named = true, - }, - [sym_function_call] = { - .visible = true, - .named = true, - }, - [sym_op_expression] = { - .visible = true, - .named = true, - }, - [sym__list_of_identifiers] = { - .visible = false, - .named = true, - }, - [sym_comparison_op] = { - .visible = true, - .named = true, - }, - [sym_contains_op] = { - .visible = true, - .named = true, - }, - [sym_comparison_null] = { - .visible = true, - .named = true, - }, - [sym_comparison_kw] = { - .visible = true, - .named = true, - }, - [sym_other_op] = { - .visible = true, - .named = true, - }, - [sym_minus] = { - .visible = true, - .named = true, - }, - [sym_plus] = { - .visible = true, - .named = true, - }, - [sym_not] = { - .visible = true, - .named = true, - }, - [sym_or] = { - .visible = true, - .named = true, - }, - [sym_null] = { - .visible = true, - .named = true, - }, - [sym_star] = { + [sym_marginalia] = { .visible = true, .named = true, }, @@ -2631,189 +273,41 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_drop_type_statement_repeat1] = { + [aux_sym_column_definitions_repeat1] = { .visible = false, .named = false, }, - [aux_sym_update_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_update_statement_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_drop_function_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_drop_function_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_type_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_type_statement_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_items_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_insert_values_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_conflict_target_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_update_set_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_returning_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_table_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_index_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_alter_table_change_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constraint_foreign_key_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_table_column_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_roles_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_targets_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_grant_function_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_psql_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_create_sequence_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_trigger_event_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_for_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_with_query_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_order_by_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_from_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_block_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_declarations_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_columns] = { - .visible = true, - .named = true, - }, }; enum { - field_default_value = 1, - field_name = 2, - field_type = 3, + field_name = 1, + field_schema = 2, }; static const char * const ts_field_names[] = { [0] = NULL, - [field_default_value] = "default_value", [field_name] = "name", - [field_type] = "type", + [field_schema] = "schema", }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [2] = {.index = 0, .length = 2}, - [4] = {.index = 2, .length = 1}, - [6] = {.index = 3, .length = 1}, - [7] = {.index = 4, .length = 1}, + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_name, 0}, - {field_type, 1}, - [2] = - {field_default_value, 2}, - [3] = - {field_default_value, 3}, - [4] = - {field_default_value, 4}, + [1] = + {field_name, 2}, + {field_schema, 0}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [1] = { - [3] = alias_sym_columns, - }, - [3] = { - [4] = alias_sym_columns, - }, - [5] = { - [5] = alias_sym_columns, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__list_of_identifiers, 2, - sym__list_of_identifiers, - alias_sym_columns, 0, }; @@ -2825,7 +319,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4] = 4, [5] = 5, [6] = 6, - [7] = 5, + [7] = 7, [8] = 8, [9] = 9, [10] = 10, @@ -2833,2419 +327,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 9, + [15] = 15, [16] = 16, [17] = 17, - [18] = 4, + [18] = 18, [19] = 19, - [20] = 12, - [21] = 11, + [20] = 20, + [21] = 21, [22] = 22, [23] = 23, - [24] = 10, + [24] = 24, [25] = 25, - [26] = 22, - [27] = 16, - [28] = 3, - [29] = 23, - [30] = 14, - [31] = 25, - [32] = 13, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, [33] = 33, [34] = 34, - [35] = 8, - [36] = 6, + [35] = 35, + [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 19, + [40] = 40, [41] = 41, - [42] = 38, - [43] = 2, - [44] = 2, - [45] = 2, - [46] = 2, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, [47] = 47, - [48] = 33, - [49] = 2, - [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, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 9, - [72] = 16, - [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, - [97] = 97, - [98] = 98, - [99] = 25, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 104, - [105] = 105, - [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, - [123] = 16, - [124] = 5, - [125] = 104, - [126] = 9, - [127] = 127, - [128] = 14, - [129] = 127, - [130] = 58, - [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, - [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, - [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, - [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, - [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, - [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] = 393, - [394] = 103, - [395] = 70, - [396] = 102, - [397] = 110, - [398] = 69, - [399] = 68, - [400] = 61, - [401] = 69, - [402] = 111, - [403] = 68, - [404] = 109, - [405] = 116, - [406] = 127, - [407] = 114, - [408] = 4, - [409] = 105, - [410] = 106, - [411] = 357, - [412] = 104, - [413] = 101, - [414] = 105, - [415] = 104, - [416] = 54, - [417] = 103, - [418] = 102, - [419] = 98, - [420] = 100, - [421] = 50, - [422] = 107, - [423] = 98, - [424] = 5, - [425] = 50, - [426] = 101, - [427] = 61, - [428] = 70, - [429] = 114, - [430] = 106, - [431] = 111, - [432] = 112, - [433] = 107, - [434] = 100, - [435] = 109, - [436] = 116, - [437] = 3, - [438] = 58, - [439] = 358, - [440] = 127, - [441] = 110, - [442] = 102, - [443] = 101, - [444] = 16, - [445] = 9, - [446] = 446, - [447] = 98, - [448] = 114, - [449] = 12, - [450] = 11, - [451] = 127, - [452] = 22, - [453] = 109, - [454] = 106, - [455] = 109, - [456] = 106, - [457] = 107, - [458] = 13, - [459] = 110, - [460] = 460, - [461] = 25, - [462] = 114, - [463] = 105, - [464] = 116, - [465] = 104, - [466] = 116, - [467] = 105, - [468] = 357, - [469] = 107, - [470] = 104, - [471] = 103, - [472] = 98, - [473] = 14, - [474] = 112, - [475] = 54, - [476] = 102, - [477] = 54, - [478] = 110, - [479] = 103, - [480] = 112, - [481] = 111, - [482] = 5, - [483] = 23, - [484] = 58, - [485] = 460, - [486] = 100, - [487] = 4, - [488] = 127, - [489] = 3, - [490] = 3, - [491] = 358, - [492] = 101, - [493] = 10, - [494] = 4, - [495] = 111, - [496] = 100, - [497] = 10, - [498] = 22, - [499] = 13, - [500] = 3, - [501] = 8, - [502] = 11, - [503] = 503, - [504] = 23, - [505] = 6, - [506] = 9, - [507] = 12, - [508] = 4, - [509] = 16, - [510] = 260, - [511] = 511, - [512] = 25, - [513] = 14, - [514] = 8, - [515] = 254, - [516] = 516, - [517] = 19, - [518] = 6, - [519] = 519, - [520] = 47, - [521] = 519, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 519, - [526] = 522, - [527] = 522, - [528] = 519, - [529] = 519, - [530] = 522, - [531] = 531, - [532] = 519, - [533] = 531, - [534] = 38, - [535] = 519, - [536] = 531, - [537] = 33, - [538] = 519, - [539] = 522, - [540] = 519, - [541] = 34, - [542] = 37, - [543] = 543, - [544] = 519, - [545] = 522, - [546] = 531, - [547] = 519, - [548] = 522, - [549] = 549, - [550] = 519, - [551] = 522, - [552] = 522, - [553] = 519, - [554] = 531, - [555] = 531, - [556] = 2, - [557] = 519, - [558] = 531, - [559] = 254, - [560] = 522, - [561] = 531, - [562] = 19, - [563] = 519, - [564] = 519, - [565] = 531, - [566] = 531, - [567] = 531, - [568] = 519, - [569] = 522, - [570] = 2, - [571] = 41, - [572] = 572, - [573] = 573, - [574] = 33, - [575] = 575, - [576] = 47, - [577] = 577, - [578] = 37, - [579] = 579, - [580] = 34, - [581] = 39, - [582] = 38, - [583] = 2, - [584] = 584, - [585] = 2, - [586] = 586, - [587] = 587, - [588] = 69, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 61, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 41, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 70, - [605] = 68, - [606] = 39, - [607] = 607, - [608] = 608, - [609] = 50, - [610] = 610, - [611] = 127, - [612] = 68, - [613] = 50, - [614] = 100, - [615] = 109, - [616] = 110, - [617] = 106, - [618] = 102, - [619] = 3, - [620] = 103, - [621] = 107, - [622] = 70, - [623] = 4, - [624] = 54, - [625] = 111, - [626] = 104, - [627] = 105, - [628] = 98, - [629] = 116, - [630] = 61, - [631] = 69, - [632] = 112, - [633] = 114, - [634] = 101, - [635] = 3, - [636] = 109, - [637] = 102, - [638] = 103, - [639] = 54, - [640] = 107, - [641] = 112, - [642] = 98, - [643] = 4, - [644] = 106, - [645] = 114, - [646] = 104, - [647] = 101, - [648] = 105, - [649] = 116, - [650] = 110, - [651] = 100, - [652] = 111, - [653] = 127, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 659, - [661] = 659, - [662] = 659, - [663] = 659, - [664] = 659, - [665] = 659, - [666] = 659, - [667] = 659, - [668] = 659, - [669] = 659, - [670] = 659, - [671] = 659, - [672] = 659, - [673] = 673, - [674] = 659, - [675] = 659, - [676] = 676, - [677] = 659, - [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, - [692] = 692, - [693] = 691, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 704, - [708] = 705, - [709] = 709, - [710] = 704, - [711] = 711, - [712] = 712, - [713] = 704, - [714] = 699, - [715] = 704, - [716] = 704, - [717] = 705, - [718] = 705, - [719] = 704, - [720] = 720, - [721] = 704, - [722] = 722, - [723] = 704, - [724] = 724, - [725] = 704, - [726] = 705, - [727] = 727, - [728] = 704, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 729, - [737] = 737, - [738] = 732, - [739] = 730, - [740] = 730, - [741] = 732, - [742] = 735, - [743] = 743, - [744] = 733, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 746, - [749] = 747, - [750] = 735, - [751] = 745, - [752] = 732, - [753] = 730, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 733, - [759] = 759, - [760] = 760, - [761] = 759, - [762] = 747, - [763] = 759, - [764] = 759, - [765] = 760, - [766] = 766, - [767] = 729, - [768] = 746, - [769] = 760, - [770] = 759, - [771] = 730, - [772] = 729, - [773] = 773, - [774] = 774, - [775] = 760, - [776] = 745, - [777] = 729, - [778] = 778, - [779] = 779, - [780] = 747, - [781] = 781, - [782] = 782, - [783] = 733, - [784] = 729, - [785] = 734, - [786] = 735, - [787] = 760, - [788] = 759, - [789] = 755, - [790] = 790, - [791] = 755, - [792] = 792, - [793] = 732, - [794] = 729, - [795] = 745, - [796] = 760, - [797] = 730, - [798] = 735, - [799] = 730, - [800] = 759, - [801] = 729, - [802] = 760, - [803] = 759, - [804] = 745, - [805] = 732, - [806] = 735, - [807] = 729, - [808] = 747, - [809] = 734, - [810] = 733, - [811] = 811, - [812] = 760, - [813] = 730, - [814] = 733, - [815] = 746, - [816] = 745, - [817] = 730, - [818] = 732, - [819] = 732, - [820] = 733, - [821] = 821, - [822] = 745, - [823] = 732, - [824] = 746, - [825] = 733, - [826] = 735, - [827] = 827, - [828] = 735, - [829] = 747, - [830] = 746, - [831] = 747, - [832] = 747, - [833] = 735, - [834] = 746, - [835] = 745, - [836] = 745, - [837] = 759, - [838] = 733, - [839] = 745, - [840] = 733, - [841] = 746, - [842] = 766, - [843] = 843, - [844] = 747, - [845] = 732, - [846] = 729, - [847] = 730, - [848] = 735, - [849] = 735, - [850] = 850, - [851] = 747, - [852] = 732, - [853] = 729, - [854] = 854, - [855] = 759, - [856] = 760, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 746, - [861] = 861, - [862] = 760, - [863] = 746, - [864] = 864, - [865] = 760, - [866] = 759, - [867] = 733, - [868] = 868, - [869] = 745, - [870] = 746, - [871] = 871, - [872] = 730, - [873] = 747, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 2, - [883] = 883, - [884] = 875, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 874, - [889] = 877, - [890] = 876, - [891] = 891, - [892] = 891, - [893] = 893, - [894] = 886, - [895] = 895, - [896] = 896, - [897] = 875, - [898] = 898, - [899] = 874, - [900] = 112, - [901] = 901, - [902] = 877, - [903] = 903, - [904] = 116, - [905] = 905, - [906] = 881, - [907] = 907, - [908] = 908, - [909] = 127, - [910] = 910, - [911] = 911, - [912] = 878, - [913] = 876, - [914] = 914, - [915] = 887, - [916] = 883, - [917] = 2, - [918] = 918, - [919] = 896, - [920] = 891, - [921] = 895, - [922] = 886, - [923] = 885, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 881, - [928] = 893, - [929] = 886, - [930] = 930, - [931] = 891, - [932] = 2, - [933] = 112, - [934] = 934, - [935] = 893, - [936] = 936, - [937] = 937, - [938] = 883, - [939] = 939, - [940] = 940, - [941] = 891, - [942] = 887, - [943] = 943, - [944] = 885, - [945] = 945, - [946] = 895, - [947] = 116, - [948] = 886, - [949] = 896, - [950] = 127, - [951] = 908, - [952] = 891, - [953] = 886, - [954] = 954, - [955] = 955, - [956] = 918, - [957] = 926, - [958] = 908, - [959] = 116, - [960] = 127, - [961] = 925, - [962] = 112, - [963] = 930, - [964] = 924, - [965] = 930, - [966] = 925, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 924, - [971] = 971, - [972] = 926, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 881, - [977] = 918, - [978] = 8, - [979] = 883, - [980] = 891, - [981] = 981, - [982] = 891, - [983] = 983, - [984] = 984, - [985] = 881, - [986] = 6, - [987] = 987, - [988] = 886, - [989] = 886, - [990] = 896, - [991] = 2, - [992] = 992, - [993] = 993, - [994] = 969, - [995] = 886, - [996] = 886, - [997] = 896, - [998] = 998, - [999] = 999, - [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, - [1006] = 883, - [1007] = 971, - [1008] = 1008, - [1009] = 974, - [1010] = 127, - [1011] = 116, - [1012] = 908, - [1013] = 1013, - [1014] = 112, - [1015] = 973, - [1016] = 19, - [1017] = 1017, - [1018] = 1018, - [1019] = 891, - [1020] = 891, - [1021] = 2, - [1022] = 1022, - [1023] = 1023, - [1024] = 968, - [1025] = 1025, - [1026] = 975, - [1027] = 1027, - [1028] = 908, - [1029] = 973, - [1030] = 971, - [1031] = 1031, - [1032] = 1032, - [1033] = 116, - [1034] = 112, - [1035] = 1035, - [1036] = 968, - [1037] = 127, - [1038] = 1038, - [1039] = 974, - [1040] = 969, - [1041] = 33, - [1042] = 1042, - [1043] = 1043, - [1044] = 2, - [1045] = 1045, - [1046] = 37, - [1047] = 1047, - [1048] = 38, - [1049] = 1049, - [1050] = 34, - [1051] = 975, - [1052] = 1052, - [1053] = 1053, - [1054] = 39, - [1055] = 1055, - [1056] = 1056, - [1057] = 1057, - [1058] = 1000, - [1059] = 881, - [1060] = 1060, - [1061] = 1022, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 992, - [1069] = 1008, - [1070] = 1070, - [1071] = 1001, - [1072] = 1072, - [1073] = 1073, - [1074] = 1023, - [1075] = 1075, - [1076] = 41, - [1077] = 1077, - [1078] = 1005, - [1079] = 1079, - [1080] = 1017, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1023, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 886, - [1092] = 1092, - [1093] = 1093, - [1094] = 896, - [1095] = 886, - [1096] = 1096, - [1097] = 992, - [1098] = 1000, - [1099] = 50, - [1100] = 1100, - [1101] = 1101, - [1102] = 883, - [1103] = 2, - [1104] = 1008, - [1105] = 891, - [1106] = 1017, - [1107] = 1107, - [1108] = 1108, - [1109] = 1022, - [1110] = 891, - [1111] = 1047, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1001, - [1116] = 1005, - [1117] = 1117, - [1118] = 1056, - [1119] = 1119, - [1120] = 1057, - [1121] = 1047, - [1122] = 127, - [1123] = 116, - [1124] = 1083, - [1125] = 54, - [1126] = 1126, - [1127] = 112, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1066, - [1132] = 1132, - [1133] = 908, - [1134] = 1134, - [1135] = 1135, - [1136] = 1067, - [1137] = 1137, - [1138] = 1060, - [1139] = 1075, - [1140] = 1064, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1082, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1072, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1070, - [1158] = 1158, - [1159] = 1060, - [1160] = 1160, - [1161] = 1161, - [1162] = 1072, - [1163] = 1163, - [1164] = 1056, - [1165] = 1165, - [1166] = 1166, - [1167] = 1083, - [1168] = 1064, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1067, - [1173] = 1173, - [1174] = 1075, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1066, - [1179] = 1179, - [1180] = 1070, - [1181] = 1181, - [1182] = 1182, - [1183] = 1057, - [1184] = 1082, - [1185] = 1132, - [1186] = 1135, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1154, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1128, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1129, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1134, - [1207] = 1137, - [1208] = 1147, - [1209] = 1209, - [1210] = 1150, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1214, - [1215] = 1213, - [1216] = 1216, - [1217] = 1217, - [1218] = 1132, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1150, - [1227] = 1227, - [1228] = 1228, - [1229] = 1213, - [1230] = 1128, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 1137, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1236, - [1242] = 1242, - [1243] = 1243, - [1244] = 1135, - [1245] = 1134, - [1246] = 1236, - [1247] = 1247, - [1248] = 1224, - [1249] = 1232, - [1250] = 1250, - [1251] = 1251, - [1252] = 1129, - [1253] = 1236, - [1254] = 1254, - [1255] = 1213, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1213, - [1260] = 1224, - [1261] = 1236, - [1262] = 1147, - [1263] = 2, - [1264] = 1264, - [1265] = 2, - [1266] = 1154, - [1267] = 1213, - [1268] = 1268, - [1269] = 1269, - [1270] = 1232, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1281, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1060, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1314, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1306, - [1320] = 1320, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1333, - [1334] = 992, - [1335] = 1306, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1328, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1325, - [1348] = 1348, - [1349] = 1349, - [1350] = 1096, - [1351] = 1351, - [1352] = 1352, - [1353] = 1306, - [1354] = 1354, - [1355] = 1306, - [1356] = 1356, - [1357] = 1306, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1060, - [1362] = 1328, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, - [1366] = 1306, - [1367] = 1367, - [1368] = 1368, - [1369] = 1328, - [1370] = 1306, - [1371] = 1371, - [1372] = 1328, - [1373] = 1373, - [1374] = 1374, - [1375] = 1306, - [1376] = 1306, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1306, - [1383] = 1328, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1047, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 992, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1430, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 936, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1365, - [1462] = 1462, - [1463] = 1460, - [1464] = 1462, - [1465] = 1460, - [1466] = 1462, - [1467] = 1460, - [1468] = 981, - [1469] = 1469, - [1470] = 984, - [1471] = 983, - [1472] = 1462, - [1473] = 1460, - [1474] = 987, - [1475] = 1475, - [1476] = 1462, - [1477] = 1460, - [1478] = 1462, - [1479] = 1479, - [1480] = 1460, - [1481] = 1481, - [1482] = 1482, - [1483] = 1462, - [1484] = 1484, - [1485] = 1460, - [1486] = 1462, - [1487] = 1460, - [1488] = 1488, - [1489] = 1462, - [1490] = 1490, - [1491] = 1460, - [1492] = 1492, - [1493] = 1462, - [1494] = 1462, - [1495] = 1352, - [1496] = 1496, - [1497] = 1460, - [1498] = 1498, - [1499] = 1462, - [1500] = 1500, - [1501] = 1460, - [1502] = 1502, - [1503] = 1462, - [1504] = 1460, - [1505] = 1308, - [1506] = 1462, - [1507] = 1460, - [1508] = 1508, - [1509] = 1462, - [1510] = 1460, - [1511] = 1511, - [1512] = 1047, - [1513] = 1513, - [1514] = 1514, - [1515] = 1462, - [1516] = 1460, - [1517] = 1517, - [1518] = 1518, - [1519] = 1343, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1377, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1321, - [1532] = 1532, - [1533] = 1449, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1313, - [1545] = 1545, - [1546] = 1448, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1309, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1312, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1307, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, - [1582] = 1582, - [1583] = 1583, - [1584] = 1308, - [1585] = 1585, - [1586] = 1313, - [1587] = 1309, - [1588] = 1588, - [1589] = 1321, - [1590] = 1307, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, - [1594] = 1594, - [1595] = 1312, - [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 1343, - [1604] = 936, - [1605] = 1605, - [1606] = 1598, - [1607] = 1607, - [1608] = 1607, - [1609] = 1352, - [1610] = 1610, - [1611] = 1611, - [1612] = 1607, - [1613] = 1365, - [1614] = 1607, - [1615] = 1615, - [1616] = 1616, - [1617] = 1607, - [1618] = 1607, - [1619] = 1602, - [1620] = 1607, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1577, - [1625] = 1625, - [1626] = 1626, - [1627] = 1607, - [1628] = 1621, - [1629] = 1622, - [1630] = 1630, - [1631] = 1577, - [1632] = 1632, - [1633] = 1607, - [1634] = 1621, - [1635] = 1622, - [1636] = 1636, - [1637] = 1577, - [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1607, - [1644] = 1621, - [1645] = 1645, - [1646] = 1622, - [1647] = 1647, - [1648] = 1577, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, - [1653] = 1607, - [1654] = 1654, - [1655] = 1621, - [1656] = 1622, - [1657] = 1657, - [1658] = 1658, - [1659] = 1577, - [1660] = 1660, - [1661] = 1607, - [1662] = 1621, - [1663] = 1663, - [1664] = 1622, - [1665] = 1665, - [1666] = 1577, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1607, - [1672] = 1672, - [1673] = 1621, - [1674] = 1622, - [1675] = 1577, - [1676] = 1607, - [1677] = 1677, - [1678] = 1678, - [1679] = 1621, - [1680] = 1680, - [1681] = 1622, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1577, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1607, - [1690] = 1621, - [1691] = 1622, - [1692] = 1577, - [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1549, - [1697] = 1697, - [1698] = 1607, - [1699] = 1621, - [1700] = 1622, - [1701] = 1701, - [1702] = 1577, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1377, - [1715] = 1715, - [1716] = 1716, - [1717] = 1717, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 1598, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1622, - [1748] = 1621, - [1749] = 1607, - [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, - [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1697, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, - [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1805, - [1806] = 2, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1782, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1838, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, - [1842] = 1842, - [1843] = 1833, - [1844] = 955, - [1845] = 1845, - [1846] = 1846, - [1847] = 1782, - [1848] = 1848, - [1849] = 1781, - [1850] = 1850, - [1851] = 1851, - [1852] = 1782, - [1853] = 1853, - [1854] = 1854, - [1855] = 1781, - [1856] = 1856, - [1857] = 1845, - [1858] = 1858, - [1859] = 1782, - [1860] = 1782, - [1861] = 1861, - [1862] = 1862, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1819, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1781, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1845, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1819, - [1888] = 1888, - [1889] = 1781, - [1890] = 1890, - [1891] = 1891, - [1892] = 1845, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1850, - [1901] = 1819, - [1902] = 1781, - [1903] = 1903, - [1904] = 1904, - [1905] = 1845, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1819, - [1915] = 1915, - [1916] = 1916, - [1917] = 1782, - [1918] = 1781, - [1919] = 1919, - [1920] = 1845, - [1921] = 1782, - [1922] = 1922, - [1923] = 1848, - [1924] = 1924, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 1819, - [1933] = 1933, - [1934] = 1781, - [1935] = 1845, - [1936] = 1936, - [1937] = 1937, - [1938] = 1782, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1819, - [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1781, - [1949] = 1845, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, - [1954] = 1819, - [1955] = 1955, - [1956] = 1850, - [1957] = 1819, - [1958] = 1782, - [1959] = 1781, - [1960] = 1960, - [1961] = 1845, - [1962] = 1782, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1978, - [1979] = 1845, - [1980] = 1980, - [1981] = 1845, - [1982] = 1982, - [1983] = 1819, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1781, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1781, - [1996] = 1996, - [1997] = 1819, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 2000, - [2021] = 2021, - [2022] = 2022, - [2023] = 2002, - [2024] = 2003, - [2025] = 2004, - [2026] = 2006, - [2027] = 2008, - [2028] = 2009, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 2013, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2018, - [2039] = 2039, - [2040] = 2000, - [2041] = 2041, - [2042] = 2042, - [2043] = 2001, - [2044] = 2002, - [2045] = 2017, - [2046] = 2046, - [2047] = 2003, - [2048] = 2004, - [2049] = 2049, - [2050] = 2050, - [2051] = 2006, - [2052] = 2008, - [2053] = 2009, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 2013, - [2059] = 2017, - [2060] = 2013, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2018, - [2068] = 2068, - [2069] = 2000, - [2070] = 2070, - [2071] = 2071, - [2072] = 2008, - [2073] = 2002, - [2074] = 2074, - [2075] = 2075, - [2076] = 2003, - [2077] = 2004, - [2078] = 2078, - [2079] = 2079, - [2080] = 2006, - [2081] = 2008, - [2082] = 2009, - [2083] = 2083, - [2084] = 2084, - [2085] = 2013, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2018, - [2094] = 2094, - [2095] = 2000, - [2096] = 2096, - [2097] = 2097, - [2098] = 2002, - [2099] = 2099, - [2100] = 2100, - [2101] = 2003, - [2102] = 2004, - [2103] = 2103, - [2104] = 2018, - [2105] = 2006, - [2106] = 2008, - [2107] = 2009, - [2108] = 2108, - [2109] = 2000, - [2110] = 2013, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2018, - [2119] = 2013, - [2120] = 2000, - [2121] = 2121, - [2122] = 2002, - [2123] = 2123, - [2124] = 2124, - [2125] = 2003, - [2126] = 2004, - [2127] = 2127, - [2128] = 2128, - [2129] = 2006, - [2130] = 2008, - [2131] = 2009, - [2132] = 1833, - [2133] = 2133, - [2134] = 2013, - [2135] = 2135, - [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2018, - [2143] = 2143, - [2144] = 2000, - [2145] = 2145, - [2146] = 2002, - [2147] = 2147, - [2148] = 2148, - [2149] = 2003, - [2150] = 2004, - [2151] = 2151, - [2152] = 2152, - [2153] = 2006, - [2154] = 2008, - [2155] = 2009, - [2156] = 2156, - [2157] = 2157, - [2158] = 2013, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2018, - [2167] = 2167, - [2168] = 2000, - [2169] = 2169, - [2170] = 2002, - [2171] = 2171, - [2172] = 2172, - [2173] = 2003, - [2174] = 2004, - [2175] = 2175, - [2176] = 2176, - [2177] = 2006, - [2178] = 2008, - [2179] = 2009, - [2180] = 2180, - [2181] = 2181, - [2182] = 2013, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2018, - [2191] = 2191, - [2192] = 2000, - [2193] = 2193, - [2194] = 2002, - [2195] = 2195, - [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, - [2210] = 2210, - [2211] = 2211, - [2212] = 2212, - [2213] = 2018, - [2214] = 2018, - [2215] = 2215, - [2216] = 2000, - [2217] = 2217, - [2218] = 2002, - [2219] = 2219, - [2220] = 2220, - [2221] = 2003, - [2222] = 2004, - [2223] = 2223, - [2224] = 2224, - [2225] = 2006, - [2226] = 2008, - [2227] = 2009, - [2228] = 2228, - [2229] = 2229, - [2230] = 2117, - [2231] = 2018, - [2232] = 2232, - [2233] = 2004, - [2234] = 2234, - [2235] = 2235, - [2236] = 2006, - [2237] = 2009, - [2238] = 2238, - [2239] = 2239, - [2240] = 2002, - [2241] = 2018, - [2242] = 2242, - [2243] = 2243, - [2244] = 2003, - [2245] = 2245, - [2246] = 2246, - [2247] = 2018, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, - [2251] = 2117, - [2252] = 2252, - [2253] = 2018, - [2254] = 2004, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2018, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 2018, - [2264] = 2264, - [2265] = 2006, - [2266] = 2266, - [2267] = 2267, - [2268] = 2248, - [2269] = 2269, - [2270] = 2094, - [2271] = 2066, - [2272] = 2272, - [2273] = 2089, - [2274] = 2274, - [2275] = 2275, - [2276] = 2009, - [2277] = 2277, - [2278] = 2249, - [2279] = 2252, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 2267, - [2284] = 2078, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2267, - [2289] = 2248, - [2290] = 2290, - [2291] = 2094, - [2292] = 2292, - [2293] = 2089, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2249, - [2298] = 2252, - [2299] = 2282, - [2300] = 2078, - [2301] = 2301, - [2302] = 2302, - [2303] = 2267, - [2304] = 2094, - [2305] = 2305, - [2306] = 2089, - [2307] = 2307, - [2308] = 2308, - [2309] = 2249, - [2310] = 2252, - [2311] = 2282, - [2312] = 2078, - [2313] = 2313, - [2314] = 2314, - [2315] = 2267, - [2316] = 2094, - [2317] = 2317, - [2318] = 2089, - [2319] = 2319, - [2320] = 2320, - [2321] = 2249, - [2322] = 2252, - [2323] = 2282, - [2324] = 2078, - [2325] = 2325, - [2326] = 2326, - [2327] = 2267, - [2328] = 2094, - [2329] = 2329, - [2330] = 2089, - [2331] = 2331, - [2332] = 2332, - [2333] = 2249, - [2334] = 2252, - [2335] = 2282, - [2336] = 2078, - [2337] = 2337, - [2338] = 2338, - [2339] = 2267, - [2340] = 2094, - [2341] = 2249, - [2342] = 2252, - [2343] = 2282, - [2344] = 2078, - [2345] = 2345, - [2346] = 2267, - [2347] = 2094, - [2348] = 2249, - [2349] = 2252, - [2350] = 2282, - [2351] = 2078, - [2352] = 2352, - [2353] = 2267, - [2354] = 2094, - [2355] = 2249, - [2356] = 2252, - [2357] = 2282, - [2358] = 2078, - [2359] = 2359, - [2360] = 2267, - [2361] = 2094, - [2362] = 2249, - [2363] = 2252, - [2364] = 2282, - [2365] = 2078, - [2366] = 2366, - [2367] = 2267, - [2368] = 2094, - [2369] = 2249, - [2370] = 2252, - [2371] = 2282, - [2372] = 2078, - [2373] = 2249, - [2374] = 2252, - [2375] = 2078, - [2376] = 2376, - [2377] = 2377, - [2378] = 2308, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2308, - [2383] = 2383, - [2384] = 2282, - [2385] = 2308, - [2386] = 2386, - [2387] = 2387, - [2388] = 2308, - [2389] = 2389, - [2390] = 2390, - [2391] = 2308, - [2392] = 2392, - [2393] = 2308, - [2394] = 2308, - [2395] = 2308, - [2396] = 2308, - [2397] = 2308, - [2398] = 2097, - [2399] = 2097, - [2400] = 2097, - [2401] = 2097, - [2402] = 2097, - [2403] = 2097, - [2404] = 2097, - [2405] = 2097, - [2406] = 2097, - [2407] = 2097, - [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, + [48] = 48, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5253,13279 +368,433 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(864); - if (lookahead == '!') ADVANCE(114); - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '\'') ADVANCE(1107); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1160); - if (lookahead == '.') ADVANCE(1123); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '\\') ADVANCE(986); - if (lookahead == ']') ADVANCE(1099); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(193); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(248); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(119); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(122); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(133); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(123); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(302); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(125); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(369); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(299); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(126); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(127); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(138); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(373); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(307); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(805); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(137); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(194); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(158); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(546); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(128); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(411); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(635); + if (eof) ADVANCE(12); + if (lookahead == '"') ADVANCE(28); + if (lookahead == '(') ADVANCE(15); + if (lookahead == ')') ADVANCE(17); + if (lookahead == ',') ADVANCE(16); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(14); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ';') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); - END_STATE(); - case 1: - if (lookahead == ' ') ADVANCE(247); - END_STATE(); - case 2: - if (lookahead == ' ') ADVANCE(383); - END_STATE(); - case 3: - if (lookahead == ' ') ADVANCE(618); - END_STATE(); - case 4: - if (lookahead == ' ') ADVANCE(390); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(111); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == ']') ADVANCE(1099); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(565); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(348); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(409); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(315); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(672); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(477); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(452); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(665); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(679); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(297); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(416); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(582); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(6) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1316); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(7) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(8) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1384); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(9) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(567); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(337); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(478); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(422); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(632); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(375); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(352); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(734); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(10) - END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(683); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(124); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(476); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(249); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(374); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(11) - END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(476); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(251); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(665); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(12) - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(479); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(251); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(734); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(13) - END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(564); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(683); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(124); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(478); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(422); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(632); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(374); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(350); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) - END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1158); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1123); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == ']') ADVANCE(1099); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(566); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(348); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(409); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(145); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(639); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(609); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(475); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(155); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(679); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(297); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(327); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(417); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(582); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(611); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) - END_STATE(); - case 17: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(569); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(144); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(609); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(476); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(251); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(665); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(332); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) - END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(569); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(144); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(609); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(479); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(251); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(141); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(332); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(734); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(18) - END_STATE(); - case 19: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(569); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(144); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(683); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(125); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(478); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(422); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(632); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(374); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(350); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(332); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) - END_STATE(); - case 20: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(568); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(682); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(146); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(683); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(125); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(476); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(249); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(140); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(374); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(351); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(332); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(645); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(20) - END_STATE(); - case 21: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(568); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(347); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(408); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(146); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(638); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(609); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(478); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(422); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(447); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(633); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(375); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(679); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(352); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(332); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(605); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(582); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(420); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(21) - END_STATE(); - case 22: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1316); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(22) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 23: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(23) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 24: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(24) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 25: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1384); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(25) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 26: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '.') ADVANCE(1122); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1410); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(26) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(113); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(27) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 28: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1316); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(28) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 29: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(29) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 30: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1384); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(30) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 31: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1207); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1366); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1316); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1254); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1275); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(31) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 32: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1207); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1366); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1254); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1275); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(32) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 33: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1207); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1471); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1366); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1254); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1275); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(33) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 34: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1207); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1471); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1384); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1366); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1254); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1275); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 35: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1316); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(35) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 36: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(36) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(37) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1384); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1365); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1488); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(38) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(39) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1207); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1205); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1366); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1254); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1275); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(40) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(114); - if (lookahead == '%') ADVANCE(1157); - if (lookahead == '&') ADVANCE(56); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1156); - if (lookahead == ':') ADVANCE(112); - if (lookahead == '<') ADVANCE(1163); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '>') ADVANCE(1164); - if (lookahead == '@') ADVANCE(116); - if (lookahead == '|') ADVANCE(118); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1250); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1383); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1344); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1455); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(41) - if (('0' <= lookahead && lookahead <= '9') || - ('C' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('c' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 42: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '%') ADVANCE(668); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ':') ADVANCE(115); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1306); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(42) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 43: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == ']') ADVANCE(1099); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 44: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1214); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1434); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1351); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1317); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 45: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1214); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1434); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1351); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(45) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 46: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1284); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(46) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 47: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(47) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 48: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(48) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 49: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1393); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 50: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1608); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1278); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 51: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1214); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1434); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1350); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 52: - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == '*') ADVANCE(1155); - if (lookahead == '+') ADVANCE(1162); - if (lookahead == '-') ADVANCE(1161); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1512); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1464); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1600); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1501); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(52) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); - if (('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 53: - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead == '-') ADVANCE(1128); - if (lookahead == '/') ADVANCE(1126); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1127); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 54: - if (lookahead == '%') ADVANCE(668); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '=') ADVANCE(902); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(712); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(410); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(156); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(814); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(683); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(124); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(562); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(250); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(182); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(376); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(679); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(298); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(341); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(582); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(178); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(421); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(54) - END_STATE(); - case 55: - if (lookahead == '%') ADVANCE(668); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1220); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(55) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 56: - if (lookahead == '&') ADVANCE(1190); - if (lookahead == '<') ADVANCE(1191); - if (lookahead == '>') ADVANCE(1192); - END_STATE(); - case 57: - if (lookahead == '\'') ADVANCE(1107); - if (lookahead == '-') ADVANCE(1111); - if (lookahead == '/') ADVANCE(1110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1112); - if (lookahead != 0) ADVANCE(1109); - END_STATE(); - case 58: - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1317); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(58) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 59: - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(59) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 60: - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(60) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 61: - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1435); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(61) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 62: - if (lookahead == '(') ADVANCE(882); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(62) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 63: - if (lookahead == '(') ADVANCE(882); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(712); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(121); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(318); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(820); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(563); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(135); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(608); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(666); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(360); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(195); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(159); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(545); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(178); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(432); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(63) - END_STATE(); - case 64: - if (lookahead == '(') ADVANCE(882); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1435); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1535); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 65: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1317); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 66: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(66) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 67: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(67) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 68: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1435); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1276); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(68) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 69: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1351); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1317); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(69) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 70: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1351); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(70) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 71: - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(71) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 72: - if (lookahead == ')') ADVANCE(883); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1535); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(72) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 73: - if (lookahead == ')') ADVANCE(883); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1277); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1535); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(73) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 74: - if (lookahead == ')') ADVANCE(883); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1340); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1475); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1505); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1432); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(74) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 75: - if (lookahead == ')') ADVANCE(883); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1284); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(75) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 76: - if (lookahead == ')') ADVANCE(883); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(76) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 77: - if (lookahead == '*') ADVANCE(81); - END_STATE(); - case 78: - if (lookahead == '*') ADVANCE(78); - if (lookahead == '/') ADVANCE(1113); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 79: - if (lookahead == '*') ADVANCE(78); - if (lookahead == 'I' || - lookahead == 's') ADVANCE(1136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 80: - if (lookahead == '*') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 81: - if (lookahead == '*') ADVANCE(78); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 82: - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1417); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1287); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(82) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 83: - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1493); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1436); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1350); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1337); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(83) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 84: - if (lookahead == '-') ADVANCE(1121); - END_STATE(); - case 85: - if (lookahead == '-') ADVANCE(1193); - END_STATE(); - case 86: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(986); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1285); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1385); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1459); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1297); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1321); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1480); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1294); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1212); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1479); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(86) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 87: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(986); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1285); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1426); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1459); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1297); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1321); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1480); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1294); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1212); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1479); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(87) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 88: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\\') ADVANCE(986); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1508); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1285); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1608); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1459); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1297); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1321); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1480); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1294); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1212); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1290); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1479); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(88) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 89: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(987); - if (lookahead == '\t' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(89) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 90: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(90) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 91: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1591); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(91) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 92: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1591); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 93: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1394); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1588); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1514); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1472); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1241); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1208); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 94: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1394); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 95: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1291); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1295); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 96: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1339); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1475); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1505); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1432); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(96) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 97: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1454); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 98: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1454); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 99: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1465); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 100: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1510); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1435); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1289); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1227); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1352); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1535); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 101: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1468); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 102: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1590); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1497); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1595); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 103: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1590); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1312); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(103) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 104: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1588); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1514); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 105: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(105) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 106: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(106) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 107: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1583); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1308); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1208); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1220); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(107) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 108: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1474); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(108) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 109: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(109) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 110: - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1571); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(110) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 111: - if (lookahead == '.') ADVANCE(1025); - END_STATE(); - case 112: - if (lookahead == ':') ADVANCE(1194); - END_STATE(); - case 113: - if (lookahead == ':') ADVANCE(1194); - if (lookahead == '=') ADVANCE(1041); - END_STATE(); - case 114: - if (lookahead == '=') ADVANCE(1168); - END_STATE(); - case 115: - if (lookahead == '=') ADVANCE(1041); - END_STATE(); - case 116: - if (lookahead == '>') ADVANCE(1187); - END_STATE(); - case 117: - if (lookahead == '_') ADVANCE(835); - END_STATE(); - case 118: - if (lookahead == '|') ADVANCE(1185); - END_STATE(); - case 119: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(221); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(304); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(488); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(305); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(674); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(204); - END_STATE(); - case 120: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(221); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(304); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(594); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(305); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(710); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(204); - END_STATE(); - case 121: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(221); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(594); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(204); - END_STATE(); - case 122: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(770); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(206); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(134); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(897); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); - END_STATE(); - case 123: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(489); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(695); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(650); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(617); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(491); - END_STATE(); - case 124: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(839); - END_STATE(); - case 125: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(839); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(808); - END_STATE(); - case 126: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(571); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(381); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 127: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(794); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(547); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(576); - END_STATE(); - case 128: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(522); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(495); - END_STATE(); - case 129: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(189); - END_STATE(); - case 130: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(189); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(451); - END_STATE(); - case 131: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(942); - END_STATE(); - case 132: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(909); - END_STATE(); - case 133: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(205); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(723); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(233); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(310); - END_STATE(); - case 134: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(399); - END_STATE(); - case 135: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(846); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(603); - END_STATE(); - case 136: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(850); - END_STATE(); - case 137: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(454); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(387); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(395); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(823); - END_STATE(); - case 138: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(956); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(494); - END_STATE(); - case 139: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(957); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(493); - END_STATE(); - case 140: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(764); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(516); - END_STATE(); - case 141: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(782); - END_STATE(); - case 142: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(772); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(760); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(493); - END_STATE(); - case 143: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(241); - END_STATE(); - case 144: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(848); - END_STATE(); - case 145: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(848); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); - END_STATE(); - case 146: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(848); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); - END_STATE(); - case 147: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(652); - END_STATE(); - case 148: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(523); - END_STATE(); - case 149: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(239); - END_STATE(); - case 150: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(485); - END_STATE(); - case 151: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(500); - END_STATE(); - case 152: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(673); - END_STATE(); - case 153: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(661); - END_STATE(); - case 154: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(675); - END_STATE(); - case 155: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(570); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(471); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 156: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(769); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); - END_STATE(); - case 157: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(685); - END_STATE(); - case 158: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(187); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(532); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(311); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(537); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(431); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(646); - END_STATE(); - case 159: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(187); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(532); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(430); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(646); - END_STATE(); - case 160: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(779); - END_STATE(); - case 161: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(585); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(806); - END_STATE(); - case 162: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); - END_STATE(); - case 163: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - END_STATE(); - case 164: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(702); - END_STATE(); - case 165: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(702); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(600); - END_STATE(); - case 166: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(686); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(600); - END_STATE(); - case 167: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(217); - END_STATE(); - case 168: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(402); - END_STATE(); - case 169: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(799); - END_STATE(); - case 170: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(692); - END_STATE(); - case 171: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); - END_STATE(); - case 172: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(507); - END_STATE(); - case 173: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(465); - END_STATE(); - case 174: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); - END_STATE(); - case 175: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(786); - END_STATE(); - case 176: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(524); - END_STATE(); - case 177: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(190); - END_STATE(); - case 178: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(521); - END_STATE(); - case 179: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(521); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(495); - END_STATE(); - case 180: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(191); - END_STATE(); - case 181: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(191); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(236); - END_STATE(); - case 182: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(793); - END_STATE(); - case 183: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(192); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(815); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(646); - END_STATE(); - case 184: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(188); - END_STATE(); - case 185: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(801); - END_STATE(); - case 186: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(520); - END_STATE(); - case 187: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(509); - END_STATE(); - case 188: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(510); - END_STATE(); - case 189: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(510); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(749); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(357); - END_STATE(); - case 190: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(513); - END_STATE(); - case 191: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(514); - END_STATE(); - case 192: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(515); - END_STATE(); - case 193: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(768); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(231); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(787); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(480); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(669); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(874); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1138); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(765); - END_STATE(); - case 194: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(413); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(197); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(130); - END_STATE(); - case 195: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(413); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(519); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(157); - END_STATE(); - case 196: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(622); - END_STATE(); - case 197: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(622); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(827); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(738); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(876); - END_STATE(); - case 198: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(925); - END_STATE(); - case 199: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(964); - END_STATE(); - case 200: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1102); - END_STATE(); - case 201: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(924); - END_STATE(); - case 202: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(501); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(301); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(325); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(346); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(607); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(634); - END_STATE(); - case 203: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(470); - END_STATE(); - case 204: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(506); - END_STATE(); - case 205: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(405); - END_STATE(); - case 206: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(517); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(166); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(355); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(198); - END_STATE(); - case 207: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(834); - END_STATE(); - case 208: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(418); - END_STATE(); - case 209: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(143); - END_STATE(); - case 210: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(718); - END_STATE(); - case 211: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(752); - END_STATE(); - case 212: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(753); - END_STATE(); - case 213: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(312); - END_STATE(); - case 214: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(756); - END_STATE(); - case 215: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(757); - END_STATE(); - case 216: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(767); - END_STATE(); - case 217: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(279); - END_STATE(); - case 218: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(286); - END_STATE(); - case 219: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(324); - END_STATE(); - case 220: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(333); - END_STATE(); - case 221: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(414); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(209); - END_STATE(); - case 222: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(837); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(525); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(789); - END_STATE(); - case 223: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(813); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(836); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(876); - END_STATE(); - case 224: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(621); - END_STATE(); - case 225: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(711); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(301); - END_STATE(); - case 226: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(174); - END_STATE(); - case 227: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(800); - END_STATE(); - case 228: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(802); - END_STATE(); - case 229: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(803); - END_STATE(); - case 230: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(231); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(787); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(790); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(874); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(765); - END_STATE(); - case 231: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(934); - END_STATE(); - case 232: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1195); - END_STATE(); - case 233: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1028); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(527); - END_STATE(); - case 234: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(997); - END_STATE(); - case 235: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1153); - END_STATE(); - case 236: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(946); - END_STATE(); - case 237: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1096); - END_STATE(); - case 238: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1050); - END_STATE(); - case 239: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(3); - END_STATE(); - case 240: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(466); - END_STATE(); - case 241: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(276); - END_STATE(); - case 242: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(296); - END_STATE(); - case 243: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(434); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(626); - END_STATE(); - case 244: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(831); - END_STATE(); - case 245: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(331); - END_STATE(); - case 246: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(171); - END_STATE(); - case 247: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(468); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(832); - END_STATE(); - case 248: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(380); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(989); - END_STATE(); - case 249: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(381); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 250: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(381); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 251: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(381); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(471); - END_STATE(); - case 252: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(551); - END_STATE(); - case 253: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1040); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(370); - END_STATE(); - case 254: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1171); - END_STATE(); - case 255: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(998); - END_STATE(); - case 256: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1140); - END_STATE(); - case 257: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1197); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(226); - END_STATE(); - case 258: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(868); - END_STATE(); - case 259: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1141); - END_STATE(); - case 260: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1101); - END_STATE(); - case 261: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(995); - END_STATE(); - case 262: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(996); - END_STATE(); - case 263: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1199); - END_STATE(); - case 264: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1173); - END_STATE(); - case 265: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1030); - END_STATE(); - case 266: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(907); - END_STATE(); - case 267: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1091); - END_STATE(); - case 268: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1001); - END_STATE(); - case 269: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(884); - END_STATE(); - case 270: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(930); - END_STATE(); - case 271: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1151); - END_STATE(); - case 272: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(959); - END_STATE(); - case 273: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1084); - END_STATE(); - case 274: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(917); - END_STATE(); - case 275: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(872); - END_STATE(); - case 276: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(870); - END_STATE(); - case 277: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1089); - END_STATE(); - case 278: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1013); - END_STATE(); - case 279: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1093); - END_STATE(); - case 280: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1023); - END_STATE(); - case 281: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(984); - END_STATE(); - case 282: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1100); - END_STATE(); - case 283: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1077); - END_STATE(); - case 284: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(991); - END_STATE(); - case 285: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(990); - END_STATE(); - case 286: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(980); - END_STATE(); - case 287: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1004); - END_STATE(); - case 288: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1085); - END_STATE(); - case 289: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(945); - END_STATE(); - case 290: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1083); - END_STATE(); - case 291: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(982); - END_STATE(); - case 292: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(943); - END_STATE(); - case 293: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(384); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(134); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(897); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); - END_STATE(); - case 294: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(388); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(395); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(842); - END_STATE(); - case 295: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(223); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(129); - END_STATE(); - case 296: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(929); - END_STATE(); - case 297: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(389); - END_STATE(); - case 298: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(389); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(395); - END_STATE(); - case 299: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(849); - END_STATE(); - case 300: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(147); - END_STATE(); - case 301: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(845); - END_STATE(); - case 302: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(741); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(161); - END_STATE(); - case 303: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(776); - END_STATE(); - case 304: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(203); - END_STATE(); - case 305: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(160); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(725); - END_STATE(); - case 306: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(234); - END_STATE(); - case 307: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(670); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(424); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(186); - END_STATE(); - case 308: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(549); - END_STATE(); - case 309: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); - END_STATE(); - case 310: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(207); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(728); - END_STATE(); - case 311: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(550); - END_STATE(); - case 312: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - END_STATE(); - case 313: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(536); - END_STATE(); - case 314: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(671); - END_STATE(); - case 315: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(378); - END_STATE(); - case 316: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(211); - END_STATE(); - case 317: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(715); - END_STATE(); - case 318: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(382); - END_STATE(); - case 319: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(237); - END_STATE(); - case 320: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(653); - END_STATE(); - case 321: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(716); - END_STATE(); - case 322: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(238); - END_STATE(); - case 323: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(654); - END_STATE(); - case 324: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(717); - END_STATE(); - case 325: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(655); - END_STATE(); - case 326: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(677); - END_STATE(); - case 327: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(196); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(184); - END_STATE(); - case 328: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(719); - END_STATE(); - case 329: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(700); - END_STATE(); - case 330: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(450); - END_STATE(); - case 331: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(656); - END_STATE(); - case 332: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(224); - END_STATE(); - case 333: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(721); - END_STATE(); - case 334: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(595); - END_STATE(); - case 335: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(657); - END_STATE(); - case 336: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(149); - END_STATE(); - case 337: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(724); - END_STATE(); - case 338: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(556); - END_STATE(); - case 339: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(704); - END_STATE(); - case 340: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(751); - END_STATE(); - case 341: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(518); - END_STATE(); - case 342: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(659); - END_STATE(); - case 343: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(660); - END_STATE(); - case 344: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(662); - END_STATE(); - case 345: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(663); - END_STATE(); - case 346: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(691); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(336); - END_STATE(); - case 347: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(766); - END_STATE(); - case 348: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(766); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(989); - END_STATE(); - case 349: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(664); - END_STATE(); - case 350: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(795); - END_STATE(); - case 351: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(795); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(395); - END_STATE(); - case 352: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(795); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(841); - END_STATE(); - case 353: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(701); - END_STATE(); - case 354: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(379); - END_STATE(); - case 355: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(780); - END_STATE(); - case 356: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(586); - END_STATE(); - case 357: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(542); - END_STATE(); - case 358: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(403); - END_STATE(); - case 359: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(587); - END_STATE(); - case 360: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(726); - END_STATE(); - case 361: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(338); - END_STATE(); - case 362: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(588); - END_STATE(); - case 363: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(688); - END_STATE(); - case 364: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(590); - END_STATE(); - case 365: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(591); - END_STATE(); - case 366: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(596); - END_STATE(); - case 367: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(597); - END_STATE(); - case 368: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(543); - END_STATE(); - case 369: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1032); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(526); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(978); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 370: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1035); - END_STATE(); - case 371: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1037); - END_STATE(); - case 372: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1003); - END_STATE(); - case 373: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(308); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1008); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(797); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(578); - END_STATE(); - case 374: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1008); - END_STATE(); - case 375: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); - END_STATE(); - case 376: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(245); - END_STATE(); - case 377: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(385); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(245); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(578); - END_STATE(); - case 378: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(164); - END_STATE(); - case 379: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(637); - END_STATE(); - case 380: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(637); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(435); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(844); - END_STATE(); - case 381: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(744); - END_STATE(); - case 382: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(163); - END_STATE(); - case 383: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(696); - END_STATE(); - case 384: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(165); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(355); - END_STATE(); - case 385: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(731); - END_STATE(); - case 386: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(629); - END_STATE(); - case 387: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(339); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(162); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(498); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(788); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(812); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); - END_STATE(); - case 388: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(339); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(162); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(788); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(817); - END_STATE(); - case 389: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(339); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(819); - END_STATE(); - case 390: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(699); - END_STATE(); - case 391: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(922); - END_STATE(); - case 392: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1053); - END_STATE(); - case 393: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(905); - END_STATE(); - case 394: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(899); - END_STATE(); - case 395: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(415); - END_STATE(); - case 396: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(404); - END_STATE(); - case 397: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(825); - END_STATE(); - case 398: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(401); - END_STATE(); - case 399: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(580); - END_STATE(); - case 400: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(561); - END_STATE(); - case 401: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(319); - END_STATE(); - case 402: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(283); - END_STATE(); - case 403: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(321); - END_STATE(); - case 404: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(343); - END_STATE(); - case 405: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1011); - END_STATE(); - case 406: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(993); - END_STATE(); - case 407: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1145); - END_STATE(); - case 408: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(304); - END_STATE(); - case 409: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(304); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(594); - END_STATE(); - case 410: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(304); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(594); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(610); - END_STATE(); - case 411: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(252); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(771); - END_STATE(); - case 412: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(627); - END_STATE(); - case 413: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(313); - END_STATE(); - case 414: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(261); - END_STATE(); - case 415: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(748); - END_STATE(); - case 416: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(311); - END_STATE(); - case 417: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(311); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); - END_STATE(); - case 418: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(153); - END_STATE(); - case 419: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(448); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(828); - END_STATE(); - case 420: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(363); - END_STATE(); - case 421: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(363); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(771); - END_STATE(); - case 422: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 423: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(473); - END_STATE(); - case 424: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(213); - END_STATE(); - case 425: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(649); - END_STATE(); - case 426: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(649); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(636); - END_STATE(); - case 427: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(860); - END_STATE(); - case 428: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(859); - END_STATE(); - case 429: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(548); - END_STATE(); - case 430: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(396); - END_STATE(); - case 431: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(396); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(257); - END_STATE(); - case 432: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(771); - END_STATE(); - case 433: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); - END_STATE(); - case 434: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(739); - END_STATE(); - case 435: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(552); - END_STATE(); - case 436: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(199); - END_STATE(); - case 437: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(574); - END_STATE(); - case 438: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(200); - END_STATE(); - case 439: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(210); - END_STATE(); - case 440: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - END_STATE(); - case 441: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(747); - END_STATE(); - case 442: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(172); - END_STATE(); - case 443: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(598); - END_STATE(); - case 444: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(773); - END_STATE(); - case 445: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(577); - END_STATE(); - case 446: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(577); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1081); - END_STATE(); - case 447: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(602); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(576); - END_STATE(); - case 448: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(579); - END_STATE(); - case 449: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(623); - END_STATE(); - case 450: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(400); - END_STATE(); - case 451: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(212); - END_STATE(); - case 452: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(471); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(614); - END_STATE(); - case 453: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(624); - END_STATE(); - case 454: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(732); - END_STATE(); - case 455: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(214); - END_STATE(); - case 456: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(151); - END_STATE(); - case 457: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(625); - END_STATE(); - case 458: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(511); - END_STATE(); - case 459: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(592); - END_STATE(); - case 460: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(215); - END_STATE(); - case 461: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(325); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(607); - END_STATE(); - case 462: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(628); - END_STATE(); - case 463: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(512); - END_STATE(); - case 464: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(630); - END_STATE(); - case 465: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); - END_STATE(); - case 466: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(175); - END_STATE(); - case 467: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(604); - END_STATE(); - case 468: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(740); - END_STATE(); - case 469: - if (lookahead == 'I' || - lookahead == 's') ADVANCE(1131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); - END_STATE(); - case 470: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(947); - END_STATE(); - case 471: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(254); - END_STATE(); - case 472: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(254); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(441); - END_STATE(); - case 473: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(264); - END_STATE(); - case 474: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(349); - END_STATE(); - case 475: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(534); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(974); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 476: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(978); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 477: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(974); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 478: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(979); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 479: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(423); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(977); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1182); - END_STATE(); - case 480: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(968); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); - END_STATE(); - case 481: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1075); - END_STATE(); - case 482: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(940); - END_STATE(); - case 483: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1176); - END_STATE(); - case 484: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1175); - END_STATE(); - case 485: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1062); - END_STATE(); - case 486: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1179); - END_STATE(); - case 487: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1178); - END_STATE(); - case 488: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(807); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(222); - END_STATE(); - case 489: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(730); - END_STATE(); - case 490: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(481); - END_STATE(); - case 491: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(481); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(227); - END_STATE(); - case 492: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(481); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(228); - END_STATE(); - case 493: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(482); - END_STATE(); - case 494: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(482); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(329); - END_STATE(); - case 495: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(169); - END_STATE(); - case 496: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(855); - END_STATE(); - case 497: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(856); - END_STATE(); - case 498: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(167); - END_STATE(); - case 499: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(483); - END_STATE(); - case 500: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(428); - END_STATE(); - case 501: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(826); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(368); - END_STATE(); - case 502: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(484); - END_STATE(); - case 503: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(486); - END_STATE(); - case 504: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(722); - END_STATE(); - case 505: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(487); - END_STATE(); - case 506: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(262); - END_STATE(); - case 507: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(497); - END_STATE(); - case 508: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(755); - END_STATE(); - case 509: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(266); - END_STATE(); - case 510: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(273); - END_STATE(); - case 511: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(358); - END_STATE(); - case 512: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(288); - END_STATE(); - case 513: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(290); - END_STATE(); - case 514: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(292); - END_STATE(); - case 515: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(328); - END_STATE(); - case 516: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(504); - END_STATE(); - case 517: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(170); - END_STATE(); - case 518: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); - END_STATE(); - case 519: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(827); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(876); - END_STATE(); - case 520: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(436); - END_STATE(); - case 521: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(816); - END_STATE(); - case 522: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(816); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(208); - END_STATE(); - case 523: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(821); - END_STATE(); - case 524: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(822); - END_STATE(); - case 525: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(455); - END_STATE(); - case 526: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(303); - END_STATE(); - case 527: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(886); - END_STATE(); - case 528: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(878); - END_STATE(); - case 529: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1046); - END_STATE(); - case 530: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1183); - END_STATE(); - case 531: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1184); - END_STATE(); - case 532: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(643); - END_STATE(); - case 533: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(441); - END_STATE(); - case 534: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(811); - END_STATE(); - case 535: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(534); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(202); - END_STATE(); - case 536: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(132); - END_STATE(); - case 537: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(256); - END_STATE(); - case 538: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(554); - END_STATE(); - case 539: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(272); - END_STATE(); - case 540: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(152); - END_STATE(); - case 541: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(152); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(458); - END_STATE(); - case 542: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(359); - END_STATE(); - case 543: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(365); - END_STATE(); - case 544: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(894); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); - END_STATE(); - case 545: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(426); - END_STATE(); - case 546: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(426); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(246); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(433); - END_STATE(); - case 547: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(830); - END_STATE(); - case 548: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); - END_STATE(); - case 549: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1016); - END_STATE(); - case 550: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1034); - END_STATE(); - case 551: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1015); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(267); - END_STATE(); - case 552: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1086); - END_STATE(); - case 553: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(958); - END_STATE(); - case 554: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(935); - END_STATE(); - case 555: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1042); - END_STATE(); - case 556: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1169); - END_STATE(); - case 557: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(117); - END_STATE(); - case 558: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(880); - END_STATE(); - case 559: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(911); - END_STATE(); - case 560: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(446); - END_STATE(); - case 561: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(952); - END_STATE(); - case 562: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(461); - END_STATE(); - case 563: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(225); - END_STATE(); - case 564: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - END_STATE(); - case 565: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(874); - END_STATE(); - case 566: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(874); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1138); - END_STATE(); - case 567: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(201); - END_STATE(); - case 568: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(201); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1138); - END_STATE(); - case 569: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1138); - END_STATE(); - case 570: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(397); - END_STATE(); - case 571: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(397); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(743); - END_STATE(); - case 572: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(391); - END_STATE(); - case 573: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(227); - END_STATE(); - case 574: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(392); - END_STATE(); - case 575: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(235); - END_STATE(); - case 576: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(774); - END_STATE(); - case 577: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(393); - END_STATE(); - case 578: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(306); - END_STATE(); - case 579: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(394); - END_STATE(); - case 580: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(640); - END_STATE(); - case 581: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(425); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(246); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(433); - END_STATE(); - case 582: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(425); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(433); - END_STATE(); - case 583: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(720); - END_STATE(); - case 584: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(259); - END_STATE(); - case 585: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(746); - END_STATE(); - case 586: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(754); - END_STATE(); - case 587: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(758); - END_STATE(); - case 588: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(778); - END_STATE(); - case 589: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(759); - END_STATE(); - case 590: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(762); - END_STATE(); - case 591: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(763); - END_STATE(); - case 592: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(281); - END_STATE(); - case 593: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(226); - END_STATE(); - case 594: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(727); - END_STATE(); - case 595: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(218); - END_STATE(); - case 596: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(219); - END_STATE(); - case 597: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(220); - END_STATE(); - case 598: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(216); - END_STATE(); - case 599: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(445); - END_STATE(); - case 600: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(342); - END_STATE(); - case 601: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(828); - END_STATE(); - case 602: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(829); - END_STATE(); - case 603: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(840); - END_STATE(); - case 604: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(229); - END_STATE(); - case 605: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(960); - END_STATE(); - case 606: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(843); - END_STATE(); - case 607: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(889); - END_STATE(); - case 608: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(955); - END_STATE(); - case 609: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(808); - END_STATE(); - case 610: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(725); - END_STATE(); - case 611: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(495); - END_STATE(); - case 612: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(429); - END_STATE(); - case 613: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(641); - END_STATE(); - case 614: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(642); - END_STATE(); - case 615: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(806); - END_STATE(); - case 616: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(650); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(617); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(492); - END_STATE(); - case 617: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(528); - END_STATE(); - case 618: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(372); - END_STATE(); - case 619: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(530); - END_STATE(); - case 620: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(531); - END_STATE(); - case 621: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(575); - END_STATE(); - case 622: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(575); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(697); - END_STATE(); - case 623: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(553); - END_STATE(); - case 624: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(557); - END_STATE(); - case 625: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(558); - END_STATE(); - case 626: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(502); - END_STATE(); - case 627: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(678); - END_STATE(); - case 628: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(559); - END_STATE(); - case 629: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(676); - END_STATE(); - case 630: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(583); - END_STATE(); - case 631: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(742); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(493); - END_STATE(); - case 632: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(782); - END_STATE(); - case 633: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(782); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(516); - END_STATE(); - case 634: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(474); - END_STATE(); - case 635: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(584); - END_STATE(); - case 636: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(398); - END_STATE(); - case 637: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(690); - END_STATE(); - case 638: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(694); - END_STATE(); - case 639: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(694); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(617); - END_STATE(); - case 640: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(735); - END_STATE(); - case 641: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(866); - END_STATE(); - case 642: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1026); - END_STATE(); - case 643: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1094); - END_STATE(); - case 644: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(966); - END_STATE(); - case 645: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(246); - END_STATE(); - case 646: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(258); - END_STATE(); - case 647: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(260); - END_STATE(); - case 648: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(282); - END_STATE(); - case 649: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(818); - END_STATE(); - case 650: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1009); - END_STATE(); - case 651: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1149); - END_STATE(); - case 652: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1143); - END_STATE(); - case 653: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1002); - END_STATE(); - case 654: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(932); - END_STATE(); - case 655: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1068); - END_STATE(); - case 656: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1060); - END_STATE(); - case 657: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1072); - END_STATE(); - case 658: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(181); - END_STATE(); - case 659: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1080); - END_STATE(); - case 660: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1000); - END_STATE(); - case 661: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1104); - END_STATE(); - case 662: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(913); - END_STATE(); - case 663: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(915); - END_STATE(); - case 664: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1079); - END_STATE(); - case 665: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); - END_STATE(); - case 666: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(578); - END_STATE(); - case 667: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(161); - END_STATE(); - case 668: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(606); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(857); - END_STATE(); - case 669: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(136); - END_STATE(); - case 670: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(386); - END_STATE(); - case 671: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(851); - END_STATE(); - case 672: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(617); - END_STATE(); - case 673: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(852); - END_STATE(); - case 674: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(684); - END_STATE(); - case 675: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(854); - END_STATE(); - case 676: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(529); - END_STATE(); - case 677: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(456); - END_STATE(); - case 678: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(427); - END_STATE(); - case 679: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(440); - END_STATE(); - case 680: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(173); - END_STATE(); - case 681: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(555); - END_STATE(); - case 682: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(610); - END_STATE(); - case 683: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(615); - END_STATE(); - case 684: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(356); - END_STATE(); - case 685: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(749); - END_STATE(); - case 686: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(658); - END_STATE(); - case 687: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(560); - END_STATE(); - case 688: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(267); - END_STATE(); - case 689: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(599); - END_STATE(); - case 690: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(268); - END_STATE(); - case 691: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(761); - END_STATE(); - case 692: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(277); - END_STATE(); - case 693: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(291); - END_STATE(); - case 694: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(330); - END_STATE(); - case 695: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(729); - END_STATE(); - case 696: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(619); - END_STATE(); - case 697: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(444); - END_STATE(); - case 698: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(150); - END_STATE(); - case 699: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(620); - END_STATE(); - case 700: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(438); - END_STATE(); - case 701: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(733); - END_STATE(); - case 702: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(709); - END_STATE(); - case 703: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(154); - END_STATE(); - case 704: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(366); - END_STATE(); - case 705: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(460); - END_STATE(); - case 706: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(362); - END_STATE(); - case 707: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(364); - END_STATE(); - case 708: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(706); - END_STATE(); - case 709: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(180); - END_STATE(); - case 710: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(707); - END_STATE(); - case 711: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(368); - END_STATE(); - case 712: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(874); - END_STATE(); - case 713: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1064); - END_STATE(); - case 714: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1097); - END_STATE(); - case 715: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(893); - END_STATE(); - case 716: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(970); - END_STATE(); - case 717: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(954); - END_STATE(); - case 718: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1022); - END_STATE(); - case 719: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(971); - END_STATE(); - case 720: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(973); - END_STATE(); - case 721: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(972); - END_STATE(); - case 722: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(926); - END_STATE(); - case 723: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(253); - END_STATE(); - case 724: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(198); - END_STATE(); - case 725: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(713); - END_STATE(); - case 726: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(788); - END_STATE(); - case 727: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(789); - END_STATE(); - case 728: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(775); - END_STATE(); - case 729: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(745); - END_STATE(); - case 730: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(263); - END_STATE(); - case 731: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(340); - END_STATE(); - case 732: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(265); - END_STATE(); - case 733: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(280); - END_STATE(); - case 734: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(433); - END_STATE(); - case 735: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(791); - END_STATE(); - case 736: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(344); - END_STATE(); - case 737: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(345); - END_STATE(); - case 738: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(453); - END_STATE(); - case 739: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(796); - END_STATE(); - case 740: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(804); - END_STATE(); - case 741: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1018); - END_STATE(); - case 742: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(939); - END_STATE(); - case 743: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(928); - END_STATE(); - case 744: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1070); - END_STATE(); - case 745: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(927); - END_STATE(); - case 746: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(962); - END_STATE(); - case 747: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1055); - END_STATE(); - case 748: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1073); - END_STATE(); - case 749: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(992); - END_STATE(); - case 750: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1); - END_STATE(); - case 751: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1057); - END_STATE(); - case 752: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1048); - END_STATE(); - case 753: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1051); - END_STATE(); - case 754: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1021); - END_STATE(); - case 755: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(891); - END_STATE(); - case 756: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(896); - END_STATE(); - case 757: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(871); - END_STATE(); - case 758: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1012); - END_STATE(); - case 759: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(900); - END_STATE(); - case 760: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(937); - END_STATE(); - case 761: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(887); - END_STATE(); - case 762: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1020); - END_STATE(); - case 763: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(988); - END_STATE(); - case 764: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(419); - END_STATE(); - case 765: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(412); - END_STATE(); - case 766: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(844); - END_STATE(); - case 767: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2); - END_STATE(); - case 768: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(449); - END_STATE(); - case 769: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(131); - END_STATE(); - case 770: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(131); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1147); - END_STATE(); - case 771: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(406); - END_STATE(); - case 772: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(824); - END_STATE(); - case 773: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(853); - END_STATE(); - case 774: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(407); - END_STATE(); - case 775: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(714); - END_STATE(); - case 776: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(177); - END_STATE(); - case 777: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(442); - END_STATE(); - case 778: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(496); - END_STATE(); - case 779: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); - END_STATE(); - case 780: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(270); - END_STATE(); - case 781: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(271); - END_STATE(); - case 782: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(601); - END_STATE(); - case 783: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(275); - END_STATE(); - case 784: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(278); - END_STATE(); - case 785: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(287); - END_STATE(); - case 786: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(289); - END_STATE(); - case 787: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(320); - END_STATE(); - case 788: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(705); - END_STATE(); - case 789: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(680); - END_STATE(); - case 790: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); - END_STATE(); - case 791: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(439); - END_STATE(); - case 792: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(459); - END_STATE(); - case 793: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(326); - END_STATE(); - case 794: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(326); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(838); - END_STATE(); - case 795: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(819); - END_STATE(); - case 796: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(443); - END_STATE(); - case 797: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(335); - END_STATE(); - case 798: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(858); - END_STATE(); - case 799: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(463); - END_STATE(); - case 800: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(457); - END_STATE(); - case 801: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(462); - END_STATE(); - case 802: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(464); - END_STATE(); - case 803: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4); - END_STATE(); - case 804: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(467); - END_STATE(); - case 805: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(314); - END_STATE(); - case 806: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(644); - END_STATE(); - case 807: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(538); - END_STATE(); - case 808: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(651); - END_STATE(); - case 809: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(499); - END_STATE(); - case 810: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(508); - END_STATE(); - case 811: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(776); - END_STATE(); - case 812: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(681); - END_STATE(); - case 813: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(697); - END_STATE(); - case 814: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(490); - END_STATE(); - case 815: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); - END_STATE(); - case 816: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(317); - END_STATE(); - case 817: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(687); - END_STATE(); - case 818: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(274); - END_STATE(); - case 819: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(689); - END_STATE(); - case 820: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(573); - END_STATE(); - case 821: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(284); - END_STATE(); - case 822: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(285); - END_STATE(); - case 823: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(792); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(904); - END_STATE(); - case 824: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(698); - END_STATE(); - case 825: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(168); - END_STATE(); - case 826: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(242); - END_STATE(); - case 827: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(334); - END_STATE(); - case 828: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(503); - END_STATE(); - case 829: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(781); - END_STATE(); - case 830: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(781); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(176); - END_STATE(); - case 831: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(693); - END_STATE(); - case 832: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(505); - END_STATE(); - case 833: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(736); - END_STATE(); - case 834: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(784); - END_STATE(); - case 835: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(737); - END_STATE(); - case 836: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(367); - END_STATE(); - case 837: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(708); - END_STATE(); - case 838: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(148); - END_STATE(); - case 839: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(437); - END_STATE(); - case 840: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(176); - END_STATE(); - case 841: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(904); - END_STATE(); - case 842: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(903); - END_STATE(); - case 843: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(798); - END_STATE(); - case 844: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(361); - END_STATE(); - case 845: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(919); - END_STATE(); - case 846: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(838); - END_STATE(); - case 847: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(309); - END_STATE(); - case 848: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1147); - END_STATE(); - case 849: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(951); - END_STATE(); - case 850: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1124); - END_STATE(); - case 851: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1044); - END_STATE(); - case 852: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(949); - END_STATE(); - case 853: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1078); - END_STATE(); - case 854: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1095); - END_STATE(); - case 855: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(920); - END_STATE(); - case 856: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(944); - END_STATE(); - case 857: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(647); - END_STATE(); - case 858: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(648); - END_STATE(); - case 859: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(322); - END_STATE(); - case 860: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(185); - END_STATE(); - case 861: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); - END_STATE(); - case 862: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 863: - if (eof) ADVANCE(864); - if (lookahead == '$') ADVANCE(1088); - if (lookahead == '%') ADVANCE(668); - if (lookahead == '\'') ADVANCE(1106); - if (lookahead == '(') ADVANCE(882); - if (lookahead == ')') ADVANCE(883); - if (lookahead == ',') ADVANCE(869); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '/') ADVANCE(77); - if (lookahead == ';') ADVANCE(865); - if (lookahead == '[') ADVANCE(1098); - if (lookahead == '\\') ADVANCE(986); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(230); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(120); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(293); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(847); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(616); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(667); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(124); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(535); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(612); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(250); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(135); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(139); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(377); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(679); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(294); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(295); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(183); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(581); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(179); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(411); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(863) - END_STATE(); - case 864: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 865: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 866: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); - END_STATE(); - case 867: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 868: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token2); - END_STATE(); - case 869: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 870: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token3); - END_STATE(); - case 871: - ACCEPT_TOKEN(aux_sym_drop_type_statement_token4); - END_STATE(); - case 872: - ACCEPT_TOKEN(aux_sym_update_statement_token1); - END_STATE(); - case 873: - ACCEPT_TOKEN(aux_sym_update_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 874: - ACCEPT_TOKEN(aux_sym_update_statement_token2); - END_STATE(); - case 875: - ACCEPT_TOKEN(aux_sym_update_statement_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 876: - ACCEPT_TOKEN(aux_sym_update_statement_token3); - END_STATE(); - case 877: - ACCEPT_TOKEN(aux_sym_update_statement_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 878: - ACCEPT_TOKEN(aux_sym_update_statement_token4); - END_STATE(); - case 879: - ACCEPT_TOKEN(aux_sym_update_statement_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); - END_STATE(); - case 881: - ACCEPT_TOKEN(aux_sym_drop_function_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 882: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 883: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 884: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); - END_STATE(); - case 885: - ACCEPT_TOKEN(aux_sym_create_type_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 886: - ACCEPT_TOKEN(aux_sym_create_type_statement_token2); - END_STATE(); - case 887: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); - END_STATE(); - case 888: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 889: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); - END_STATE(); - case 890: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 891: - ACCEPT_TOKEN(aux_sym_insert_items_token1); - END_STATE(); - case 892: - ACCEPT_TOKEN(aux_sym_insert_items_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 893: - ACCEPT_TOKEN(aux_sym_insert_items_token2); - END_STATE(); - case 894: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); - END_STATE(); - case 895: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 896: - ACCEPT_TOKEN(aux_sym_insert_conflict_token2); - END_STATE(); - case 897: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); - END_STATE(); - case 898: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 899: - ACCEPT_TOKEN(aux_sym_insert_conflict_token4); - END_STATE(); - case 900: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); - END_STATE(); - case 901: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 902: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 903: - ACCEPT_TOKEN(aux_sym_update_set_token1); - END_STATE(); - case 904: - ACCEPT_TOKEN(aux_sym_update_set_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1059); - END_STATE(); - case 905: - ACCEPT_TOKEN(aux_sym_returning_token1); - END_STATE(); - case 906: - ACCEPT_TOKEN(aux_sym_returning_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 907: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); - END_STATE(); - case 908: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 909: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); - END_STATE(); - case 910: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 911: - ACCEPT_TOKEN(aux_sym_schema_role_token1); - END_STATE(); - case 912: - ACCEPT_TOKEN(aux_sym_schema_role_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 913: - ACCEPT_TOKEN(aux_sym_schema_role_token2); - END_STATE(); - case 914: - ACCEPT_TOKEN(aux_sym_schema_role_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 915: - ACCEPT_TOKEN(aux_sym_schema_role_token3); - END_STATE(); - case 916: - ACCEPT_TOKEN(aux_sym_schema_role_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 917: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); - END_STATE(); - case 918: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 919: - ACCEPT_TOKEN(aux_sym_create_index_statement_token2); - END_STATE(); - case 920: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); - END_STATE(); - case 921: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 922: - ACCEPT_TOKEN(aux_sym_index_using_token1); - END_STATE(); - case 923: - ACCEPT_TOKEN(aux_sym_index_using_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 924: - ACCEPT_TOKEN(aux_sym_index_col_dir_token1); - END_STATE(); - case 925: - ACCEPT_TOKEN(aux_sym_index_col_dir_token2); - END_STATE(); - case 926: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); - END_STATE(); - case 927: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); - END_STATE(); - case 928: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); - END_STATE(); - case 929: - ACCEPT_TOKEN(aux_sym_index_includes_token1); - END_STATE(); - case 930: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); - END_STATE(); - case 931: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 932: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); - END_STATE(); - case 933: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 934: - ACCEPT_TOKEN(aux_sym_alter_table_action_token1); - END_STATE(); - case 935: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); - END_STATE(); - case 936: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 937: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - END_STATE(); - case 938: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 939: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(828); - END_STATE(); - case 940: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); - END_STATE(); - case 941: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 942: - ACCEPT_TOKEN(aux_sym_alter_column_action_token3); - END_STATE(); - case 943: - ACCEPT_TOKEN(aux_sym_constraint_when_token1); - END_STATE(); - case 944: - ACCEPT_TOKEN(aux_sym_constraint_when_token2); - END_STATE(); - case 945: - ACCEPT_TOKEN(aux_sym_constraint_when_token3); - END_STATE(); - case 946: - ACCEPT_TOKEN(aux_sym_constraint_when_token4); - END_STATE(); - case 947: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); - END_STATE(); - case 948: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 949: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); - END_STATE(); - case 950: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 951: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); - END_STATE(); - case 952: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); - END_STATE(); - case 953: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 954: - ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); - END_STATE(); - case 955: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - END_STATE(); - case 956: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(255); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(939); - END_STATE(); - case 957: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(937); - END_STATE(); - case 958: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); - END_STATE(); - case 959: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); - END_STATE(); - case 960: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); - END_STATE(); - case 961: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 962: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - END_STATE(); - case 963: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 964: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); - END_STATE(); - case 965: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 966: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - END_STATE(); - case 967: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 968: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - END_STATE(); - case 969: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 970: - ACCEPT_TOKEN(aux_sym_grant_privileges_token2); - END_STATE(); - case 971: - ACCEPT_TOKEN(aux_sym_grant_targets_token1); - END_STATE(); - case 972: - ACCEPT_TOKEN(aux_sym_grant_targets_token2); - END_STATE(); - case 973: - ACCEPT_TOKEN(aux_sym_grant_targets_token3); - END_STATE(); - case 974: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - END_STATE(); - case 975: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 976: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 977: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(325); - END_STATE(); - case 978: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(325); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(607); - END_STATE(); - case 979: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(607); - END_STATE(); - case 980: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - END_STATE(); - case 981: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 982: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - END_STATE(); - case 983: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 984: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - END_STATE(); - case 985: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 986: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 987: - ACCEPT_TOKEN(aux_sym_psql_statement_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(987); - END_STATE(); - case 988: - ACCEPT_TOKEN(aux_sym_sequence_increment_token1); - END_STATE(); - case 989: - ACCEPT_TOKEN(aux_sym_sequence_increment_token2); - END_STATE(); - case 990: - ACCEPT_TOKEN(aux_sym_sequence_min_token1); - END_STATE(); - case 991: - ACCEPT_TOKEN(aux_sym_sequence_max_token1); - END_STATE(); - case 992: - ACCEPT_TOKEN(aux_sym_sequence_start_token1); - END_STATE(); - case 993: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); - END_STATE(); - case 994: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 995: - ACCEPT_TOKEN(aux_sym_sequence_cache_token1); - END_STATE(); - case 996: - ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); - END_STATE(); - case 997: - ACCEPT_TOKEN(aux_sym_sequence_owned_token1); - END_STATE(); - case 998: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); - END_STATE(); - case 999: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1000: - ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); - END_STATE(); - case 1001: - ACCEPT_TOKEN(aux_sym_trigger_when_token1); - END_STATE(); - case 1002: - ACCEPT_TOKEN(aux_sym_trigger_when_token2); - END_STATE(); - case 1003: - ACCEPT_TOKEN(aux_sym_trigger_when_token3); - END_STATE(); - case 1004: - ACCEPT_TOKEN(aux_sym_trigger_event_token1); - END_STATE(); - case 1005: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - END_STATE(); - case 1006: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1007: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1008: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(331); - END_STATE(); - case 1009: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); - END_STATE(); - case 1010: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1011: - ACCEPT_TOKEN(aux_sym_trigger_scope_token2); - END_STATE(); - case 1012: - ACCEPT_TOKEN(aux_sym_trigger_scope_token3); - END_STATE(); - case 1013: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - END_STATE(); - case 1014: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1015: - ACCEPT_TOKEN(aux_sym_trigger_cond_token1); - END_STATE(); - case 1016: - ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); - END_STATE(); - case 1017: - ACCEPT_TOKEN(aux_sym_open_cursor_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1018: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); - END_STATE(); - case 1019: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1020: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); - END_STATE(); - case 1021: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token2); - if (lookahead == '_') ADVANCE(833); - END_STATE(); - case 1022: - ACCEPT_TOKEN(aux_sym_get_diagnostics_statement_token3); - END_STATE(); - case 1023: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - END_STATE(); - case 1024: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1025: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 1026: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - END_STATE(); - case 1027: - ACCEPT_TOKEN(aux_sym_for_statement_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1028: - ACCEPT_TOKEN(aux_sym_for_statement_token3); - END_STATE(); - case 1029: - ACCEPT_TOKEN(aux_sym_for_statement_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1030: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); - END_STATE(); - case 1031: - ACCEPT_TOKEN(aux_sym_raise_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - END_STATE(); - case 1033: - ACCEPT_TOKEN(aux_sym_if_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_if_statement_token2); - END_STATE(); - case 1035: - ACCEPT_TOKEN(aux_sym_if_statement_token3); - END_STATE(); - case 1036: - ACCEPT_TOKEN(aux_sym_if_statement_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1037: - ACCEPT_TOKEN(aux_sym_if_statement_token4); - END_STATE(); - case 1038: - ACCEPT_TOKEN(aux_sym_if_statement_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1039: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1324); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1040: - ACCEPT_TOKEN(aux_sym_if_statement_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(371); - END_STATE(); - case 1041: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 1042: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - END_STATE(); - case 1043: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1044: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - END_STATE(); - case 1045: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1046: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); - END_STATE(); - case 1047: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1048: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - END_STATE(); - case 1049: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1050: - ACCEPT_TOKEN(aux_sym_with_query_item_token1); - END_STATE(); - case 1051: - ACCEPT_TOKEN(aux_sym_into_token1); - END_STATE(); - case 1052: - ACCEPT_TOKEN(aux_sym_into_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1053: - ACCEPT_TOKEN(aux_sym_select_having_token1); - END_STATE(); - case 1054: - ACCEPT_TOKEN(aux_sym_select_having_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1055: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - END_STATE(); - case 1056: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1057: - ACCEPT_TOKEN(aux_sym_select_offset_token1); - END_STATE(); - case 1058: - ACCEPT_TOKEN(aux_sym_select_offset_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1059: - ACCEPT_TOKEN(aux_sym_select_offset_token2); - END_STATE(); - case 1060: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - END_STATE(); - case 1061: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1062: - ACCEPT_TOKEN(aux_sym_join_item_token1); - END_STATE(); - case 1063: - ACCEPT_TOKEN(aux_sym_join_item_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1064: - ACCEPT_TOKEN(aux_sym_join_item_token2); - END_STATE(); - case 1065: - ACCEPT_TOKEN(aux_sym_join_item_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1066: - ACCEPT_TOKEN(aux_sym_join_item_token3); - END_STATE(); - case 1067: - ACCEPT_TOKEN(aux_sym_join_item_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1068: - ACCEPT_TOKEN(aux_sym_join_type_token1); - END_STATE(); - case 1069: - ACCEPT_TOKEN(aux_sym_join_type_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1070: - ACCEPT_TOKEN(aux_sym_join_type_token2); - END_STATE(); - case 1071: - ACCEPT_TOKEN(aux_sym_join_type_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1072: - ACCEPT_TOKEN(aux_sym_join_type_token3); - END_STATE(); - case 1073: - ACCEPT_TOKEN(aux_sym_join_type_token4); - END_STATE(); - case 1074: - ACCEPT_TOKEN(aux_sym_join_type_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1075: - ACCEPT_TOKEN(aux_sym_join_type_token5); - END_STATE(); - case 1076: - ACCEPT_TOKEN(aux_sym_join_type_token5); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_create_function_statement_token1); - END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_function_run_as_token1); - END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_function_run_as_token2); - END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_function_run_as_token3); - END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_function_return_token1); - END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_return_setof_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_function_volatility_token1); - END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_function_volatility_token2); - END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_function_volatility_token3); - END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_body_token1); - END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_body_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1088: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_declarations_token1); - END_STATE(); - case 1090: - ACCEPT_TOKEN(aux_sym_declarations_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_where_filter_token1); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_where_filter_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_or_replace_token1); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_temporary_token1); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(703); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_temporary_token2); - END_STATE(); - case 1096: - ACCEPT_TOKEN(sym_unlogged); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_if_not_exists_token1); - END_STATE(); - case 1098: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 1099: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym__type_token1); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym__type_token2); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_predefined_type_token1); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_predefined_type_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_predefined_type_token2); - END_STATE(); - case 1105: - ACCEPT_TOKEN(aux_sym_predefined_type_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1106: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 1107: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(1108); - END_STATE(); - case 1108: - ACCEPT_TOKEN(aux_sym_string_token1); - END_STATE(); - case 1109: - ACCEPT_TOKEN(aux_sym_string_token2); - END_STATE(); - case 1110: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(81); - END_STATE(); - case 1111: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1121); - END_STATE(); - case 1112: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(1111); - if (lookahead == '/') ADVANCE(1110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1112); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(1109); - END_STATE(); - case 1113: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 1114: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1131); - if (lookahead == '$') ADVANCE(1120); - if (lookahead == '%') ADVANCE(1114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1117); - if (lookahead != 0) ADVANCE(1116); - END_STATE(); - case 1115: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1131); - if (lookahead == '$') ADVANCE(1120); - if (lookahead == '%') ADVANCE(1114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); - if (lookahead != 0) ADVANCE(1116); - END_STATE(); - case 1116: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1131); - if (lookahead == '$') ADVANCE(1120); - if (lookahead == '%') ADVANCE(1114); - if (lookahead != 0) ADVANCE(1116); - END_STATE(); - case 1117: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(1131); - if (lookahead == '$') ADVANCE(1119); - if (lookahead == '%') ADVANCE(1114); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1117); - if (lookahead != 0) ADVANCE(1116); - END_STATE(); - case 1118: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1119: - ACCEPT_TOKEN(sym_comment); - if (lookahead == 'I' || - lookahead == 's') ADVANCE(1116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1121); - END_STATE(); - case 1120: - ACCEPT_TOKEN(sym_comment); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1115); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1121); - END_STATE(); - case 1121: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1121); - END_STATE(); - case 1122: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 1123: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1025); - END_STATE(); - case 1124: - ACCEPT_TOKEN(aux_sym_array_constructor_token1); - END_STATE(); - case 1125: - ACCEPT_TOKEN(aux_sym_array_constructor_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1126: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead == '*') ADVANCE(1136); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1127: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead == '-') ADVANCE(1128); - if (lookahead == '/') ADVANCE(1126); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(1127); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1128: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead == '-') ADVANCE(1116); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1129: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1132); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1130: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1131: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(861); - if (lookahead == '%') ADVANCE(1129); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1132: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(469); - if (lookahead == '%') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1132); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1133: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(80); - if (lookahead == '%') ADVANCE(1134); - if (lookahead == '*') ADVANCE(1133); - if (lookahead == '/') ADVANCE(1118); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1134: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(80); - if (lookahead == '%') ADVANCE(1134); - if (lookahead == '*') ADVANCE(1133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1137); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1135: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(80); - if (lookahead == '%') ADVANCE(1134); - if (lookahead == '*') ADVANCE(1133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1135); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1136: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(80); - if (lookahead == '%') ADVANCE(1134); - if (lookahead == '*') ADVANCE(1133); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); - if (lookahead == '$') ADVANCE(79); - if (lookahead == '%') ADVANCE(1134); - if (lookahead == '*') ADVANCE(1133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1137); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1138: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - END_STATE(); - case 1139: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1140: - ACCEPT_TOKEN(aux_sym_time_expression_token2); - END_STATE(); - case 1141: - ACCEPT_TOKEN(aux_sym_time_expression_token3); - END_STATE(); - case 1142: - ACCEPT_TOKEN(aux_sym_time_expression_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1143: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); - END_STATE(); - case 1144: - ACCEPT_TOKEN(aux_sym__interval_fields_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1145: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); - END_STATE(); - case 1146: - ACCEPT_TOKEN(aux_sym__interval_fields_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1147: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); - END_STATE(); - case 1148: - ACCEPT_TOKEN(aux_sym__interval_fields_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1149: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); - END_STATE(); - case 1150: - ACCEPT_TOKEN(aux_sym__interval_fields_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1151: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); - END_STATE(); - case 1152: - ACCEPT_TOKEN(aux_sym__interval_fields_token5); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1153: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); - END_STATE(); - case 1154: - ACCEPT_TOKEN(aux_sym__interval_fields_token6); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1155: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 1156: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(81); - END_STATE(); - case 1157: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 1158: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(606); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(857); - END_STATE(); - case 1159: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '|') ADVANCE(85); - END_STATE(); - case 1160: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1121); - if (lookahead == '|') ADVANCE(85); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); - END_STATE(); - case 1161: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); - END_STATE(); - case 1162: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 1163: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1188); - if (lookahead == '=') ADVANCE(1165); - if (lookahead == '>') ADVANCE(1167); - if (lookahead == '@') ADVANCE(1186); - END_STATE(); - case 1164: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1166); - if (lookahead == '>') ADVANCE(1189); - END_STATE(); - case 1165: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 1166: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 1167: - ACCEPT_TOKEN(anon_sym_LT_GT); - END_STATE(); - case 1168: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 1169: - ACCEPT_TOKEN(aux_sym_contains_op_token1); - END_STATE(); - case 1170: - ACCEPT_TOKEN(aux_sym_contains_op_token1); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1171: - ACCEPT_TOKEN(aux_sym_contains_op_token2); - END_STATE(); - case 1172: - ACCEPT_TOKEN(aux_sym_contains_op_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1173: - ACCEPT_TOKEN(aux_sym_contains_op_token3); - END_STATE(); - case 1174: - ACCEPT_TOKEN(aux_sym_contains_op_token3); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1175: - ACCEPT_TOKEN(aux_sym_comparison_null_token1); - END_STATE(); - case 1176: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); - END_STATE(); - case 1177: - ACCEPT_TOKEN(aux_sym_comparison_null_token2); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1178: - ACCEPT_TOKEN(aux_sym_comparison_null_token3); - END_STATE(); - case 1179: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); - END_STATE(); - case 1180: - ACCEPT_TOKEN(aux_sym_comparison_null_token4); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1181: - ACCEPT_TOKEN(aux_sym_comparison_kw_token1); - if (lookahead == ' ') ADVANCE(243); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1579); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1182: - ACCEPT_TOKEN(aux_sym_comparison_kw_token1); - if (lookahead == ' ') ADVANCE(243); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(809); - END_STATE(); - case 1183: - ACCEPT_TOKEN(aux_sym_comparison_kw_token2); - END_STATE(); - case 1184: - ACCEPT_TOKEN(aux_sym_comparison_kw_token3); - END_STATE(); - case 1185: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 1186: - ACCEPT_TOKEN(anon_sym_LT_AT); - END_STATE(); - case 1187: - ACCEPT_TOKEN(anon_sym_AT_GT); - END_STATE(); - case 1188: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 1189: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 1190: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 1191: - ACCEPT_TOKEN(anon_sym_AMP_LT); - END_STATE(); - case 1192: - ACCEPT_TOKEN(anon_sym_AMP_GT); - END_STATE(); - case 1193: - ACCEPT_TOKEN(anon_sym_DASH_PIPE_DASH); - END_STATE(); - case 1194: - ACCEPT_TOKEN(sym_cast); - END_STATE(); - case 1195: - ACCEPT_TOKEN(sym_and); - END_STATE(); - case 1196: - ACCEPT_TOKEN(sym_and); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1197: - ACCEPT_TOKEN(sym_true); - END_STATE(); - case 1198: - ACCEPT_TOKEN(sym_true); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1199: - ACCEPT_TOKEN(sym_false); - END_STATE(); - case 1200: - ACCEPT_TOKEN(sym_false); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1201: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1201); + lookahead == ' ') SKIP(11) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(22); + if (lookahead == '-') ADVANCE(3); + if (lookahead == '/') ADVANCE(2); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(21); + if (lookahead == '*') ADVANCE(24); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 3: + if (lookahead == '\n') ADVANCE(21); + if (lookahead == '-') ADVANCE(19); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 4: + if (lookahead == '\n') ADVANCE(21); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 5: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '-') ADVANCE(6); + if (lookahead == '/') ADVANCE(8); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(10); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 6: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '-') ADVANCE(20); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 7: + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 8: + if (lookahead == '*') ADVANCE(25); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 9: + if (lookahead == '-') ADVANCE(18); + END_STATE(); + case 10: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(10); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '-') ADVANCE(6); + if (lookahead == '/') ADVANCE(8); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 11: + if (eof) ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (lookahead == '"') ADVANCE(28); + if (lookahead == '(') ADVANCE(15); + if (lookahead == ')') ADVANCE(17); + if (lookahead == ',') ADVANCE(16); + if (lookahead == '-') ADVANCE(9); + if (lookahead == '.') ADVANCE(14); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ';') ADVANCE(13); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); + END_STATE(); + case 12: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 13: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 14: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 15: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 16: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 17: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 18: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 19: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\n') ADVANCE(21); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(7); + END_STATE(); + case 21: + ACCEPT_TOKEN(aux_sym_comment_token1); + END_STATE(); + case 22: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(22); + if (lookahead == '-') ADVANCE(3); + if (lookahead == '/') ADVANCE(2); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 23: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + END_STATE(); + case 24: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '\n') ADVANCE(21); + if (lookahead != 0) ADVANCE(4); + END_STATE(); + case 25: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0 && + lookahead != '/') ADVANCE(7); + END_STATE(); + case 26: + ACCEPT_TOKEN(aux_sym_marginalia_token1); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0 && + lookahead != '/') ADVANCE(7); + END_STATE(); + case 27: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + END_STATE(); + case 28: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 29: + ACCEPT_TOKEN(sym__identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'C') ADVANCE(1); + if (lookahead == 'E') ADVANCE(2); + if (lookahead == 'I') ADVANCE(3); + if (lookahead == 'N') ADVANCE(4); + if (lookahead == 'T') ADVANCE(5); + if (lookahead == 'U') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'e') ADVANCE(8); + if (lookahead == 'i') ADVANCE(9); + if (lookahead == 'n') ADVANCE(10); + if (lookahead == 't') ADVANCE(11); + if (lookahead == 'u') ADVANCE(12); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + END_STATE(); + case 1: + if (lookahead == 'R') ADVANCE(14); + END_STATE(); + case 2: + if (lookahead == 'X') ADVANCE(15); + END_STATE(); + case 3: + if (lookahead == 'F') ADVANCE(16); + END_STATE(); + case 4: + if (lookahead == 'O') ADVANCE(17); + END_STATE(); + case 5: + if (lookahead == 'A') ADVANCE(18); + if (lookahead == 'E') ADVANCE(19); END_STATE(); - case 1202: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); + case 6: + if (lookahead == 'N') ADVANCE(20); END_STATE(); - case 1203: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == '_') ADVANCE(1601); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1204: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == '_') ADVANCE(1602); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1205: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1604); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1581); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1206: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1207: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1208: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1229); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1209: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(910); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1210: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1211: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1485); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1212: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1355); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1572); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1213: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1596); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1214: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1401); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1215: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1401); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1216: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1433); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1217: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1218: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1382); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1219: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1500); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1220: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1502); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1221: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1490); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1222: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1566); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1223: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1370); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1224: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1568); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1225: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1518); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1226: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1227: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1574); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1228: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1397); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1229: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1400); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1230: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1231: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(965); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1232: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1372); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1233: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1460); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1234: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1343); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1235: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1547); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1236: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1396); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1237: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1563); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1238: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1556); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1239: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1286); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1240: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1268); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1241: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1341); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1482); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1242: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1599); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1243: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1603); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1244: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1245: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1246: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1029); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1247: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1598); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1248: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1274); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1249: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1250: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1540); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1251: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1252: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1174); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1253: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1092); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1254: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1233); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1255: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1152); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1256: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1039); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1323); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1257: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1031); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1258: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(885); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1259: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(931); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1260: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1261: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1014); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1262: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1263: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1264: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1024); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1265: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(918); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1266: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1267: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(985); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1268: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(981); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1269: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(983); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1270: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1090); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1271: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(999); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1272: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1503); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1273: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1274: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1483); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1275: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1211); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1276: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1559); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1332); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1277: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1559); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1278: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1606); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1279: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1235); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1280: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1414); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1281: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1232); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1282: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1283: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1543); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1284: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1326); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1285: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1402); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(898); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1456); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1286: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1287: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1327); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1457); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1288: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1327); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1289: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1327); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1290: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1398); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1291: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1334); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1292: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1280); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1293: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1294: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1495); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1295: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1236); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1296: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1487); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1297: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1544); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1216); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1298: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1415); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1299: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1511); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1300: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1357); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1301: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1494); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1302: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1303: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1520); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1304: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1499); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1305: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1489); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1306: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1553); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1307: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1445); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1308: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1309: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1310: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1491); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1311: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1312: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1529); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1313: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1314: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1438); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1315: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1316: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1320); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(895); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1317: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1320); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(895); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1248); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1318: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1320); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1319: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1320); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1248); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1320: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1534); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1321: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1033); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1536); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1322: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1033); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1323: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1036); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1324: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1038); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1325: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1082); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1326: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1213); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1327: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1551); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1328: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1463); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1329: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1054); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1330: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(906); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1331: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(923); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1332: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1338); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1333: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1334: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1364); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1335: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1146); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1336: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(994); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1337: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1272); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1338: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1552); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1339: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1281); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1390); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1340: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1281); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1431); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1341: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1342: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1343: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1221); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1344: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1373); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1457); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1345: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1373); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1346: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1375); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1347: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1481); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1348: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1614); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1349: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1413); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1350: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1457); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1351: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1405); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1352: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1332); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1353: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1542); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1354: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1408); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1355: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1530); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1356: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1425); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1357: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1333); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1358: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1230); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1359: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1360: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1558); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1361: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1418); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1362: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1428); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1363: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1364: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1422); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1365: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1374); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1427); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1430); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1367: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1466); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1368: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1369: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1467); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1370: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1437); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1371: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1469); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1372: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(948); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1373: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1251); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1353); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1374: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1251); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1375: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1252); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1376: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1377: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1180); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1378: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(941); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1379: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1142); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1380: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(969); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1381: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1076); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1382: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1063); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1383: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1346); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(975); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1384: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1346); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(976); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1181); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1385: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1526); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1246); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1273); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1386: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1376); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1387: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1377); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1388: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1389: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1573); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1390: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1582); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1531); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1391: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1582); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1392: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1378); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1393: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1380); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1394: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1380); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1395: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1381); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1396: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1225); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1397: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1359); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1398: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1279); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1399: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1550); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1400: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1266); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1401: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1402: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1313); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1403: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(879); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1404: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1047); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1405: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1353); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1406: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1209); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1407: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1419); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1408: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1219); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1409: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1410: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1244); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(875); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1139); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1411: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1244); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1412: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(895); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1413: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1329); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1414: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1170); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1415: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1416: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1043); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1417: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1446); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1418: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1067); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1419: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(936); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1420: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(953); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1421: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1422: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1087); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1423: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(912); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1424: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1245); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1425: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1330); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1426: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1246); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1273); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1427: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1584); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1428: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1331); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1429: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1356); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1430: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1557); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1431: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1531); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1432: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1347); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1433: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1545); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1434: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1548); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1435: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1436: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1560); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1437: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1554); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1438: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1555); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1439: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1564); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1440: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1267); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1441: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1271); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1442: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1594); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1443: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1444: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1445: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1446: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1305); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1447: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1305); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1448: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1576); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1449: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1204); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1450: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1403); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1451: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1578); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1452: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1453: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(961); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1454: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1390); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1455: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1541); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1456: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1477); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1457: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1478); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1458: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1528); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1459: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1460: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1424); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1461: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1239); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1462: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1463: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1496); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1464: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1549); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1392); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1465: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1391); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1466: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1421); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1467: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1449); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1468: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1443); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1469: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1470: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1513); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1471: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1581); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1472: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1589); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1473: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1361); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1474: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1441); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1475: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1476: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(967); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1477: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1478: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1479: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1249); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1480: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1481: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1482: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1483: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1061); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1484: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1485: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1144); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1486: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1010); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1487: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(933); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1488: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1489: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1069); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1490: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1105); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1491: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(914); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1492: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(916); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1493: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1494: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1605); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1495: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1328); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1496: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1404); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1497: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1451); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1498: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1429); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1499: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1611); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1500: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1612); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1501: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1586); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1502: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1234); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1503: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1253); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1504: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1505: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1354); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1506: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1507: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1416); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1508: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1509: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1358); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1510: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1458); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1511: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1546); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1512: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1513: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1348); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1514: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1461); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1515: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1368); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1516: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1300); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1517: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1518: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1519: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1314); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1520: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1521: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1218); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1522: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1519); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1523: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1315); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1524: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1525: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1526: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1256); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1527: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1528: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1527); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1529: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1539); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1530: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1531: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1570); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1532: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1263); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1533: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1534: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1283); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1535: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1362); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1536: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1537: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1310); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1538: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1311); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1539: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1369); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1540: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1541: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1442); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1542: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1056); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1543: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1058); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1544: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1019); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1545: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(963); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1546: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(888); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1547: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1049); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1548: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1301); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1549: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(938); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1550: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(892); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1551: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1071); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 7: + if (lookahead == 'r') ADVANCE(21); END_STATE(); - case 1552: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1074); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); - END_STATE(); - case 1553: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(877); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 8: + if (lookahead == 'x') ADVANCE(22); END_STATE(); - case 1554: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(901); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 9: + if (lookahead == 'f') ADVANCE(16); END_STATE(); - case 1555: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1203); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 10: + if (lookahead == 'o') ADVANCE(23); END_STATE(); - case 1556: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1052); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 11: + if (lookahead == 'a') ADVANCE(24); + if (lookahead == 'e') ADVANCE(25); END_STATE(); - case 1557: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1335); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 12: + if (lookahead == 'n') ADVANCE(26); END_STATE(); - case 1558: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1336); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 13: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (lookahead == 'C') ADVANCE(1); + if (lookahead == 'E') ADVANCE(2); + if (lookahead == 'I') ADVANCE(3); + if (lookahead == 'N') ADVANCE(4); + if (lookahead == 'T') ADVANCE(5); + if (lookahead == 'U') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'e') ADVANCE(8); + if (lookahead == 'i') ADVANCE(9); + if (lookahead == 'n') ADVANCE(10); + if (lookahead == 't') ADVANCE(11); + if (lookahead == 'u') ADVANCE(12); END_STATE(); - case 1559: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1580); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 14: + if (lookahead == 'E') ADVANCE(27); END_STATE(); - case 1560: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 15: + if (lookahead == 'I') ADVANCE(28); END_STATE(); - case 1561: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1342); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 16: + ACCEPT_TOKEN(sym_keyword_if); END_STATE(); - case 1562: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1255); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 17: + if (lookahead == 'T') ADVANCE(29); END_STATE(); - case 1563: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1367); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 18: + if (lookahead == 'B') ADVANCE(30); END_STATE(); - case 1564: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1388); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 19: + if (lookahead == 'M') ADVANCE(31); END_STATE(); - case 1565: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1462); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 20: + if (lookahead == 'L') ADVANCE(32); END_STATE(); - case 1566: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1258); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 21: + if (lookahead == 'e') ADVANCE(33); END_STATE(); - case 1567: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 22: + if (lookahead == 'i') ADVANCE(34); END_STATE(); - case 1568: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1260); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 23: + if (lookahead == 't') ADVANCE(29); END_STATE(); - case 1569: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 24: + if (lookahead == 'b') ADVANCE(35); END_STATE(); - case 1570: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1506); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 25: + if (lookahead == 'm') ADVANCE(36); END_STATE(); - case 1571: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1515); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 26: + if (lookahead == 'l') ADVANCE(37); END_STATE(); - case 1572: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1585); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 27: + if (lookahead == 'A') ADVANCE(38); END_STATE(); - case 1573: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1296); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 28: + if (lookahead == 'S') ADVANCE(39); END_STATE(); - case 1574: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1587); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 29: + ACCEPT_TOKEN(sym_keyword_not); END_STATE(); - case 1575: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1363); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 30: + if (lookahead == 'L') ADVANCE(40); END_STATE(); - case 1576: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1302); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 31: + if (lookahead == 'P') ADVANCE(41); END_STATE(); - case 1577: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1371); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 32: + if (lookahead == 'O') ADVANCE(42); END_STATE(); - case 1578: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1476); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 33: + if (lookahead == 'a') ADVANCE(43); END_STATE(); - case 1579: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1386); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 34: + if (lookahead == 's') ADVANCE(44); END_STATE(); - case 1580: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1498); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 35: + if (lookahead == 'l') ADVANCE(45); END_STATE(); - case 1581: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1484); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 36: + if (lookahead == 'p') ADVANCE(46); END_STATE(); - case 1582: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1407); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 37: + if (lookahead == 'o') ADVANCE(47); END_STATE(); - case 1583: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1409); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 38: + if (lookahead == 'T') ADVANCE(48); END_STATE(); - case 1584: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1562); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 39: + if (lookahead == 'T') ADVANCE(49); END_STATE(); - case 1585: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 40: + if (lookahead == 'E') ADVANCE(50); END_STATE(); - case 1586: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1262); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 41: + ACCEPT_TOKEN(aux_sym_keyword_temporary_token2); + if (lookahead == 'O') ADVANCE(51); END_STATE(); - case 1587: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 42: + if (lookahead == 'G') ADVANCE(52); END_STATE(); - case 1588: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 43: + if (lookahead == 't') ADVANCE(53); END_STATE(); - case 1589: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1575); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 44: + if (lookahead == 't') ADVANCE(54); END_STATE(); - case 1590: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1522); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 45: + if (lookahead == 'e') ADVANCE(50); END_STATE(); - case 1591: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1561); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 46: + ACCEPT_TOKEN(aux_sym_keyword_temporary_token2); + if (lookahead == 'o') ADVANCE(55); END_STATE(); - case 1592: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 47: + if (lookahead == 'g') ADVANCE(56); END_STATE(); - case 1593: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1307); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 48: + if (lookahead == 'E') ADVANCE(57); END_STATE(); - case 1594: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 49: + if (lookahead == 'S') ADVANCE(58); END_STATE(); - case 1595: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1228); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 50: + ACCEPT_TOKEN(sym_keyword_table); END_STATE(); - case 1596: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1399); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 51: + if (lookahead == 'R') ADVANCE(59); END_STATE(); - case 1597: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1395); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 52: + if (lookahead == 'G') ADVANCE(60); END_STATE(); - case 1598: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1517); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 53: + if (lookahead == 'e') ADVANCE(57); END_STATE(); - case 1599: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1569); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 54: + if (lookahead == 's') ADVANCE(58); END_STATE(); - case 1600: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1304); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 55: + if (lookahead == 'r') ADVANCE(61); END_STATE(); - case 1601: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1537); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 56: + if (lookahead == 'g') ADVANCE(62); END_STATE(); - case 1602: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1538); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 57: + ACCEPT_TOKEN(sym_keyword_create); END_STATE(); - case 1603: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1524); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 58: + ACCEPT_TOKEN(sym_keyword_exists); END_STATE(); - case 1604: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1349); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 59: + if (lookahead == 'A') ADVANCE(63); END_STATE(); - case 1605: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1217); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 60: + if (lookahead == 'E') ADVANCE(64); END_STATE(); - case 1606: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1303); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 61: + if (lookahead == 'a') ADVANCE(65); END_STATE(); - case 1607: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1292); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 62: + if (lookahead == 'e') ADVANCE(66); END_STATE(); - case 1608: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1273); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 63: + if (lookahead == 'R') ADVANCE(67); END_STATE(); - case 1609: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 64: + if (lookahead == 'D') ADVANCE(68); END_STATE(); - case 1610: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1125); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 65: + if (lookahead == 'r') ADVANCE(69); END_STATE(); - case 1611: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1045); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 66: + if (lookahead == 'd') ADVANCE(68); END_STATE(); - case 1612: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(950); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 67: + if (lookahead == 'Y') ADVANCE(70); END_STATE(); - case 1613: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(921); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 68: + ACCEPT_TOKEN(sym_keyword_unlogged); END_STATE(); - case 1614: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Y') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1615); + case 69: + if (lookahead == 'y') ADVANCE(70); END_STATE(); - case 1615: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '.') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1615); + case 70: + ACCEPT_TOKEN(aux_sym_keyword_temporary_token1); END_STATE(); default: return false; @@ -18534,76378 +803,785 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 863}, - [2] = {.lex_state = 863}, - [3] = {.lex_state = 16}, - [4] = {.lex_state = 16}, - [5] = {.lex_state = 20}, - [6] = {.lex_state = 5}, - [7] = {.lex_state = 16}, - [8] = {.lex_state = 5}, - [9] = {.lex_state = 16}, - [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}, - [17] = {.lex_state = 20}, - [18] = {.lex_state = 20}, - [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}, - [31] = {.lex_state = 16}, - [32] = {.lex_state = 16}, - [33] = {.lex_state = 5}, + [1] = {.lex_state = 0}, + [2] = {.lex_state = 0}, + [3] = {.lex_state = 0}, + [4] = {.lex_state = 0}, + [5] = {.lex_state = 0}, + [6] = {.lex_state = 0}, + [7] = {.lex_state = 0}, + [8] = {.lex_state = 0}, + [9] = {.lex_state = 0}, + [10] = {.lex_state = 0}, + [11] = {.lex_state = 0}, + [12] = {.lex_state = 0}, + [13] = {.lex_state = 0}, + [14] = {.lex_state = 0}, + [15] = {.lex_state = 0}, + [16] = {.lex_state = 0}, + [17] = {.lex_state = 0}, + [18] = {.lex_state = 0}, + [19] = {.lex_state = 0}, + [20] = {.lex_state = 0}, + [21] = {.lex_state = 0}, + [22] = {.lex_state = 0}, + [23] = {.lex_state = 0}, + [24] = {.lex_state = 0}, + [25] = {.lex_state = 0}, + [26] = {.lex_state = 0}, + [27] = {.lex_state = 0}, + [28] = {.lex_state = 0}, + [29] = {.lex_state = 0}, + [30] = {.lex_state = 0}, + [31] = {.lex_state = 1}, + [32] = {.lex_state = 0}, + [33] = {.lex_state = 0}, [34] = {.lex_state = 5}, - [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}, - [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}, - [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}, - [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}, - [102] = {.lex_state = 16}, - [103] = {.lex_state = 16}, - [104] = {.lex_state = 16}, - [105] = {.lex_state = 16}, - [106] = {.lex_state = 16}, - [107] = {.lex_state = 20}, - [108] = {.lex_state = 18}, - [109] = {.lex_state = 16}, - [110] = {.lex_state = 16}, - [111] = {.lex_state = 16}, - [112] = {.lex_state = 20}, - [113] = {.lex_state = 10}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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 = 21}, - [394] = {.lex_state = 27}, - [395] = {.lex_state = 19}, - [396] = {.lex_state = 27}, - [397] = {.lex_state = 27}, - [398] = {.lex_state = 41}, - [399] = {.lex_state = 41}, - [400] = {.lex_state = 19}, - [401] = {.lex_state = 19}, - [402] = {.lex_state = 27}, - [403] = {.lex_state = 19}, - [404] = {.lex_state = 27}, - [405] = {.lex_state = 27}, - [406] = {.lex_state = 27}, - [407] = {.lex_state = 17}, - [408] = {.lex_state = 27}, - [409] = {.lex_state = 27}, - [410] = {.lex_state = 27}, - [411] = {.lex_state = 45}, - [412] = {.lex_state = 27}, - [413] = {.lex_state = 27}, - [414] = {.lex_state = 17}, - [415] = {.lex_state = 17}, - [416] = {.lex_state = 17}, - [417] = {.lex_state = 17}, - [418] = {.lex_state = 17}, - [419] = {.lex_state = 27}, - [420] = {.lex_state = 17}, - [421] = {.lex_state = 39}, - [422] = {.lex_state = 17}, - [423] = {.lex_state = 17}, - [424] = {.lex_state = 33}, - [425] = {.lex_state = 19}, - [426] = {.lex_state = 17}, - [427] = {.lex_state = 41}, - [428] = {.lex_state = 41}, - [429] = {.lex_state = 27}, - [430] = {.lex_state = 17}, - [431] = {.lex_state = 17}, - [432] = {.lex_state = 17}, - [433] = {.lex_state = 27}, - [434] = {.lex_state = 27}, - [435] = {.lex_state = 17}, - [436] = {.lex_state = 17}, - [437] = {.lex_state = 27}, - [438] = {.lex_state = 29}, - [439] = {.lex_state = 45}, - [440] = {.lex_state = 17}, - [441] = {.lex_state = 17}, - [442] = {.lex_state = 19}, - [443] = {.lex_state = 39}, - [444] = {.lex_state = 29}, - [445] = {.lex_state = 29}, - [446] = {.lex_state = 21}, - [447] = {.lex_state = 39}, - [448] = {.lex_state = 19}, - [449] = {.lex_state = 29}, - [450] = {.lex_state = 29}, - [451] = {.lex_state = 39}, - [452] = {.lex_state = 29}, - [453] = {.lex_state = 19}, - [454] = {.lex_state = 19}, - [455] = {.lex_state = 39}, - [456] = {.lex_state = 39}, - [457] = {.lex_state = 39}, - [458] = {.lex_state = 29}, - [459] = {.lex_state = 19}, - [460] = {.lex_state = 21}, - [461] = {.lex_state = 29}, - [462] = {.lex_state = 39}, - [463] = {.lex_state = 39}, - [464] = {.lex_state = 39}, - [465] = {.lex_state = 39}, - [466] = {.lex_state = 19}, - [467] = {.lex_state = 19}, - [468] = {.lex_state = 51}, - [469] = {.lex_state = 19}, - [470] = {.lex_state = 19}, - [471] = {.lex_state = 39}, - [472] = {.lex_state = 19}, - [473] = {.lex_state = 29}, - [474] = {.lex_state = 19}, - [475] = {.lex_state = 39}, - [476] = {.lex_state = 39}, - [477] = {.lex_state = 19}, - [478] = {.lex_state = 39}, - [479] = {.lex_state = 19}, - [480] = {.lex_state = 39}, - [481] = {.lex_state = 39}, - [482] = {.lex_state = 34}, - [483] = {.lex_state = 29}, - [484] = {.lex_state = 30}, - [485] = {.lex_state = 16}, - [486] = {.lex_state = 19}, - [487] = {.lex_state = 33}, - [488] = {.lex_state = 19}, - [489] = {.lex_state = 39}, - [490] = {.lex_state = 33}, - [491] = {.lex_state = 51}, - [492] = {.lex_state = 19}, - [493] = {.lex_state = 29}, - [494] = {.lex_state = 39}, - [495] = {.lex_state = 19}, - [496] = {.lex_state = 39}, - [497] = {.lex_state = 30}, - [498] = {.lex_state = 30}, - [499] = {.lex_state = 30}, - [500] = {.lex_state = 34}, - [501] = {.lex_state = 8}, - [502] = {.lex_state = 30}, - [503] = {.lex_state = 19}, - [504] = {.lex_state = 30}, - [505] = {.lex_state = 8}, - [506] = {.lex_state = 30}, - [507] = {.lex_state = 30}, - [508] = {.lex_state = 34}, - [509] = {.lex_state = 30}, - [510] = {.lex_state = 16}, - [511] = {.lex_state = 19}, - [512] = {.lex_state = 30}, - [513] = {.lex_state = 30}, - [514] = {.lex_state = 9}, - [515] = {.lex_state = 21}, - [516] = {.lex_state = 16}, - [517] = {.lex_state = 8}, - [518] = {.lex_state = 9}, - [519] = {.lex_state = 16}, - [520] = {.lex_state = 24}, - [521] = {.lex_state = 16}, - [522] = {.lex_state = 16}, - [523] = {.lex_state = 16}, - [524] = {.lex_state = 16}, - [525] = {.lex_state = 16}, - [526] = {.lex_state = 16}, - [527] = {.lex_state = 16}, - [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 = 8}, - [535] = {.lex_state = 16}, - [536] = {.lex_state = 16}, - [537] = {.lex_state = 8}, - [538] = {.lex_state = 16}, - [539] = {.lex_state = 16}, - [540] = {.lex_state = 16}, - [541] = {.lex_state = 8}, - [542] = {.lex_state = 8}, - [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 = 16}, - [552] = {.lex_state = 16}, - [553] = {.lex_state = 16}, - [554] = {.lex_state = 16}, - [555] = {.lex_state = 16}, - [556] = {.lex_state = 24}, - [557] = {.lex_state = 16}, - [558] = {.lex_state = 16}, - [559] = {.lex_state = 16}, - [560] = {.lex_state = 16}, - [561] = {.lex_state = 16}, - [562] = {.lex_state = 9}, - [563] = {.lex_state = 16}, - [564] = {.lex_state = 16}, - [565] = {.lex_state = 16}, - [566] = {.lex_state = 16}, - [567] = {.lex_state = 16}, - [568] = {.lex_state = 16}, - [569] = {.lex_state = 16}, - [570] = {.lex_state = 8}, - [571] = {.lex_state = 29}, - [572] = {.lex_state = 16}, - [573] = {.lex_state = 16}, - [574] = {.lex_state = 9}, - [575] = {.lex_state = 16}, - [576] = {.lex_state = 25}, - [577] = {.lex_state = 16}, - [578] = {.lex_state = 9}, - [579] = {.lex_state = 16}, - [580] = {.lex_state = 9}, - [581] = {.lex_state = 29}, - [582] = {.lex_state = 9}, - [583] = {.lex_state = 9}, - [584] = {.lex_state = 16}, - [585] = {.lex_state = 25}, - [586] = {.lex_state = 16}, - [587] = {.lex_state = 16}, - [588] = {.lex_state = 37}, - [589] = {.lex_state = 16}, - [590] = {.lex_state = 16}, - [591] = {.lex_state = 16}, - [592] = {.lex_state = 37}, - [593] = {.lex_state = 16}, - [594] = {.lex_state = 16}, - [595] = {.lex_state = 16}, - [596] = {.lex_state = 30}, - [597] = {.lex_state = 16}, - [598] = {.lex_state = 16}, - [599] = {.lex_state = 16}, - [600] = {.lex_state = 16}, - [601] = {.lex_state = 16}, - [602] = {.lex_state = 16}, - [603] = {.lex_state = 16}, - [604] = {.lex_state = 37}, - [605] = {.lex_state = 37}, - [606] = {.lex_state = 30}, - [607] = {.lex_state = 16}, - [608] = {.lex_state = 16}, - [609] = {.lex_state = 29}, - [610] = {.lex_state = 16}, - [611] = {.lex_state = 29}, - [612] = {.lex_state = 38}, - [613] = {.lex_state = 30}, - [614] = {.lex_state = 29}, - [615] = {.lex_state = 29}, - [616] = {.lex_state = 29}, - [617] = {.lex_state = 29}, - [618] = {.lex_state = 29}, - [619] = {.lex_state = 29}, - [620] = {.lex_state = 29}, - [621] = {.lex_state = 29}, - [622] = {.lex_state = 38}, - [623] = {.lex_state = 29}, - [624] = {.lex_state = 29}, - [625] = {.lex_state = 29}, - [626] = {.lex_state = 29}, - [627] = {.lex_state = 29}, - [628] = {.lex_state = 29}, - [629] = {.lex_state = 29}, - [630] = {.lex_state = 38}, - [631] = {.lex_state = 38}, - [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 = 47}, - [669] = {.lex_state = 47}, - [670] = {.lex_state = 47}, - [671] = {.lex_state = 47}, - [672] = {.lex_state = 47}, - [673] = {.lex_state = 863}, - [674] = {.lex_state = 47}, - [675] = {.lex_state = 47}, - [676] = {.lex_state = 863}, - [677] = {.lex_state = 47}, - [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}, - [693] = {.lex_state = 46}, - [694] = {.lex_state = 46}, - [695] = {.lex_state = 46}, - [696] = {.lex_state = 46}, - [697] = {.lex_state = 43}, - [698] = {.lex_state = 43}, - [699] = {.lex_state = 43}, - [700] = {.lex_state = 43}, - [701] = {.lex_state = 43}, - [702] = {.lex_state = 43}, - [703] = {.lex_state = 43}, - [704] = {.lex_state = 43}, - [705] = {.lex_state = 43}, - [706] = {.lex_state = 49}, - [707] = {.lex_state = 43}, - [708] = {.lex_state = 43}, - [709] = {.lex_state = 43}, - [710] = {.lex_state = 43}, - [711] = {.lex_state = 43}, - [712] = {.lex_state = 52}, - [713] = {.lex_state = 43}, - [714] = {.lex_state = 43}, - [715] = {.lex_state = 43}, - [716] = {.lex_state = 43}, - [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}, - [873] = {.lex_state = 43}, - [874] = {.lex_state = 863}, - [875] = {.lex_state = 863}, - [876] = {.lex_state = 863}, - [877] = {.lex_state = 863}, - [878] = {.lex_state = 86}, - [879] = {.lex_state = 863}, - [880] = {.lex_state = 863}, - [881] = {.lex_state = 58}, - [882] = {.lex_state = 58}, - [883] = {.lex_state = 58}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 863}, - [886] = {.lex_state = 863}, - [887] = {.lex_state = 863}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 863}, - [892] = {.lex_state = 863}, - [893] = {.lex_state = 863}, - [894] = {.lex_state = 863}, - [895] = {.lex_state = 863}, - [896] = {.lex_state = 863}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 863}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 58}, - [901] = {.lex_state = 863}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 863}, - [904] = {.lex_state = 58}, - [905] = {.lex_state = 863}, - [906] = {.lex_state = 59}, - [907] = {.lex_state = 863}, - [908] = {.lex_state = 65}, - [909] = {.lex_state = 58}, - [910] = {.lex_state = 863}, - [911] = {.lex_state = 863}, - [912] = {.lex_state = 87}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 863}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 59}, - [917] = {.lex_state = 59}, - [918] = {.lex_state = 863}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 863}, - [925] = {.lex_state = 863}, - [926] = {.lex_state = 863}, - [927] = {.lex_state = 62}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 863}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 62}, - [933] = {.lex_state = 59}, - [934] = {.lex_state = 63}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 863}, - [937] = {.lex_state = 63}, - [938] = {.lex_state = 62}, - [939] = {.lex_state = 63}, - [940] = {.lex_state = 63}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 63}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 63}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 59}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 59}, - [951] = {.lex_state = 66}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 63}, - [955] = {.lex_state = 863}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 82}, - [959] = {.lex_state = 62}, - [960] = {.lex_state = 62}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 62}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 54}, - [968] = {.lex_state = 863}, - [969] = {.lex_state = 863}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 863}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 863}, - [974] = {.lex_state = 863}, - [975] = {.lex_state = 863}, - [976] = {.lex_state = 60}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 54}, - [979] = {.lex_state = 60}, - [980] = {.lex_state = 863}, - [981] = {.lex_state = 863}, - [982] = {.lex_state = 863}, - [983] = {.lex_state = 863}, - [984] = {.lex_state = 863}, - [985] = {.lex_state = 61}, - [986] = {.lex_state = 54}, - [987] = {.lex_state = 863}, - [988] = {.lex_state = 863}, - [989] = {.lex_state = 863}, - [990] = {.lex_state = 863}, - [991] = {.lex_state = 60}, - [992] = {.lex_state = 69}, - [993] = {.lex_state = 54}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 863}, - [996] = {.lex_state = 863}, - [997] = {.lex_state = 863}, - [998] = {.lex_state = 54}, - [999] = {.lex_state = 54}, - [1000] = {.lex_state = 863}, - [1001] = {.lex_state = 863}, - [1002] = {.lex_state = 54}, - [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 = 0}, - [1010] = {.lex_state = 60}, - [1011] = {.lex_state = 60}, - [1012] = {.lex_state = 67}, - [1013] = {.lex_state = 63}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 54}, - [1017] = {.lex_state = 863}, - [1018] = {.lex_state = 54}, - [1019] = {.lex_state = 863}, - [1020] = {.lex_state = 863}, - [1021] = {.lex_state = 61}, - [1022] = {.lex_state = 863}, - [1023] = {.lex_state = 863}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 63}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 863}, - [1028] = {.lex_state = 68}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 863}, - [1032] = {.lex_state = 43}, - [1033] = {.lex_state = 61}, - [1034] = {.lex_state = 61}, - [1035] = {.lex_state = 863}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 61}, - [1038] = {.lex_state = 43}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 54}, - [1042] = {.lex_state = 43}, - [1043] = {.lex_state = 43}, - [1044] = {.lex_state = 42}, - [1045] = {.lex_state = 43}, - [1046] = {.lex_state = 54}, - [1047] = {.lex_state = 863}, - [1048] = {.lex_state = 54}, - [1049] = {.lex_state = 43}, - [1050] = {.lex_state = 54}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 43}, - [1053] = {.lex_state = 43}, - [1054] = {.lex_state = 54}, - [1055] = {.lex_state = 54}, - [1056] = {.lex_state = 863}, - [1057] = {.lex_state = 863}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 64}, - [1060] = {.lex_state = 863}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 863}, - [1063] = {.lex_state = 863}, - [1064] = {.lex_state = 863}, - [1065] = {.lex_state = 96}, - [1066] = {.lex_state = 863}, - [1067] = {.lex_state = 863}, - [1068] = {.lex_state = 70}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 863}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 863}, - [1073] = {.lex_state = 54}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 863}, - [1076] = {.lex_state = 54}, - [1077] = {.lex_state = 54}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 54}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 54}, - [1082] = {.lex_state = 863}, - [1083] = {.lex_state = 863}, - [1084] = {.lex_state = 863}, - [1085] = {.lex_state = 55}, - [1086] = {.lex_state = 55}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 54}, - [1089] = {.lex_state = 74}, - [1090] = {.lex_state = 54}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 54}, - [1093] = {.lex_state = 72}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 863}, - [1097] = {.lex_state = 83}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 54}, - [1100] = {.lex_state = 74}, - [1101] = {.lex_state = 863}, - [1102] = {.lex_state = 64}, - [1103] = {.lex_state = 64}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 863}, - [1108] = {.lex_state = 72}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 74}, - [1113] = {.lex_state = 74}, - [1114] = {.lex_state = 55}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 54}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 64}, - [1123] = {.lex_state = 64}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 54}, - [1126] = {.lex_state = 863}, - [1127] = {.lex_state = 64}, - [1128] = {.lex_state = 863}, - [1129] = {.lex_state = 863}, - [1130] = {.lex_state = 74}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 863}, - [1133] = {.lex_state = 100}, - [1134] = {.lex_state = 863}, - [1135] = {.lex_state = 863}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 863}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 863}, - [1143] = {.lex_state = 863}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 863}, - [1146] = {.lex_state = 54}, - [1147] = {.lex_state = 863}, - [1148] = {.lex_state = 54}, - [1149] = {.lex_state = 73}, - [1150] = {.lex_state = 863}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 54}, - [1153] = {.lex_state = 863}, - [1154] = {.lex_state = 863}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 73}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 63}, - [1161] = {.lex_state = 63}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 63}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 863}, - [1166] = {.lex_state = 93}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 63}, - [1170] = {.lex_state = 63}, - [1171] = {.lex_state = 863}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 63}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 63}, - [1176] = {.lex_state = 63}, - [1177] = {.lex_state = 63}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 63}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 107}, - [1182] = {.lex_state = 863}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 863}, - [1188] = {.lex_state = 863}, - [1189] = {.lex_state = 863}, - [1190] = {.lex_state = 863}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 863}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 863}, - [1195] = {.lex_state = 863}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 863}, - [1199] = {.lex_state = 863}, - [1200] = {.lex_state = 863}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 863}, - [1203] = {.lex_state = 863}, - [1204] = {.lex_state = 863}, - [1205] = {.lex_state = 863}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 54}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 863}, - [1212] = {.lex_state = 48}, - [1213] = {.lex_state = 48}, - [1214] = {.lex_state = 863}, - [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 863}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 863}, - [1221] = {.lex_state = 863}, - [1222] = {.lex_state = 55}, - [1223] = {.lex_state = 48}, - [1224] = {.lex_state = 48}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 48}, - [1228] = {.lex_state = 863}, - [1229] = {.lex_state = 48}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 863}, - [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 55}, - [1234] = {.lex_state = 863}, - [1235] = {.lex_state = 48}, - [1236] = {.lex_state = 48}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 863}, - [1239] = {.lex_state = 863}, - [1240] = {.lex_state = 863}, - [1241] = {.lex_state = 48}, - [1242] = {.lex_state = 863}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 48}, - [1247] = {.lex_state = 863}, - [1248] = {.lex_state = 48}, - [1249] = {.lex_state = 48}, - [1250] = {.lex_state = 863}, - [1251] = {.lex_state = 863}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 48}, - [1254] = {.lex_state = 863}, - [1255] = {.lex_state = 48}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 48}, - [1258] = {.lex_state = 863}, - [1259] = {.lex_state = 48}, - [1260] = {.lex_state = 48}, - [1261] = {.lex_state = 48}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 55}, - [1264] = {.lex_state = 48}, - [1265] = {.lex_state = 72}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 48}, - [1268] = {.lex_state = 863}, - [1269] = {.lex_state = 863}, - [1270] = {.lex_state = 48}, - [1271] = {.lex_state = 863}, - [1272] = {.lex_state = 863}, - [1273] = {.lex_state = 863}, - [1274] = {.lex_state = 20}, - [1275] = {.lex_state = 863}, - [1276] = {.lex_state = 95}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 95}, - [1279] = {.lex_state = 863}, - [1280] = {.lex_state = 863}, - [1281] = {.lex_state = 863}, - [1282] = {.lex_state = 863}, - [1283] = {.lex_state = 863}, - [1284] = {.lex_state = 863}, - [1285] = {.lex_state = 95}, - [1286] = {.lex_state = 863}, - [1287] = {.lex_state = 102}, - [1288] = {.lex_state = 55}, - [1289] = {.lex_state = 76}, - [1290] = {.lex_state = 863}, - [1291] = {.lex_state = 863}, - [1292] = {.lex_state = 863}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 863}, - [1295] = {.lex_state = 863}, - [1296] = {.lex_state = 55}, - [1297] = {.lex_state = 863}, - [1298] = {.lex_state = 863}, - [1299] = {.lex_state = 55}, - [1300] = {.lex_state = 863}, - [1301] = {.lex_state = 863}, - [1302] = {.lex_state = 20}, - [1303] = {.lex_state = 863}, - [1304] = {.lex_state = 102}, - [1305] = {.lex_state = 101}, - [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 = 0}, - [1315] = {.lex_state = 55}, - [1316] = {.lex_state = 55}, - [1317] = {.lex_state = 863}, - [1318] = {.lex_state = 55}, - [1319] = {.lex_state = 55}, - [1320] = {.lex_state = 863}, - [1321] = {.lex_state = 863}, - [1322] = {.lex_state = 863}, - [1323] = {.lex_state = 863}, - [1324] = {.lex_state = 863}, - [1325] = {.lex_state = 55}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 863}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 863}, - [1333] = {.lex_state = 863}, - [1334] = {.lex_state = 71}, - [1335] = {.lex_state = 55}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 863}, - [1338] = {.lex_state = 863}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 863}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 863}, - [1344] = {.lex_state = 863}, - [1345] = {.lex_state = 55}, - [1346] = {.lex_state = 863}, - [1347] = {.lex_state = 55}, - [1348] = {.lex_state = 863}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 91}, - [1352] = {.lex_state = 863}, - [1353] = {.lex_state = 55}, - [1354] = {.lex_state = 863}, - [1355] = {.lex_state = 55}, - [1356] = {.lex_state = 101}, - [1357] = {.lex_state = 55}, - [1358] = {.lex_state = 863}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 863}, - [1361] = {.lex_state = 863}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 863}, - [1364] = {.lex_state = 863}, - [1365] = {.lex_state = 863}, - [1366] = {.lex_state = 55}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 863}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 55}, - [1371] = {.lex_state = 863}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 55}, - [1376] = {.lex_state = 55}, - [1377] = {.lex_state = 863}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 863}, - [1381] = {.lex_state = 863}, - [1382] = {.lex_state = 55}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 75}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 863}, - [1388] = {.lex_state = 863}, - [1389] = {.lex_state = 863}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 48}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 863}, - [1396] = {.lex_state = 106}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 863}, - [1400] = {.lex_state = 863}, - [1401] = {.lex_state = 863}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 105}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 863}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 106}, - [1408] = {.lex_state = 863}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 48}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 48}, - [1413] = {.lex_state = 863}, - [1414] = {.lex_state = 48}, - [1415] = {.lex_state = 863}, - [1416] = {.lex_state = 863}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 863}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 104}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 863}, - [1426] = {.lex_state = 48}, - [1427] = {.lex_state = 106}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 863}, - [1430] = {.lex_state = 48}, - [1431] = {.lex_state = 48}, - [1432] = {.lex_state = 48}, - [1433] = {.lex_state = 863}, - [1434] = {.lex_state = 863}, - [1435] = {.lex_state = 105}, - [1436] = {.lex_state = 863}, - [1437] = {.lex_state = 863}, - [1438] = {.lex_state = 863}, - [1439] = {.lex_state = 63}, - [1440] = {.lex_state = 48}, - [1441] = {.lex_state = 863}, - [1442] = {.lex_state = 863}, - [1443] = {.lex_state = 863}, - [1444] = {.lex_state = 98}, - [1445] = {.lex_state = 16}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 863}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [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}, - [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}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 103}, - [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 = 57}, - [1479] = {.lex_state = 863}, - [1480] = {.lex_state = 57}, - [1481] = {.lex_state = 106}, - [1482] = {.lex_state = 106}, - [1483] = {.lex_state = 57}, - [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 = 863}, - [1503] = {.lex_state = 57}, - [1504] = {.lex_state = 57}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 57}, - [1507] = {.lex_state = 57}, - [1508] = {.lex_state = 106}, - [1509] = {.lex_state = 57}, - [1510] = {.lex_state = 57}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 863}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 57}, - [1516] = {.lex_state = 57}, - [1517] = {.lex_state = 48}, - [1518] = {.lex_state = 57}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 863}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 863}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 48}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 106}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 863}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 48}, - [1538] = {.lex_state = 48}, - [1539] = {.lex_state = 863}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 863}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 863}, - [1548] = {.lex_state = 48}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 48}, - [1554] = {.lex_state = 48}, - [1555] = {.lex_state = 20}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 863}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 48}, - [1565] = {.lex_state = 863}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 48}, - [1568] = {.lex_state = 863}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 863}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 48}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 54}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 48}, - [1581] = {.lex_state = 48}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.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 = 48}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 110}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 16}, - [1605] = {.lex_state = 48}, - [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}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 110}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 0}, - [1626] = {.lex_state = 109}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 48}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 48}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 54}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 48}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 109}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 95}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 48}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 99}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 48}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 863}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 16}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 54}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 20}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0}, - [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 = 0}, - [1730] = {.lex_state = 48}, - [1731] = {.lex_state = 95}, - [1732] = {.lex_state = 48}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 90}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [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}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 48}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 16}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 48}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 48}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 48}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 16}, - [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}, - [1786] = {.lex_state = 48}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 48}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 48}, - [1791] = {.lex_state = 48}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 48}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 863}, - [1796] = {.lex_state = 48}, - [1797] = {.lex_state = 54}, - [1798] = {.lex_state = 48}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 48}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 89}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 48}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 863}, - [1820] = {.lex_state = 48}, - [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 48}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 48}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 863}, - [1832] = {.lex_state = 863}, - [1833] = {.lex_state = 109}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 48}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 48}, - [1843] = {.lex_state = 92}, - [1844] = {.lex_state = 16}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 48}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 48}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 48}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 48}, - [1865] = {.lex_state = 48}, - [1866] = {.lex_state = 863}, - [1867] = {.lex_state = 48}, - [1868] = {.lex_state = 48}, - [1869] = {.lex_state = 48}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 48}, - [1873] = {.lex_state = 48}, - [1874] = {.lex_state = 48}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 863}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 20}, - [1887] = {.lex_state = 863}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 48}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 48}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 48}, - [1898] = {.lex_state = 48}, - [1899] = {.lex_state = 48}, - [1900] = {.lex_state = 48}, - [1901] = {.lex_state = 863}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 48}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 48}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 48}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 863}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 48}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 48}, - [1924] = {.lex_state = 48}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 863}, - [1933] = {.lex_state = 48}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 863}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 48}, - [1940] = {.lex_state = 48}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 48}, - [1943] = {.lex_state = 48}, - [1944] = {.lex_state = 863}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 16}, - [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}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 48}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 48}, - [1965] = {.lex_state = 48}, - [1966] = {.lex_state = 48}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 48}, - [1983] = {.lex_state = 863}, - [1984] = {.lex_state = 863}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 863}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 48}, - [1990] = {.lex_state = 48}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 48}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 863}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 0}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 20}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 863}, - [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}, - [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 48}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 53}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 0}, - [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 0}, - [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 863}, - [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [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}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 863}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 48}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, - [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}, - [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}, - [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 = 863}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 16}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 863}, - [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0}, - [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 = 54}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 863}, - [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 = 863}, - [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 = 0}, - [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 = 48}, - [2385] = {.lex_state = 0}, - [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 0}, - [2388] = {.lex_state = 0}, - [2389] = {.lex_state = 0}, - [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}, + [35] = {.lex_state = 0}, + [36] = {.lex_state = 0}, + [37] = {.lex_state = 0}, + [38] = {.lex_state = 0}, + [39] = {.lex_state = 0}, + [40] = {.lex_state = 0}, + [41] = {.lex_state = 0}, + [42] = {.lex_state = 0}, + [43] = {.lex_state = 0}, + [44] = {.lex_state = 0}, + [45] = {.lex_state = 0}, + [46] = {.lex_state = 0}, + [47] = {(TSStateId)(-1)}, + [48] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { + [sym_comment] = STATE(0), + [sym_marginalia] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), + [sym__identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), - [aux_sym_drop_type_statement_token1] = ACTIONS(1), - [aux_sym_drop_type_statement_token2] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [aux_sym_drop_type_statement_token3] = ACTIONS(1), - [aux_sym_drop_type_statement_token4] = ACTIONS(1), - [aux_sym_update_statement_token1] = ACTIONS(1), - [aux_sym_update_statement_token2] = ACTIONS(1), - [aux_sym_update_statement_token3] = ACTIONS(1), - [aux_sym_update_statement_token4] = ACTIONS(1), - [aux_sym_drop_function_statement_token1] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [aux_sym_create_type_statement_token1] = ACTIONS(1), - [aux_sym_create_type_statement_token2] = ACTIONS(1), - [aux_sym_insert_statement_token2] = ACTIONS(1), - [aux_sym_insert_items_token1] = ACTIONS(1), - [aux_sym_insert_items_token2] = ACTIONS(1), - [aux_sym_insert_conflict_token1] = ACTIONS(1), - [aux_sym_insert_conflict_token2] = ACTIONS(1), - [aux_sym_insert_conflict_token3] = ACTIONS(1), - [aux_sym_conflict_target_token1] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [aux_sym_update_set_token1] = ACTIONS(1), - [aux_sym_create_table_statement_token1] = ACTIONS(1), - [aux_sym_create_schema_statement_token1] = ACTIONS(1), - [aux_sym_schema_role_token1] = ACTIONS(1), - [aux_sym_schema_role_token2] = ACTIONS(1), - [aux_sym_schema_role_token3] = ACTIONS(1), - [aux_sym_create_index_statement_token1] = ACTIONS(1), - [aux_sym_create_index_statement_token3] = ACTIONS(1), - [aux_sym_index_using_token1] = ACTIONS(1), - [aux_sym_index_col_dir_token2] = ACTIONS(1), - [aux_sym_index_col_nulls_token2] = ACTIONS(1), - [aux_sym_index_col_nulls_token3] = ACTIONS(1), - [aux_sym_delete_statement_token1] = ACTIONS(1), - [aux_sym_alter_table_statement_token1] = ACTIONS(1), - [aux_sym_alter_table_action_token1] = ACTIONS(1), - [aux_sym_alter_table_action_token2] = ACTIONS(1), - [aux_sym_alter_column_action_token1] = ACTIONS(1), - [aux_sym_alter_column_action_token2] = ACTIONS(1), - [aux_sym_alter_column_action_token3] = ACTIONS(1), - [aux_sym_constraint_when_token1] = ACTIONS(1), - [aux_sym_constraint_when_token3] = ACTIONS(1), - [aux_sym_constraint_when_token4] = ACTIONS(1), - [aux_sym_table_constraint_ty_token1] = ACTIONS(1), - [aux_sym_table_constraint_ty_token2] = ACTIONS(1), - [aux_sym_table_constraint_ty_token3] = ACTIONS(1), - [aux_sym_constraint_foreign_key_token1] = ACTIONS(1), - [aux_sym_fk_ref_action_token1] = ACTIONS(1), - [aux_sym_fk_ref_action_token2] = ACTIONS(1), - [aux_sym_alter_table_rename_column_token1] = ACTIONS(1), - [aux_sym_alter_table_rename_column_token2] = ACTIONS(1), - [aux_sym_grant_statement_token1] = ACTIONS(1), - [aux_sym_grant_roles_token1] = ACTIONS(1), - [aux_sym_grant_roles_token2] = ACTIONS(1), - [aux_sym_grant_privileges_token1] = ACTIONS(1), - [aux_sym_grant_privileges_token2] = ACTIONS(1), - [aux_sym_grant_targets_token4] = ACTIONS(1), - [aux_sym_grant_targets_token5] = ACTIONS(1), - [aux_sym_grant_targets_token6] = ACTIONS(1), - [aux_sym_grant_targets_token7] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [aux_sym_sequence_increment_token2] = ACTIONS(1), - [aux_sym_sequence_min_token1] = ACTIONS(1), - [aux_sym_sequence_max_token1] = ACTIONS(1), - [aux_sym_sequence_start_token1] = ACTIONS(1), - [aux_sym_sequence_start_token2] = ACTIONS(1), - [aux_sym_sequence_cache_token1] = ACTIONS(1), - [aux_sym_sequence_cycle_token1] = ACTIONS(1), - [aux_sym_sequence_owned_token1] = ACTIONS(1), - [aux_sym_sequence_owned_token2] = ACTIONS(1), - [aux_sym_create_trigger_statement_token1] = ACTIONS(1), - [aux_sym_trigger_when_token1] = ACTIONS(1), - [aux_sym_trigger_when_token2] = ACTIONS(1), - [aux_sym_trigger_event_token1] = ACTIONS(1), - [aux_sym_trigger_event_token2] = ACTIONS(1), - [aux_sym_trigger_scope_token1] = ACTIONS(1), - [aux_sym_trigger_scope_token2] = ACTIONS(1), - [aux_sym_trigger_scope_token3] = ACTIONS(1), - [aux_sym_trigger_exec_token1] = ACTIONS(1), - [aux_sym_trigger_cond_token1] = ACTIONS(1), - [aux_sym_open_cursor_statement_token1] = ACTIONS(1), - [aux_sym_get_diagnostics_statement_token1] = ACTIONS(1), - [aux_sym_get_diagnostics_statement_token2] = ACTIONS(1), - [aux_sym_get_diagnostics_statement_token3] = ACTIONS(1), - [aux_sym_for_statement_token1] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [aux_sym_for_statement_token2] = ACTIONS(1), - [aux_sym_for_statement_token3] = ACTIONS(1), - [aux_sym_raise_statement_token1] = ACTIONS(1), - [aux_sym_if_statement_token1] = ACTIONS(1), - [aux_sym_if_statement_token2] = ACTIONS(1), - [aux_sym_if_statement_token3] = ACTIONS(1), - [aux_sym_if_statement_token4] = ACTIONS(1), - [aux_sym_if_statement_token5] = ACTIONS(1), - [anon_sym_COLON_EQ] = ACTIONS(1), - [aux_sym_return_statement_token1] = ACTIONS(1), - [aux_sym_return_statement_token2] = ACTIONS(1), - [aux_sym_perform_statement_token1] = ACTIONS(1), - [aux_sym_select_statement_token1] = ACTIONS(1), - [aux_sym_with_query_item_token1] = ACTIONS(1), - [aux_sym_into_token1] = ACTIONS(1), - [aux_sym_select_having_token1] = ACTIONS(1), - [aux_sym_select_limit_token1] = ACTIONS(1), - [aux_sym_select_offset_token1] = ACTIONS(1), - [aux_sym_select_offset_token2] = ACTIONS(1), - [aux_sym_select_order_by_token1] = ACTIONS(1), - [aux_sym_join_item_token1] = ACTIONS(1), - [aux_sym_join_item_token2] = ACTIONS(1), - [aux_sym_join_item_token3] = ACTIONS(1), - [aux_sym_join_type_token1] = ACTIONS(1), - [aux_sym_join_type_token2] = ACTIONS(1), - [aux_sym_join_type_token3] = ACTIONS(1), - [aux_sym_join_type_token4] = ACTIONS(1), - [aux_sym_join_type_token5] = ACTIONS(1), - [aux_sym_create_function_statement_token1] = ACTIONS(1), - [aux_sym_function_run_as_token1] = ACTIONS(1), - [aux_sym_function_run_as_token3] = ACTIONS(1), - [aux_sym_function_volatility_token1] = ACTIONS(1), - [aux_sym_function_volatility_token2] = ACTIONS(1), - [aux_sym_function_volatility_token3] = ACTIONS(1), - [aux_sym_body_token1] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [aux_sym_declarations_token1] = ACTIONS(1), - [aux_sym_where_filter_token1] = ACTIONS(1), - [aux_sym_or_replace_token1] = ACTIONS(1), - [aux_sym_temporary_token1] = ACTIONS(1), - [aux_sym_temporary_token2] = ACTIONS(1), - [sym_unlogged] = ACTIONS(1), - [aux_sym_if_not_exists_token1] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [aux_sym__type_token1] = ACTIONS(1), - [aux_sym__type_token2] = ACTIONS(1), - [aux_sym_predefined_type_token1] = ACTIONS(1), - [aux_sym_predefined_type_token2] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [aux_sym_string_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(1), - [aux_sym_array_constructor_token1] = ACTIONS(1), - [aux_sym_time_expression_token1] = ACTIONS(1), - [aux_sym_time_expression_token2] = ACTIONS(1), - [aux_sym_time_expression_token3] = ACTIONS(1), - [aux_sym__interval_fields_token1] = ACTIONS(1), - [aux_sym__interval_fields_token2] = ACTIONS(1), - [aux_sym__interval_fields_token3] = ACTIONS(1), - [aux_sym__interval_fields_token4] = ACTIONS(1), - [aux_sym__interval_fields_token5] = ACTIONS(1), - [aux_sym__interval_fields_token6] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [sym_keyword_create] = ACTIONS(1), + [sym_keyword_table] = ACTIONS(1), + [aux_sym_keyword_temporary_token1] = ACTIONS(1), + [aux_sym_keyword_temporary_token2] = ACTIONS(1), + [sym_keyword_unlogged] = ACTIONS(1), + [sym_keyword_if] = ACTIONS(1), + [sym_keyword_not] = ACTIONS(1), + [sym_keyword_exists] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_GT] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [aux_sym_contains_op_token1] = ACTIONS(1), - [aux_sym_contains_op_token2] = ACTIONS(1), - [aux_sym_contains_op_token3] = ACTIONS(1), - [aux_sym_comparison_null_token1] = ACTIONS(1), - [aux_sym_comparison_null_token2] = ACTIONS(1), - [aux_sym_comparison_null_token3] = ACTIONS(1), - [aux_sym_comparison_null_token4] = ACTIONS(1), - [aux_sym_comparison_kw_token1] = ACTIONS(1), - [aux_sym_comparison_kw_token2] = ACTIONS(1), - [aux_sym_comparison_kw_token3] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_LT_AT] = ACTIONS(1), - [anon_sym_AT_GT] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_AMP_LT] = ACTIONS(1), - [anon_sym_AMP_GT] = ACTIONS(1), - [anon_sym_DASH_PIPE_DASH] = ACTIONS(1), - [sym_cast] = ACTIONS(1), - [sym_and] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [sym_number] = ACTIONS(1), + [anon_sym_DQUOTE] = 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(1062), - [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(673), - [ts_builtin_sym_end] = ACTIONS(5), - [aux_sym_drop_type_statement_token1] = ACTIONS(7), - [aux_sym_update_statement_token1] = ACTIONS(9), - [aux_sym_create_type_statement_token1] = ACTIONS(11), - [aux_sym_insert_statement_token1] = ACTIONS(13), - [aux_sym_insert_conflict_token3] = ACTIONS(15), - [aux_sym_delete_statement_token1] = ACTIONS(17), - [aux_sym_alter_table_statement_token1] = ACTIONS(19), - [aux_sym_grant_statement_token1] = ACTIONS(21), - [anon_sym_BSLASH] = ACTIONS(23), - [aux_sym_sequence_start_token2] = ACTIONS(25), - [aux_sym_select_statement_token1] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - }, - [2] = { - [anon_sym_SEMI] = ACTIONS(29), - [aux_sym_drop_type_statement_token1] = ACTIONS(29), - [aux_sym_drop_type_statement_token2] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(29), - [aux_sym_drop_type_statement_token3] = ACTIONS(29), - [aux_sym_drop_type_statement_token4] = ACTIONS(29), - [aux_sym_update_statement_token2] = ACTIONS(29), - [aux_sym_update_statement_token3] = ACTIONS(29), - [aux_sym_update_statement_token4] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(29), - [anon_sym_RPAREN] = ACTIONS(29), - [aux_sym_insert_statement_token2] = ACTIONS(29), - [aux_sym_insert_items_token1] = ACTIONS(29), - [aux_sym_insert_items_token2] = ACTIONS(29), - [aux_sym_insert_conflict_token1] = ACTIONS(29), - [aux_sym_insert_conflict_token3] = ACTIONS(29), - [aux_sym_conflict_target_token1] = ACTIONS(29), - [aux_sym_update_set_token1] = ACTIONS(29), - [aux_sym_returning_token1] = ACTIONS(29), - [aux_sym_schema_role_token1] = ACTIONS(29), - [aux_sym_create_index_statement_token1] = ACTIONS(29), - [aux_sym_index_using_token1] = ACTIONS(29), - [aux_sym_alter_table_statement_token1] = ACTIONS(29), - [aux_sym_alter_table_action_token1] = ACTIONS(29), - [aux_sym_alter_column_action_token1] = ACTIONS(29), - [aux_sym_alter_column_action_token2] = ACTIONS(29), - [aux_sym_constraint_when_token1] = ACTIONS(29), - [aux_sym_table_constraint_ty_token1] = ACTIONS(29), - [aux_sym_table_constraint_ty_token2] = ACTIONS(29), - [aux_sym_constraint_foreign_key_token1] = ACTIONS(29), - [aux_sym_fk_ref_action_token1] = ACTIONS(31), - [aux_sym_alter_table_rename_column_token1] = ACTIONS(29), - [aux_sym_alter_table_rename_column_token2] = ACTIONS(29), - [aux_sym_grant_roles_token2] = ACTIONS(29), - [aux_sym_sequence_increment_token1] = ACTIONS(29), - [aux_sym_sequence_min_token1] = ACTIONS(29), - [aux_sym_sequence_max_token1] = ACTIONS(29), - [aux_sym_sequence_start_token1] = ACTIONS(29), - [aux_sym_sequence_start_token2] = ACTIONS(29), - [aux_sym_sequence_cache_token1] = ACTIONS(29), - [aux_sym_sequence_cycle_token1] = ACTIONS(29), - [aux_sym_sequence_owned_token1] = ACTIONS(29), - [aux_sym_trigger_when_token1] = ACTIONS(29), - [aux_sym_trigger_when_token2] = ACTIONS(29), - [aux_sym_trigger_when_token3] = ACTIONS(29), - [aux_sym_trigger_scope_token1] = ACTIONS(29), - [aux_sym_trigger_scope_token3] = ACTIONS(29), - [aux_sym_trigger_exec_token1] = ACTIONS(29), - [aux_sym_trigger_cond_token1] = ACTIONS(29), - [aux_sym_for_statement_token2] = ACTIONS(29), - [aux_sym_select_statement_token1] = ACTIONS(29), - [aux_sym_select_having_token1] = ACTIONS(29), - [aux_sym_select_limit_token1] = ACTIONS(29), - [aux_sym_select_offset_token1] = ACTIONS(29), - [aux_sym_select_order_by_token1] = ACTIONS(29), - [aux_sym_join_item_token1] = ACTIONS(29), - [aux_sym_join_item_token2] = ACTIONS(29), - [aux_sym_join_item_token3] = ACTIONS(29), - [aux_sym_join_type_token1] = ACTIONS(29), - [aux_sym_join_type_token2] = ACTIONS(29), - [aux_sym_join_type_token4] = ACTIONS(29), - [aux_sym_join_type_token5] = ACTIONS(29), - [aux_sym_function_run_as_token1] = ACTIONS(29), - [aux_sym_function_volatility_token1] = ACTIONS(29), - [aux_sym_function_volatility_token2] = ACTIONS(29), - [aux_sym_function_volatility_token3] = ACTIONS(29), - [aux_sym_where_filter_token1] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(29), - [aux_sym__type_token1] = ACTIONS(29), - [aux_sym__type_token2] = ACTIONS(29), - [sym_comment] = ACTIONS(3), - }, - [3] = { - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COMMA] = ACTIONS(33), - [aux_sym_update_statement_token4] = ACTIONS(33), - [anon_sym_RPAREN] = ACTIONS(33), - [aux_sym_insert_items_token1] = ACTIONS(33), - [aux_sym_conflict_target_token1] = ACTIONS(33), - [anon_sym_EQ] = ACTIONS(33), - [aux_sym_returning_token1] = ACTIONS(33), - [aux_sym_create_index_statement_token1] = ACTIONS(33), - [aux_sym_alter_column_action_token1] = ACTIONS(35), - [aux_sym_alter_column_action_token2] = ACTIONS(33), - [aux_sym_constraint_when_token1] = ACTIONS(33), - [aux_sym_table_constraint_ty_token1] = ACTIONS(33), - [aux_sym_table_constraint_ty_token2] = ACTIONS(33), - [aux_sym_constraint_foreign_key_token1] = ACTIONS(33), - [aux_sym_grant_targets_token4] = ACTIONS(33), - [aux_sym_sequence_increment_token2] = ACTIONS(33), - [aux_sym_trigger_event_token2] = ACTIONS(33), - [anon_sym_DOT_DOT] = ACTIONS(33), - [aux_sym_for_statement_token2] = ACTIONS(33), - [aux_sym_if_statement_token2] = ACTIONS(33), - [aux_sym_create_function_statement_token1] = ACTIONS(33), - [aux_sym_function_run_as_token1] = ACTIONS(33), - [aux_sym_function_volatility_token1] = ACTIONS(33), - [aux_sym_function_volatility_token2] = ACTIONS(33), - [aux_sym_function_volatility_token3] = ACTIONS(33), - [aux_sym_where_filter_token1] = ACTIONS(33), - [anon_sym_RBRACK] = ACTIONS(33), - [sym_comment] = ACTIONS(3), - [aux_sym__interval_fields_token1] = ACTIONS(33), - [aux_sym__interval_fields_token2] = ACTIONS(33), - [aux_sym__interval_fields_token3] = ACTIONS(33), - [aux_sym__interval_fields_token4] = ACTIONS(33), - [aux_sym__interval_fields_token5] = ACTIONS(33), - [aux_sym__interval_fields_token6] = ACTIONS(33), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(33), - [anon_sym_DASH] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(33), - [anon_sym_GT_EQ] = ACTIONS(33), - [anon_sym_LT_GT] = ACTIONS(33), - [anon_sym_BANG_EQ] = ACTIONS(33), - [aux_sym_contains_op_token1] = ACTIONS(33), - [aux_sym_contains_op_token2] = ACTIONS(33), - [aux_sym_contains_op_token3] = ACTIONS(33), - [aux_sym_comparison_null_token1] = ACTIONS(33), - [aux_sym_comparison_null_token2] = ACTIONS(33), - [aux_sym_comparison_null_token3] = ACTIONS(33), - [aux_sym_comparison_null_token4] = ACTIONS(33), - [aux_sym_comparison_kw_token1] = ACTIONS(35), - [aux_sym_comparison_kw_token2] = ACTIONS(33), - [aux_sym_comparison_kw_token3] = ACTIONS(33), - [anon_sym_PIPE_PIPE] = ACTIONS(33), - [anon_sym_LT_AT] = ACTIONS(33), - [anon_sym_AT_GT] = ACTIONS(33), - [anon_sym_LT_LT] = ACTIONS(33), - [anon_sym_GT_GT] = ACTIONS(33), - [anon_sym_AMP_AMP] = ACTIONS(33), - [anon_sym_AMP_LT] = ACTIONS(33), - [anon_sym_AMP_GT] = ACTIONS(33), - [anon_sym_DASH_PIPE_DASH] = ACTIONS(33), - [sym_cast] = ACTIONS(33), - [sym_and] = ACTIONS(33), - }, - [4] = { - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_COMMA] = ACTIONS(37), - [aux_sym_update_statement_token4] = ACTIONS(37), - [anon_sym_RPAREN] = ACTIONS(37), - [aux_sym_insert_items_token1] = ACTIONS(37), - [aux_sym_conflict_target_token1] = ACTIONS(37), - [anon_sym_EQ] = ACTIONS(37), - [aux_sym_returning_token1] = ACTIONS(37), - [aux_sym_create_index_statement_token1] = ACTIONS(37), - [aux_sym_alter_column_action_token1] = ACTIONS(39), - [aux_sym_alter_column_action_token2] = ACTIONS(37), - [aux_sym_constraint_when_token1] = ACTIONS(37), - [aux_sym_table_constraint_ty_token1] = ACTIONS(37), - [aux_sym_table_constraint_ty_token2] = ACTIONS(37), - [aux_sym_constraint_foreign_key_token1] = ACTIONS(37), - [aux_sym_grant_targets_token4] = ACTIONS(37), - [aux_sym_sequence_increment_token2] = ACTIONS(37), - [aux_sym_trigger_event_token2] = ACTIONS(37), - [anon_sym_DOT_DOT] = ACTIONS(37), - [aux_sym_for_statement_token2] = ACTIONS(37), - [aux_sym_if_statement_token2] = ACTIONS(37), - [aux_sym_create_function_statement_token1] = ACTIONS(37), - [aux_sym_function_run_as_token1] = ACTIONS(37), - [aux_sym_function_volatility_token1] = ACTIONS(37), - [aux_sym_function_volatility_token2] = ACTIONS(37), - [aux_sym_function_volatility_token3] = ACTIONS(37), - [aux_sym_where_filter_token1] = ACTIONS(37), - [anon_sym_RBRACK] = ACTIONS(37), - [sym_comment] = ACTIONS(3), - [aux_sym__interval_fields_token1] = ACTIONS(37), - [aux_sym__interval_fields_token2] = ACTIONS(37), - [aux_sym__interval_fields_token3] = ACTIONS(37), - [aux_sym__interval_fields_token4] = ACTIONS(37), - [aux_sym__interval_fields_token5] = ACTIONS(37), - [aux_sym__interval_fields_token6] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(37), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(37), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(37), - [anon_sym_GT_EQ] = ACTIONS(37), - [anon_sym_LT_GT] = ACTIONS(37), - [anon_sym_BANG_EQ] = ACTIONS(37), - [aux_sym_contains_op_token1] = ACTIONS(37), - [aux_sym_contains_op_token2] = ACTIONS(37), - [aux_sym_contains_op_token3] = ACTIONS(37), - [aux_sym_comparison_null_token1] = ACTIONS(37), - [aux_sym_comparison_null_token2] = ACTIONS(37), - [aux_sym_comparison_null_token3] = ACTIONS(37), - [aux_sym_comparison_null_token4] = ACTIONS(37), - [aux_sym_comparison_kw_token1] = ACTIONS(39), - [aux_sym_comparison_kw_token2] = ACTIONS(37), - [aux_sym_comparison_kw_token3] = ACTIONS(37), - [anon_sym_PIPE_PIPE] = ACTIONS(37), - [anon_sym_LT_AT] = ACTIONS(37), - [anon_sym_AT_GT] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_AMP] = ACTIONS(37), - [anon_sym_AMP_LT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_DASH_PIPE_DASH] = ACTIONS(37), - [sym_cast] = ACTIONS(37), - [sym_and] = ACTIONS(37), + [sym_source_file] = STATE(46), + [sym_statement] = STATE(18), + [sym__ddl_statement] = STATE(44), + [sym__create_statement] = STATE(42), + [sym_create_table] = STATE(41), + [sym_comment] = STATE(1), + [sym_marginalia] = STATE(1), + [aux_sym_source_file_repeat1] = STATE(3), + [ts_builtin_sym_end] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [sym_keyword_create] = ACTIONS(11), + [anon_sym_DASH_DASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 9, + [0] = 10, 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, - anon_sym_LPAREN, - STATE(33), 1, - sym_type_length, - ACTIONS(59), 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(55), 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, - aux_sym_conflict_target_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, - [156] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 1, - aux_sym__interval_fields_token1, - ACTIONS(65), 1, - aux_sym__interval_fields_token3, - ACTIONS(67), 1, - aux_sym__interval_fields_token4, - ACTIONS(69), 1, - aux_sym__interval_fields_token5, - STATE(101), 1, - sym__interval_fields, - ACTIONS(63), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 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, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [238] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_precision, - ACTIONS(59), 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(55), 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, - aux_sym_conflict_target_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, - [312] = 21, - 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(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(73), 21, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [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, - 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_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(101), 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, - [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, - 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), 54, - 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, - 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, - [1250] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACK, - STATE(41), 1, - aux_sym__type_repeat1, - ACTIONS(131), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 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(125), 50, - 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_conflict_target_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_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - aux_sym_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - aux_sym_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - aux_sym_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - aux_sym_conflict_target_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, - [2093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 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(33), 54, - 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, - 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - sym_cast, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - 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), 48, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [2346] = 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(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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(133), 19, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - aux_sym_conflict_target_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, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_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, - [2542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 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(141), 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, - aux_sym_conflict_target_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, - [2610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 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(145), 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, - aux_sym_conflict_target_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, - [2678] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(149), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_precision, - ACTIONS(59), 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(55), 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, - [2750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(151), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_type_length, - ACTIONS(59), 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(55), 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, - [2822] = 3, - 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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [2958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACK, - STATE(39), 1, - aux_sym__type_repeat1, - 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), 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, - aux_sym_conflict_target_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, - [3029] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(168), 1, - anon_sym_LBRACK, - STATE(56), 1, - aux_sym__type_repeat1, - ACTIONS(170), 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), 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_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - 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, - aux_sym_conflict_target_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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 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(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_create_index_statement_token1, - aux_sym_index_using_token1, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - aux_sym_index_col_nulls_token1, - aux_sym_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_table_constraint_ty_token4, - 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_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, - [3305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 7, - aux_sym_alter_column_action_token1, - anon_sym_DOT, - 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, - aux_sym_update_statement_token4, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - 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, - [3371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 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(29), 51, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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_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, - [3437] = 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, - 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, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [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, - ACTIONS(3), 1, - sym_comment, - 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(29), 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, - [3707] = 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, - aux_sym_conflict_target_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, - [3773] = 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), 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, - [3839] = 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), 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, - anon_sym_LPAREN, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(190), 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, - 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, - aux_sym_conflict_target_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, - [4042] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(192), 1, - anon_sym_LBRACK, - STATE(55), 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), 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, - [4111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(168), 1, - anon_sym_LBRACK, - STATE(55), 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), 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, - [4180] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(195), 1, - aux_sym__interval_fields_token1, - ACTIONS(199), 1, - aux_sym__interval_fields_token3, - ACTIONS(201), 1, - aux_sym__interval_fields_token4, - ACTIONS(203), 1, - aux_sym__interval_fields_token5, - STATE(301), 1, - sym__interval_fields, - ACTIONS(197), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(43), 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(41), 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, - [4257] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - 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, - 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(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, - 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, - 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, - 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, - [4577] = 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, - [4641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 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(35), 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, - [4705] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(247), 1, - anon_sym_SLASH, - ACTIONS(249), 1, - sym_cast, - STATE(318), 1, - sym_comparison_null, - STATE(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 1, - sym_or, - 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), 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, - [4865] = 29, - 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(277), 1, - aux_sym_for_statement_token3, - ACTIONS(279), 1, - aux_sym_raise_statement_token1, - ACTIONS(281), 1, - aux_sym_if_statement_token1, - ACTIONS(285), 1, - aux_sym_if_statement_token5, - 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(1428), 1, - aux_sym_if_statement_repeat1, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - ACTIONS(283), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - STATE(97), 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, - [4981] = 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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, - 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, - aux_sym_conflict_target_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, - [7105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 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, - aux_sym_conflict_target_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, - [7171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(323), 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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [7303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 6, - 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_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__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, - [7366] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_SLASH, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(776), 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, - 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_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, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_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, - [7447] = 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(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(97), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - ACTIONS(375), 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, - [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(776), 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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 6, - 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_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__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, - [8289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 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(435), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [8352] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 49, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [8415] = 3, - 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, - aux_sym_conflict_target_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, - [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, - 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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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, - aux_sym_conflict_target_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, - [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(776), 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, - sym_precision, - 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, - [9156] = 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), 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, - [9219] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(776), 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_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, - 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(426), 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, - 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, - [9371] = 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(776), 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, - 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, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [9596] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(331), 1, - sym_cast, - STATE(386), 1, - sym_comparison_null, - STATE(776), 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, - 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_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_and, - [9673] = 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), 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, - [9736] = 27, - 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, - anon_sym_SLASH, - ACTIONS(479), 1, - anon_sym_DASH, - ACTIONS(481), 1, - anon_sym_PLUS, - ACTIONS(487), 1, - sym_cast, - ACTIONS(489), 1, - sym_and, - STATE(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 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(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, - 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_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(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, - [9847] = 9, - 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(413), 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, - 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, - 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, - [9922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 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(415), 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, - [9985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 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(411), 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, - [10048] = 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), 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, - [10111] = 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), 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, - [10174] = 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), 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, - [10237] = 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), 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, - [10300] = 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, - 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, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [10489] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [10552] = 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(776), 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, - 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, - 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, - [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(776), 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, - 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, - [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(776), 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_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_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, - [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(776), 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(776), 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(37), 48, - 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, - 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, - [11868] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 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, - sym_cast, - ACTIONS(489), 1, - sym_and, - STATE(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 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(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(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), 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_op, - ACTIONS(475), 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), 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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 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(35), 29, - 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__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, - [12114] = 19, - 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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, - 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, - 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, - 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, - [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(492), 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, - 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), 29, - 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__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, - [12720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(33), 48, - 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, - 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, - [12782] = 14, - 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(101), 38, - 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, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_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, - [12866] = 9, - 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(443), 1, - sym__interval_fields, - ACTIONS(561), 2, - aux_sym__interval_fields_token2, - aux_sym__interval_fields_token6, - ACTIONS(41), 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(43), 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, - [12940] = 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, - sym_cast, - STATE(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_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, - 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, - 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, - [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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(73), 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, - [13126] = 15, - 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_op, - ACTIONS(475), 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), 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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, - 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, - [13288] = 17, - 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 1, - sym_comparison_op, - 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), 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, - [13538] = 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(397), 1, - sym_comparison_null, - STATE(786), 1, - sym_or, - STATE(795), 1, - sym_comparison_kw, - STATE(810), 1, - sym_other_op, - STATE(863), 1, - sym_contains_op, - STATE(873), 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(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(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), 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, - [13638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(517), 1, - sym_cast, - STATE(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(441), 1, - sym_comparison_null, - STATE(742), 1, - sym_or, - STATE(747), 1, - sym_comparison_op, - STATE(748), 1, - sym_contains_op, - STATE(751), 1, - sym_comparison_kw, - STATE(758), 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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, - 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, - 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, - [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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 1, - sym_comparison_op, - STATE(815), 1, - sym_contains_op, - STATE(816), 1, - sym_comparison_kw, - STATE(825), 1, - sym_other_op, - STATE(1101), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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, - 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), 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, - [14597] = 3, - 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, - 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, - [14658] = 22, - 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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, - 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, - 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, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(593), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [14858] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(539), 1, - sym_cast, - STATE(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 1, - sym_contains_op, - STATE(749), 1, - sym_comparison_op, - STATE(750), 1, - sym_or, - ACTIONS(73), 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(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, - [14933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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, - 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), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(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, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_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, - [16153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 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(33), 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, - 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, - [16214] = 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, - STATE(318), 1, - sym_comparison_null, - STATE(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 1, - sym_or, - STATE(1194), 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, - 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 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(141), 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, - [16380] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 1, - anon_sym_LPAREN, - STATE(289), 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), 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, - [16445] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(529), 1, - anon_sym_SLASH, - ACTIONS(539), 1, - sym_cast, - STATE(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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), 20, - anon_sym_COMMA, - 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), 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_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_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, - [16524] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(101), 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, - STATE(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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(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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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(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), 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), 18, - 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, - 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, - 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, - 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__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, - [16771] = 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), 30, - 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__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, - [16832] = 15, - 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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, - 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, - [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, - 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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(478), 1, - sym_comparison_null, - STATE(744), 1, - sym_other_op, - STATE(745), 1, - sym_comparison_kw, - STATE(746), 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(2001), 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_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, - [17574] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - anon_sym_LPAREN, - STATE(339), 1, - sym_type_length, - ACTIONS(55), 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(59), 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, - [17638] = 3, - 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, - 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), 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, - [17698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(629), 1, - anon_sym_LBRACK, - STATE(232), 1, - aux_sym__type_repeat1, - ACTIONS(163), 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(161), 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, - [17762] = 3, - 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, - 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), 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, - 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, - 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, - sym_precision, - ACTIONS(59), 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(55), 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, - [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, - 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, - [18192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - STATE(346), 1, - sym_type_length, - ACTIONS(59), 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(55), 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, - [18256] = 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(642), 1, - aux_sym_for_statement_token3, - STATE(1453), 1, - sym_with_query, - STATE(1975), 1, - sym_identifier, - STATE(245), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2001), 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, - [18362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(644), 1, - anon_sym_LPAREN, - STATE(339), 1, - sym_precision, - ACTIONS(55), 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(59), 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, - [18426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(569), 1, - anon_sym_LBRACK, - STATE(268), 1, - aux_sym__type_repeat1, - 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, - [18490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_comparison_kw_token1, - ACTIONS(29), 46, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_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, - [18550] = 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(258), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2001), 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(2001), 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, - anon_sym_LBRACK, - STATE(232), 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(2001), 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(2001), 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(2001), 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(2001), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(2001), 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(2001), 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(2001), 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(2001), 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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(2001), 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(2001), 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(2001), 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(2001), 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(2001), 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(2001), 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(2001), 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, - 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(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, - [20866] = 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, - [20925] = 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(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, - 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), 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, - [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, - anon_sym_STAR, - 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, - [21629] = 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, - [21688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(163), 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(161), 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, - [21747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(697), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_DOT, - ACTIONS(701), 1, - aux_sym_time_expression_token1, - ACTIONS(180), 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(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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 6, - aux_sym_grant_targets_token4, - anon_sym_SLASH, - 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_LPAREN, - 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_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, - [22599] = 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(253), 2, - sym__plpgsql_statement, - aux_sym_for_statement_repeat1, - STATE(2001), 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(2001), 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, - anon_sym_LBRACK, - STATE(278), 1, - aux_sym__type_repeat1, - ACTIONS(174), 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(172), 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, - [22868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 25, - 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, - anon_sym_LT_GT, - 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_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, - [22926] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - 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, - [22984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 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(407), 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, - [23042] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - [23100] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - ACTIONS(471), 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, - [23158] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - ACTIONS(455), 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, - [23216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 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(445), 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, - [23274] = 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), 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, - [23332] = 3, - ACTIONS(3), 1, - sym_comment, - 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(29), 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, - [23390] = 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, - 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(427), 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, - [23506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 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(35), 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, - [23564] = 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, - 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, - 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, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 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(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, - 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, - [24266] = 4, - 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, - 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, - [24326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 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(439), 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, - [24384] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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_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, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25014] = 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(459), 1, - sym_comparison_null, - STATE(806), 1, - sym_or, - STATE(808), 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, - 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, - [25402] = 6, - 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, - 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), 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, - [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, - 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(155), 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, - [25640] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(656), 1, - anon_sym_LBRACK, - STATE(354), 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), 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, - [25702] = 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), 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, - [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, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [25934] = 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(874), 1, - sym_select_item, - STATE(885), 1, - sym_into, - STATE(930), 1, - sym_select_from, - STATE(971), 1, - sym_select_where, - STATE(1022), 1, - sym_select_group_by, - STATE(1082), 1, - sym_select_having, - STATE(1150), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 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(876), 1, - sym_select_item, - STATE(895), 1, - sym_into, - STATE(924), 1, - sym_select_from, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 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, - 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_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, - [28222] = 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), 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, - [28279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 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(172), 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, - [28336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 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, - [28395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(816), 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, - [28454] = 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), 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, - anon_sym_STAR, - 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, - 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, - 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] = 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(818), 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, - [28663] = 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, - [28719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 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, - [28777] = 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, - [28833] = 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, - [28889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(822), 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, - [28947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(824), 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, - [29005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 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, - [29063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(828), 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, - [29121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 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(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, - [29177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(830), 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, - [29235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 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(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, - [29291] = 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_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(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, - [29347] = 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, - [29403] = 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, - [29459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 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(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, - [29515] = 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, - [29571] = 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, - [29627] = 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(832), 1, - aux_sym_update_statement_token4, - ACTIONS(834), 1, - anon_sym_LPAREN, - ACTIONS(836), 1, - aux_sym_insert_statement_token2, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(888), 1, - sym_select_item, - STATE(923), 1, - sym_into, - STATE(963), 1, - sym_select_from, - STATE(1007), 1, - sym_select_where, - STATE(1061), 1, - sym_select_group_by, - STATE(1144), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1210), 1, - sym_select_order_by, - STATE(1268), 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(765), 2, - sym_minus, - sym_plus, - ACTIONS(850), 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, - [29751] = 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, - [29807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 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(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, - [29863] = 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, - [29919] = 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, - [29975] = 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, - [30031] = 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, - [30087] = 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, - [30143] = 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, - 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, - 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, - [30199] = 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, - [30255] = 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, - [30311] = 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, - [30367] = 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, - [30423] = 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(634), 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, - [30491] = 3, - 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), 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, - [30547] = 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, - [30603] = 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, - [30661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 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, - [30719] = 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, - [30775] = 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, - [30831] = 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, - [30887] = 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, - [30943] = 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, - [30999] = 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, - [31055] = 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, - [31111] = 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, - [31167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 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(33), 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, - [31223] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 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(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, - [31327] = 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(832), 1, - aux_sym_update_statement_token4, - ACTIONS(834), 1, - anon_sym_LPAREN, - ACTIONS(836), 1, - aux_sym_insert_statement_token2, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(890), 1, - sym_select_item, - STATE(921), 1, - sym_into, - STATE(964), 1, - sym_select_from, - STATE(1026), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1124), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 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, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(850), 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, - [31451] = 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), 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, - [31507] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [31563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 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(411), 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, - [31618] = 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, - [31673] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, - sym_cast, - STATE(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - [31742] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 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(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(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(77), 5, - 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, - [31835] = 27, - 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(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(890), 1, - aux_sym_index_using_token1, - STATE(318), 1, - sym_comparison_null, - STATE(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(886), 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, - [31938] = 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, - 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, - [31993] = 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, - [32048] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 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(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, - 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, - [32141] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - [32222] = 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, - [32277] = 15, - 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - [32356] = 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, - [32411] = 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, - 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, - [32466] = 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, - [32521] = 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, - [32576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 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(433), 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, - [32631] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_SLASH, - ACTIONS(882), 1, - sym_cast, - STATE(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - [32704] = 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, - 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, - [32759] = 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(892), 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, - [32854] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 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(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, - [32951] = 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, - [33006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(423), 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(425), 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, - [33061] = 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, - [33116] = 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, - [33171] = 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, - [33226] = 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, - [33281] = 37, - 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, - anon_sym_DASH, - ACTIONS(786), 1, - anon_sym_PLUS, - ACTIONS(836), 1, - aux_sym_insert_statement_token2, - ACTIONS(894), 1, - aux_sym_update_statement_token4, - ACTIONS(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(899), 1, - sym_select_item, - STATE(944), 1, - sym_into, - STATE(965), 1, - sym_select_from, - STATE(1030), 1, - sym_select_where, - STATE(1109), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1184), 1, - sym_select_having, - STATE(1226), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1613), 1, - sym__select_limit_offset, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(910), 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, - [33404] = 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, - [33459] = 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, - [33514] = 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, - [33569] = 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, - [33624] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(882), 1, - sym_cast, - STATE(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - [33693] = 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, - [33748] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - [33803] = 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, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_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), 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, - [33858] = 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, - [33913] = 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, - [33968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(417), 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(415), 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, - [34023] = 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, - [34078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(439), 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(441), 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, - [34133] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(914), 1, - aux_sym__interval_fields_token1, - ACTIONS(918), 1, - aux_sym__interval_fields_token3, - ACTIONS(920), 1, - aux_sym__interval_fields_token4, - ACTIONS(922), 1, - aux_sym__interval_fields_token5, - STATE(647), 1, - sym__interval_fields, - ACTIONS(916), 2, - aux_sym__interval_fields_token2, - 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, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_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, - [34200] = 18, - 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_op, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - 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(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), 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, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [34285] = 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(924), 1, - aux_sym_update_statement_token2, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - ACTIONS(940), 1, - sym_and, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 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(926), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(934), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(936), 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, - [34386] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(892), 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, - [34479] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [34534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 22, - aux_sym_update_statement_token2, - aux_sym_insert_statement_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, - 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, - [34589] = 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, - [34644] = 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, - [34699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 22, - aux_sym_update_statement_token2, - aux_sym_insert_statement_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, - 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(33), 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, - [34754] = 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(794), 1, - aux_sym_for_statement_token2, - ACTIONS(836), 1, - aux_sym_insert_statement_token2, - ACTIONS(894), 1, - aux_sym_update_statement_token4, - ACTIONS(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(913), 1, - sym_select_item, - STATE(946), 1, - sym_into, - STATE(970), 1, - sym_select_from, - STATE(1051), 1, - sym_select_where, - STATE(1106), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1609), 1, - sym__select_limit_offset, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(910), 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, - [34877] = 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), 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, - [34932] = 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(616), 1, - sym_comparison_null, - STATE(733), 1, - sym_other_op, - STATE(780), 1, - sym_comparison_op, - STATE(798), 1, - sym_or, - STATE(804), 1, - sym_comparison_kw, - STATE(870), 1, - sym_contains_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, - 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, - [35009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 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(39), 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, - [35064] = 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, - [35119] = 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, - [35174] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - ACTIONS(926), 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, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - [35250] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - ACTIONS(926), 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, - [35328] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - ACTIONS(926), 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, - [35400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 21, - aux_sym_update_statement_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, - 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(33), 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, - [35454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(942), 1, - anon_sym_LPAREN, - STATE(537), 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, - [35512] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - ACTIONS(926), 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), 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_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - [35592] = 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(944), 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, - anon_sym_STAR, - 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, - [35648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - ACTIONS(89), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(926), 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, - [35732] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(946), 1, - anon_sym_LPAREN, - STATE(537), 1, - sym_type_length, - 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, - [35790] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 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(926), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(934), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(936), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(73), 3, - 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, - 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, - [35882] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 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(926), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(934), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(936), 2, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token4, - ACTIONS(101), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(103), 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, - 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, - [35974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 21, - aux_sym_update_statement_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, - 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, - [36028] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 1, - sym_comparison_kw, - 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), 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, - [36096] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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_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, - [36188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(413), 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(948), 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(411), 29, - 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_contains_op_token1, - aux_sym_contains_op_token2, - aux_sym_contains_op_token3, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token2, - aux_sym_comparison_null_token3, - aux_sym_comparison_null_token4, - aux_sym_comparison_kw_token2, - aux_sym_comparison_kw_token3, - anon_sym_PIPE_PIPE, - anon_sym_LT_AT, - anon_sym_AT_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_AMP, - anon_sym_AMP_LT, - anon_sym_AMP_GT, - anon_sym_DASH_PIPE_DASH, - sym_cast, - sym_and, - [36244] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - aux_sym_comparison_kw_token1, - ACTIONS(121), 1, - aux_sym_trigger_event_token2, - ACTIONS(928), 1, - anon_sym_SLASH, - ACTIONS(930), 1, - anon_sym_DASH, - ACTIONS(932), 1, - anon_sym_PLUS, - ACTIONS(938), 1, - sym_cast, - ACTIONS(940), 1, - sym_and, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 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(135), 2, - aux_sym_update_statement_token2, - sym__identifier, - ACTIONS(926), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(934), 2, - aux_sym_comparison_null_token1, - aux_sym_comparison_null_token3, - ACTIONS(936), 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, - [36340] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(938), 1, - sym_cast, - STATE(650), 1, - sym_comparison_null, - STATE(735), 1, - sym_or, - STATE(762), 1, - sym_comparison_op, - STATE(768), 1, - sym_contains_op, - STATE(867), 1, - sym_other_op, - STATE(869), 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, - [36408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, - anon_sym_LPAREN, - STATE(574), 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, - 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, - [36465] = 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(814), 1, - sym_other_op, - STATE(839), 1, - sym_comparison_kw, - STATE(841), 1, - sym_contains_op, - STATE(844), 1, - sym_comparison_op, - STATE(849), 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(654), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - 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, - [36558] = 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(954), 1, - anon_sym_COMMA, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1570), 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(952), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - 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, - [36653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(956), 1, - anon_sym_LBRACK, - STATE(571), 1, - aux_sym__type_repeat1, - ACTIONS(958), 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, - [36712] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_LPAREN, - STATE(574), 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, - [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(954), 1, - anon_sym_COMMA, - ACTIONS(962), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1643), 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] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(964), 1, - anon_sym_LPAREN, - ACTIONS(966), 1, - anon_sym_DOT, - ACTIONS(968), 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, - [36921] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(970), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37015] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(972), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37109] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(974), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37203] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(976), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37297] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(978), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1653), 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, - [37391] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(980), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37485] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(982), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37579] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(984), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1671), 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, - [37673] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(986), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [37767] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(988), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1622), 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, - [37861] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(990), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1648), 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, - [37955] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(992), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1620), 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, - [38049] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(994), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [38143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 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(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, - [38195] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(996), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [38289] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(998), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [38383] = 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, - [38435] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1000), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1618), 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, - [38529] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1002), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1646), 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, - [38623] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1004), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1689), 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, - [38717] = 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, - [38769] = 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, - [38821] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1006), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [38915] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1008), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [39009] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1010), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1656), 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, - [39103] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1012), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [39197] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1014), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1676), 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, - [39291] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1016), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1681), 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, - [39385] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1018), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1713), 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, - [39479] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1020), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [39573] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1700), 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, - [39667] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1024), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1635), 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, - [39761] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1026), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [39855] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1028), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1692), 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, - [39949] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1030), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1624), 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, - [40043] = 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, - [40095] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1032), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [40189] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1034), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1659), 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, - [40283] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(654), 3, - 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, - [40373] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1036), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1664), 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, - [40467] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1038), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1666), 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, - [40561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 1, - anon_sym_LBRACK, - STATE(596), 1, - aux_sym__type_repeat1, - ACTIONS(1042), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(127), 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(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, - [40619] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1044), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1661), 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, - [40713] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1046), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1633), 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, - [40807] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1048), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1702), 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, - [40901] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1050), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1685), 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, - [40995] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1052), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_op, - STATE(1631), 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, - [41089] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1054), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [41183] = 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(954), 1, - anon_sym_COMMA, - ACTIONS(1056), 1, - anon_sym_RBRACK, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [41277] = 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, - 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, - [41329] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(956), 1, - anon_sym_LBRACK, - STATE(581), 1, - aux_sym__type_repeat1, - 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, - [41384] = 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(1058), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1060), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [41475] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(1062), 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, - [41564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 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(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, - [41615] = 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(1064), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1066), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [41706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1068), 1, - anon_sym_LPAREN, - ACTIONS(1070), 1, - anon_sym_DOT, - ACTIONS(1072), 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, - [41763] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(1074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [41852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(155), 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(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, - [41903] = 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(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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(1076), 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, - [41992] = 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, - anon_sym_GT, - aux_sym_contains_op_token1, - aux_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, - [42043] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1078), 1, - anon_sym_LBRACK, - STATE(581), 1, - aux_sym__type_repeat1, - ACTIONS(163), 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(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, - [42098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(159), 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(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, - [42149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 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(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, - [42200] = 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(1081), 1, - aux_sym_sequence_increment_token2, - ACTIONS(1083), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [42291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 16, - aux_sym_update_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, - [42342] = 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(1083), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - sym_cast, - ACTIONS(137), 1, - aux_sym_trigger_event_token2, - ACTIONS(139), 1, - sym_and, - ACTIONS(1085), 1, - aux_sym_if_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1087), 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, - [42570] = 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, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [42658] = 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(1091), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [42746] = 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(1093), 1, - anon_sym_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [42834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 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, - [42886] = 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(1097), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [42974] = 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(1099), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43062] = 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(1101), 1, - anon_sym_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1040), 1, - anon_sym_LBRACK, - STATE(606), 1, - aux_sym__type_repeat1, - ACTIONS(174), 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(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, - [43204] = 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(1103), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43292] = 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, - aux_sym_if_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43380] = 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_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43468] = 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_DOT_DOT, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43556] = 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(1111), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43644] = 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(1113), 1, - aux_sym_for_statement_token2, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43732] = 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(1115), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [43820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1117), 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, - [43872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1119), 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, - [43924] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1121), 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, - [43978] = 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(1124), 1, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [44066] = 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(1126), 1, - anon_sym_SEMI, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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, - [44154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(163), 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(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, - [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, - anon_sym_RPAREN, - STATE(110), 1, - sym_comparison_null, - STATE(783), 1, - sym_other_op, - STATE(835), 1, - sym_comparison_kw, - STATE(848), 1, - sym_or, - STATE(851), 1, - sym_comparison_op, - STATE(860), 1, - sym_contains_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] = 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, - [44341] = 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, - [44392] = 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, - [44441] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [44490] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(437), 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(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, - [44539] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [44588] = 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, - [44637] = 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, - [44686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 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(33), 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, - [44735] = 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, - [44784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(433), 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(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, - [44833] = 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, - [44884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 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(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, - [44933] = 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, - [44982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 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(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, - [45031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(421), 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(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, - [45080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 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(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, - [45129] = 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, - [45178] = 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, - [45227] = 4, - 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, - [45278] = 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, - [45329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 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(443), 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, - [45378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 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(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, - [45427] = 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, - [45476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 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(33), 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, - [45524] = 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, - [45572] = 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, - [45620] = 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, - [45668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(174), 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(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, - [45716] = 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, - [45764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 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(443), 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(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, - [45860] = 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, - [45908] = 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, - [45956] = 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, - [46004] = 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, - [46052] = 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, - [46100] = 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, - [46148] = 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, - [46196] = 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, - [46244] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 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, - [46292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(441), 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(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, - [46340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 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(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, - [46388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1138), 36, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_for_statement_token2, - aux_sym_select_statement_token1, - 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, - [46430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1140), 36, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_for_statement_token2, - aux_sym_select_statement_token1, - 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, - [46472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1142), 36, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_update_statement_token2, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_returning_token1, - aux_sym_create_index_statement_token1, - aux_sym_index_using_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_for_statement_token2, - aux_sym_select_statement_token1, - 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, - [46514] = 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, - 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(770), 1, - sym_not, - STATE(2251), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - STATE(2007), 2, - sym_execute_statement, - sym_select_statement, - ACTIONS(1162), 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, - [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, - anon_sym_LPAREN, - ACTIONS(1146), 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, - aux_sym_for_statement_token1, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2251), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - STATE(2211), 2, - sym_execute_statement, - sym_select_statement, - ACTIONS(1168), 3, - sym_true, - sym_false, - sym_number, - STATE(591), 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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2213), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1172), 3, - sym_true, - sym_false, - sym_number, - 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, - [46756] = 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(1174), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2231), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1176), 3, - sym_true, - sym_false, - sym_number, - STATE(538), 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, - [46834] = 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(1178), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2253), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1180), 3, - sym_true, - sym_false, - sym_number, - STATE(553), 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(770), 1, - sym_not, - STATE(2038), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1184), 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, - [46990] = 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(1186), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2247), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1188), 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, - [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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2166), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1192), 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, - [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(770), 1, - sym_not, - STATE(2018), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1196), 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, - [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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2118), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1200), 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, - [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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2214), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1204), 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, - [47380] = 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(1206), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2241), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1208), 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, - [47458] = 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(1210), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2190), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1212), 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, - [47536] = 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(1214), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2067), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1216), 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, - [47614] = 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(1218), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2259), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1220), 3, - sym_true, - sym_false, - sym_number, - STATE(557), 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, - [47692] = 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(1222), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2263), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1224), 3, - sym_true, - sym_false, - sym_number, - STATE(568), 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, - [47770] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(9), 1, - aux_sym_update_statement_token1, - ACTIONS(11), 1, - aux_sym_create_type_statement_token1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(13), 1, - aux_sym_insert_statement_token1, + ts_builtin_sym_end, ACTIONS(15), 1, - aux_sym_insert_conflict_token3, - ACTIONS(17), 1, - aux_sym_delete_statement_token1, - ACTIONS(19), 1, - aux_sym_alter_table_statement_token1, + anon_sym_SEMI, + ACTIONS(18), 1, + sym_keyword_create, + STATE(18), 1, + sym_statement, + STATE(41), 1, + sym_create_table, + STATE(42), 1, + sym__create_statement, + STATE(44), 1, + sym__ddl_statement, + STATE(2), 3, + sym_comment, + sym_marginalia, + aux_sym_source_file_repeat1, + [33] = 11, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(9), 1, + anon_sym_SEMI, + ACTIONS(11), 1, + sym_keyword_create, ACTIONS(21), 1, - aux_sym_grant_statement_token1, + ts_builtin_sym_end, + STATE(2), 1, + aux_sym_source_file_repeat1, + STATE(18), 1, + sym_statement, + STATE(41), 1, + sym_create_table, + STATE(42), 1, + sym__create_statement, + STATE(44), 1, + sym__ddl_statement, + STATE(3), 2, + sym_comment, + sym_marginalia, + [68] = 9, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(23), 1, - anon_sym_BSLASH, + sym__identifier, ACTIONS(25), 1, - aux_sym_sequence_start_token2, + sym_keyword_if, ACTIONS(27), 1, - aux_sym_select_statement_token1, - ACTIONS(1226), 1, - ts_builtin_sym_end, - STATE(676), 1, - aux_sym_source_file_repeat1, - STATE(1062), 1, - sym_psql_statement, - STATE(1453), 1, - sym_with_query, - STATE(2379), 17, - 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_create_sequence_statement, - sym_create_trigger_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [47838] = 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(1228), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2142), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1230), 3, - sym_true, - sym_false, - sym_number, - STATE(519), 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, - [47916] = 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(1232), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2093), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1234), 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, - [47994] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 1, - ts_builtin_sym_end, - ACTIONS(1238), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(1241), 1, - aux_sym_update_statement_token1, - ACTIONS(1244), 1, - aux_sym_create_type_statement_token1, - ACTIONS(1247), 1, - aux_sym_insert_statement_token1, - ACTIONS(1250), 1, - aux_sym_insert_conflict_token3, - ACTIONS(1253), 1, - aux_sym_delete_statement_token1, - ACTIONS(1256), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(1259), 1, - aux_sym_grant_statement_token1, - ACTIONS(1262), 1, - anon_sym_BSLASH, - ACTIONS(1265), 1, - aux_sym_sequence_start_token2, - ACTIONS(1268), 1, - aux_sym_select_statement_token1, - STATE(676), 1, - aux_sym_source_file_repeat1, - STATE(1062), 1, - sym_psql_statement, - STATE(1453), 1, - sym_with_query, - STATE(2379), 17, - 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_create_sequence_statement, - sym_create_trigger_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [48062] = 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(1271), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(2104), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1273), 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, - [48140] = 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(770), 1, - sym_not, - STATE(2110), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1275), 3, - sym_true, - sym_false, - sym_number, - STATE(558), 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, - 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(770), 1, - sym_not, - STATE(2060), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 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(770), 1, - sym_not, - STATE(2013), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2119), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1281), 3, - sym_true, - sym_false, - sym_number, - STATE(533), 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(770), 1, - sym_not, - STATE(2032), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1283), 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, - [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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2206), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1285), 3, - sym_true, - sym_false, - sym_number, - STATE(555), 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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2182), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1287), 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, - [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(770), 1, - sym_not, - STATE(2058), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1289), 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, - [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(770), 1, - sym_not, - STATE(2013), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1291), 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, - [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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2158), 1, - sym_select_statement, - STATE(775), 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(770), 1, - sym_not, - STATE(2085), 1, - sym_select_statement, - STATE(2117), 1, - sym_with_query, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1295), 3, - sym_true, - sym_false, - sym_number, - STATE(561), 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(770), 1, - sym_not, - STATE(2117), 1, - sym_with_query, - STATE(2134), 1, - sym_select_statement, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1297), 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, - [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, - anon_sym_RPAREN, - ACTIONS(1301), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(1757), 1, - sym_insert_item, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1303), 3, - sym_true, - sym_false, - sym_number, - STATE(577), 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, - [49112] = 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(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(1294), 1, - sym_update_value, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1321), 3, - sym_true, - sym_false, - sym_number, - STATE(460), 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(770), 1, - sym_not, - STATE(1807), 1, - sym_update_value, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(485), 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(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(770), 1, - sym_not, - STATE(1294), 1, - sym_update_value, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(485), 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(1301), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(1893), 1, - sym_insert_item, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1303), 3, - sym_true, - sym_false, - sym_number, - STATE(577), 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(1307), 1, - aux_sym_insert_items_token1, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(1746), 1, - sym_update_value, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(485), 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(770), 1, - sym_not, - STATE(1668), 1, - sym_update_value, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1325), 3, - sym_true, - sym_false, - sym_number, - STATE(485), 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(1327), 1, - anon_sym_SEMI, - 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(576), 1, - sym_identifier, - STATE(763), 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(484), 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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1347), 3, - sym_true, - sym_false, - sym_number, - STATE(543), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1449), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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(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(1165), 1, - sym_order_by_item, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1367), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1331), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1349), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(1204), 1, - sym_order_by_item, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1367), 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, - [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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1371), 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, - [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(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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(1031), 1, - sym_select_item, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1343), 3, - sym_true, - sym_false, - sym_number, - STATE(484), 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(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(1373), 1, - aux_sym_grant_privileges_token1, - STATE(196), 1, - sym_identifier, - STATE(866), 1, - sym_not, - STATE(865), 2, - sym_minus, - sym_plus, - ACTIONS(1375), 3, - sym_true, - sym_false, - sym_number, - STATE(393), 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(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(1377), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1379), 3, - sym_true, - sym_false, - sym_number, - STATE(522), 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(1031), 1, - sym_select_item, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(910), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1326), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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(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(1381), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1383), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1314), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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(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(1385), 1, - aux_sym_return_statement_token2, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1387), 3, - sym_true, - sym_false, - sym_number, - STATE(601), 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(1389), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1391), 3, - sym_true, - sym_false, - sym_number, - STATE(545), 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(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(576), 1, - sym_identifier, - STATE(763), 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(484), 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(1393), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1395), 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, - [50783] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1399), 3, - sym_true, - sym_false, - sym_number, - 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, - [50849] = 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(1031), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1031), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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(1401), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1403), 3, - sym_true, - sym_false, - sym_number, - STATE(551), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1384), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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, - [51113] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1407), 3, - sym_true, - sym_false, - sym_number, - STATE(552), 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(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_SEMI, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1411), 3, - sym_true, - sym_false, - sym_number, - STATE(549), 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(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, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1415), 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, - [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_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(1417), 1, - anon_sym_RPAREN, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1419), 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, - [51377] = 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(1421), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1423), 3, - sym_true, - sym_false, - sym_number, - STATE(527), 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, - [51443] = 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(1031), 1, - sym_select_item, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(850), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(1379), 1, - sym_select_item, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1363), 3, - sym_true, - sym_false, - sym_number, - STATE(438), 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, - [51575] = 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(1425), 1, - anon_sym_RBRACK, - STATE(47), 1, - sym_identifier, - STATE(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1427), 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, - [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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1429), 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, - [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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1449), 3, - sym_true, - sym_false, - sym_number, - STATE(607), 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, - [51830] = 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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1451), 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, - [51893] = 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1453), 3, - sym_true, - sym_false, - sym_number, - STATE(493), 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, - [51956] = 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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1469), 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, - [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(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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1473), 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, - [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(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(1475), 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, - [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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1477), 3, - sym_true, - sym_false, - sym_number, - STATE(598), 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1479), 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, - [52271] = 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1481), 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1483), 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1485), 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1487), 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, - [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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1489), 3, - sym_true, - sym_false, - sym_number, - STATE(590), 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, - [52586] = 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1491), 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, - [52649] = 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1493), 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, - [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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1495), 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1497), 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1499), 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, - [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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1505), 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, - [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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1509), 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, - [53216] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1511), 3, - sym_true, - sym_false, - sym_number, - STATE(193), 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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1513), 3, - sym_true, - sym_false, - sym_number, - STATE(559), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1515), 3, - sym_true, - sym_false, - sym_number, - STATE(587), 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, - [53405] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1517), 3, - sym_true, - sym_false, - sym_number, - 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, - [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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1519), 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, - [53531] = 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1523), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1525), 3, - sym_true, - sym_false, - sym_number, - STATE(445), 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(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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1527), 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, - [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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1529), 3, - sym_true, - sym_false, - sym_number, - 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, - [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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1531), 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, - [53909] = 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1533), 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, - [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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1549), 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, - [54035] = 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(1553), 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, - [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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1555), 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, - [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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1557), 3, - sym_true, - sym_false, - sym_number, - 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, - [54224] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1559), 3, - sym_true, - sym_false, - sym_number, - 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, - [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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1561), 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, - [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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1563), 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, - [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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1565), 3, - sym_true, - sym_false, - sym_number, - STATE(584), 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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1567), 3, - sym_true, - sym_false, - sym_number, - STATE(610), 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, - [54539] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1569), 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, - [54602] = 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(1571), 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, - [54665] = 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(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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1591), 3, - sym_true, - sym_false, - sym_number, - STATE(599), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1593), 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, - [54854] = 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1595), 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, - [54917] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1597), 3, - sym_true, - sym_false, - sym_number, - STATE(572), 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, - [54980] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1599), 3, - sym_true, - sym_false, - sym_number, - STATE(597), 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, - [55043] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1601), 3, - sym_true, - sym_false, - sym_number, - STATE(24), 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, - [55106] = 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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1607), 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, - [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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(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, - [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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1168), 3, - sym_true, - sym_false, - sym_number, - STATE(591), 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, - [55547] = 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1619), 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, - [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(896), 1, - anon_sym_LPAREN, - ACTIONS(898), 1, - aux_sym_alter_column_action_token2, - ACTIONS(900), 1, - anon_sym_DOLLAR, - ACTIONS(902), 1, - anon_sym_SQUOTE, - ACTIONS(904), 1, - aux_sym_array_constructor_token1, - ACTIONS(906), 1, - aux_sym_time_expression_token4, - ACTIONS(908), 1, - anon_sym_STAR, - ACTIONS(912), 1, - sym__identifier, - STATE(333), 1, - sym_identifier, - STATE(759), 1, - sym_not, - STATE(760), 2, - sym_minus, - sym_plus, - ACTIONS(1621), 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, - [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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1627), 3, - sym_true, - sym_false, - sym_number, - STATE(513), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1629), 3, - sym_true, - sym_false, - sym_number, - STATE(449), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1641), 3, - sym_true, - sym_false, - sym_number, - STATE(483), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1647), 3, - sym_true, - sym_false, - sym_number, - STATE(461), 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, - [56618] = 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1649), 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, - [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(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(1651), 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, - [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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1655), 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, - [56870] = 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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1657), 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, - [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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1659), 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, - [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(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(1661), 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, - [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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1675), 3, - sym_true, - sym_false, - sym_number, - STATE(593), 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, - [57500] = 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(1677), 3, - sym_true, - sym_false, - sym_number, - STATE(29), 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, - [57563] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1679), 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, - [57626] = 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(1681), 3, - sym_true, - sym_false, - sym_number, - STATE(26), 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, - [57689] = 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1683), 3, - sym_true, - sym_false, - sym_number, - STATE(210), 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, - [57752] = 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(1685), 3, - sym_true, - sym_false, - sym_number, - STATE(83), 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, - [57815] = 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 1, - sym__identifier, - STATE(341), 1, - sym_identifier, - STATE(788), 1, - sym_not, - STATE(787), 2, - sym_minus, - sym_plus, - ACTIONS(1687), 3, - sym_true, - sym_false, - sym_number, - STATE(338), 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, - [57878] = 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(1689), 3, - sym_true, - sym_false, - sym_number, - STATE(142), 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, - [57941] = 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(1691), 3, - sym_true, - sym_false, - sym_number, - 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, - [58004] = 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(1693), 3, - sym_true, - sym_false, - sym_number, - STATE(148), 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, - [58067] = 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(1695), 3, - sym_true, - sym_false, - sym_number, - 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, - [58130] = 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(1697), 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, - 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, - sym_array_constructor, - sym_dollar_quote_string, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_null, - sym_star, - [58319] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1703), 3, - sym_true, - sym_false, - sym_number, - STATE(23), 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(1455), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - ACTIONS(1463), 1, - aux_sym_array_constructor_token1, - ACTIONS(1465), 1, - aux_sym_time_expression_token4, - ACTIONS(1467), 1, - anon_sym_STAR, - ACTIONS(1471), 1, - sym__identifier, - STATE(275), 1, - sym_identifier, - STATE(837), 1, - sym_not, - STATE(812), 2, - sym_minus, - sym_plus, - ACTIONS(1707), 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, - [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, - 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(1711), 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, - 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1717), 3, - sym_true, - sym_false, - sym_number, - STATE(510), 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(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(1719), 3, - sym_true, - sym_false, - sym_number, - STATE(446), 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(1535), 1, - anon_sym_LPAREN, - ACTIONS(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1729), 3, - sym_true, - sym_false, - sym_number, - STATE(20), 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(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(1731), 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, - [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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1733), 3, - sym_true, - sym_false, - sym_number, - STATE(608), 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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1735), 3, - sym_true, - sym_false, - sym_number, - STATE(21), 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, - [59390] = 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(1737), 3, - sym_true, - sym_false, - sym_number, - STATE(64), 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, - [59453] = 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(1739), 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, - [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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1741), 3, - sym_true, - sym_false, - sym_number, - STATE(602), 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, - [59579] = 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(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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1747), 3, - sym_true, - sym_false, - sym_number, - STATE(603), 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(1537), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1539), 1, - anon_sym_DOLLAR, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(1543), 1, - aux_sym_array_constructor_token1, - ACTIONS(1545), 1, - aux_sym_time_expression_token4, - ACTIONS(1547), 1, - anon_sym_STAR, - ACTIONS(1551), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1753), 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, - [59894] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1755), 3, - sym_true, - sym_false, - sym_number, - STATE(22), 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, - [59957] = 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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1757), 3, - sym_true, - sym_false, - sym_number, - STATE(573), 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, - [60020] = 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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1759), 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, - [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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1763), 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, - [60209] = 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(1765), 3, - sym_true, - sym_false, - sym_number, - STATE(72), 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, - [60272] = 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(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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1769), 3, - sym_true, - sym_false, - sym_number, - STATE(497), 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_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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1771), 3, - sym_true, - sym_false, - sym_number, - STATE(575), 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, - [60461] = 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(576), 1, - sym_identifier, - STATE(763), 1, - sym_not, - STATE(862), 2, - sym_minus, - sym_plus, - ACTIONS(1773), 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, - [60524] = 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(1349), 1, - anon_sym_LPAREN, - ACTIONS(1351), 1, - aux_sym_alter_column_action_token2, - ACTIONS(1353), 1, - anon_sym_DOLLAR, - ACTIONS(1355), 1, - anon_sym_SQUOTE, - ACTIONS(1357), 1, - aux_sym_array_constructor_token1, - ACTIONS(1359), 1, - aux_sym_time_expression_token4, - ACTIONS(1361), 1, - anon_sym_STAR, - ACTIONS(1365), 1, - sym__identifier, - STATE(520), 1, - sym_identifier, - STATE(761), 1, - sym_not, - STATE(769), 2, - sym_minus, - sym_plus, - ACTIONS(1775), 3, - sym_true, - sym_false, - sym_number, - STATE(452), 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(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(770), 1, - sym_not, - STATE(775), 2, - sym_minus, - sym_plus, - ACTIONS(1777), 3, - sym_true, - sym_false, - sym_number, - STATE(594), 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(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(1779), 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, - [60713] = 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(834), 1, - anon_sym_LPAREN, - ACTIONS(838), 1, - aux_sym_alter_column_action_token2, - ACTIONS(840), 1, - anon_sym_DOLLAR, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - aux_sym_array_constructor_token1, - ACTIONS(846), 1, - aux_sym_time_expression_token4, - ACTIONS(848), 1, - anon_sym_STAR, - ACTIONS(852), 1, - sym__identifier, - STATE(282), 1, - sym_identifier, - STATE(764), 1, - sym_not, - STATE(765), 2, - sym_minus, - sym_plus, - ACTIONS(1781), 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, - [60776] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(875), 1, - aux_sym_returning_repeat1, - STATE(895), 1, - sym_into, - STATE(924), 1, - sym_select_from, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 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, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60844] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(893), 1, - sym_into, - STATE(926), 1, - sym_select_from, - STATE(969), 1, - sym_select_where, - STATE(1023), 1, - sym_select_group_by, - STATE(1047), 1, - aux_sym_returning_repeat1, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60912] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(877), 1, - aux_sym_returning_repeat1, - STATE(893), 1, - sym_into, - STATE(926), 1, - sym_select_from, - STATE(969), 1, - sym_select_where, - STATE(1023), 1, - sym_select_group_by, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [60980] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(887), 1, - sym_into, - STATE(925), 1, - sym_select_from, - STATE(974), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1047), 1, - aux_sym_returning_repeat1, - STATE(1064), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [61048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1803), 23, - 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, - aux_sym_sequence_start_token2, - aux_sym_trigger_scope_token1, - aux_sym_trigger_exec_token1, - aux_sym_open_cursor_statement_token1, - aux_sym_get_diagnostics_statement_token1, - aux_sym_for_statement_token3, - aux_sym_raise_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - aux_sym_if_statement_token5, - aux_sym_return_statement_token1, - aux_sym_perform_statement_token1, - aux_sym_select_statement_token1, - sym__identifier, - [61080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(898), 1, - sym__list_of_identifiers, - ACTIONS(1807), 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, - [61113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(907), 1, - sym__list_of_identifiers, - ACTIONS(1811), 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, - [61146] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1815), 1, - aux_sym_update_statement_token2, - ACTIONS(1817), 1, - anon_sym_LPAREN, - STATE(905), 1, - sym_identifier, - ACTIONS(1813), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1819), 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, - [61185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(31), 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, - [61215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(879), 1, - sym_identifier, - ACTIONS(1821), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1825), 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, - [61251] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(928), 1, - sym_into, - STATE(957), 1, - sym_select_from, - STATE(994), 1, - sym_select_where, - STATE(1074), 1, - sym_select_group_by, - STATE(1111), 1, - aux_sym_returning_repeat1, - STATE(1153), 1, - sym_where_filter, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61319] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 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(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61381] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(896), 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, - [61413] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(918), 1, - sym_select_from, - STATE(973), 1, - sym_select_where, - STATE(1005), 1, - sym_select_group_by, - STATE(1057), 1, - sym_select_having, - STATE(1147), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [61475] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 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(921), 1, - sym_into, - STATE(964), 1, - sym_select_from, - STATE(1026), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1124), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 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, - [61543] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(915), 1, - sym_into, - STATE(961), 1, - sym_select_from, - STATE(1009), 1, - sym_select_where, - STATE(1069), 1, - sym_select_group_by, - STATE(1111), 1, - aux_sym_returning_repeat1, - STATE(1140), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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, - [61611] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1827), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - STATE(889), 1, - aux_sym_returning_repeat1, - STATE(928), 1, - sym_into, - STATE(957), 1, - sym_select_from, - STATE(994), 1, - sym_select_where, - STATE(1074), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [61679] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - aux_sym_join_item_token1, - ACTIONS(1839), 1, - aux_sym_join_item_token2, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1249), 1, - sym_join_type, - STATE(894), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1835), 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, - [61721] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(886), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 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, - [61753] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(925), 1, - sym_select_from, - STATE(974), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1064), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [61815] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - aux_sym_join_item_token1, - ACTIONS(1839), 1, - aux_sym_join_item_token2, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1249), 1, - sym_join_type, - STATE(896), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 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, - [61857] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1785), 1, - aux_sym_update_statement_token4, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(926), 1, - sym_select_from, - STATE(969), 1, - sym_select_where, - STATE(1023), 1, - sym_select_group_by, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [61919] = 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(896), 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, - [61961] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(935), 1, - sym_into, - STATE(972), 1, - sym_select_from, - STATE(1040), 1, - sym_select_where, - STATE(1087), 1, - sym_select_group_by, - STATE(1121), 1, - aux_sym_returning_repeat1, - STATE(1153), 1, - sym_where_filter, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1603), 1, - sym__select_limit_offset, - [62028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1811), 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, - [62055] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 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(946), 1, - sym_into, - STATE(970), 1, - sym_select_from, - STATE(1051), 1, - sym_select_where, - STATE(1106), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1609), 1, - sym__select_limit_offset, - [62122] = 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, - [62151] = 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, - [62178] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 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(942), 1, - sym_into, - STATE(966), 1, - sym_select_from, - STATE(1039), 1, - sym_select_where, - STATE(1104), 1, - sym_select_group_by, - STATE(1121), 1, - aux_sym_returning_repeat1, - STATE(1153), 1, - sym_where_filter, - STATE(1168), 1, - sym_select_having, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1589), 1, - sym__select_limit_offset, - [62245] = 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, - [62272] = 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, - [62301] = 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, - [62328] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1874), 1, - aux_sym_update_statement_token2, - ACTIONS(1876), 1, - anon_sym_LPAREN, - STATE(905), 1, - sym_identifier, - ACTIONS(1813), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1819), 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, - [62365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1878), 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, - [62392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(914), 1, - sym_identifier, - ACTIONS(1872), 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, - [62425] = 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, - [62454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 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, - [62481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1882), 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, - [62508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1803), 20, - 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, - aux_sym_sequence_start_token2, - aux_sym_trigger_scope_token1, - aux_sym_trigger_exec_token1, - aux_sym_open_cursor_statement_token1, - aux_sym_get_diagnostics_statement_token1, - aux_sym_for_statement_token3, - aux_sym_raise_statement_token1, - aux_sym_if_statement_token1, - aux_sym_return_statement_token1, - aux_sym_perform_statement_token1, - aux_sym_select_statement_token1, - sym__identifier, - [62537] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - ACTIONS(1864), 1, - anon_sym_COMMA, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(902), 1, - aux_sym_returning_repeat1, - STATE(935), 1, - sym_into, - STATE(972), 1, - sym_select_from, - STATE(1040), 1, - sym_select_where, - STATE(1087), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1603), 1, - sym__select_limit_offset, - [62604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1884), 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] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(956), 1, - sym_select_from, - STATE(1015), 1, - sym_select_where, - STATE(1078), 1, - sym_select_group_by, - STATE(1120), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1208), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(879), 1, - sym_identifier, - ACTIONS(1821), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1825), 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, - [62727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(31), 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, - [62755] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(968), 1, - sym_select_where, - STATE(1001), 1, - sym_select_group_by, - STATE(1075), 1, - sym_select_having, - STATE(1135), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [62811] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(1890), 1, - aux_sym_join_item_token1, - ACTIONS(1893), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(919), 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, - [62851] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(929), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 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, - [62881] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(957), 1, - sym_select_from, - STATE(994), 1, - sym_select_where, - STATE(1074), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [62943] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1896), 1, - aux_sym_join_item_token1, - ACTIONS(1898), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(919), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 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, - [62983] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(964), 1, - sym_select_from, - STATE(1026), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1124), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [63045] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(969), 1, - sym_select_where, - STATE(1023), 1, - sym_select_group_by, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63101] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(973), 1, - sym_select_where, - STATE(1005), 1, - sym_select_group_by, - STATE(1057), 1, - sym_select_having, - STATE(1147), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [63157] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(974), 1, - sym_select_where, - STATE(1008), 1, - sym_select_group_by, - STATE(1064), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [63213] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1813), 1, - anon_sym_COMMA, - ACTIONS(1900), 1, - aux_sym_update_statement_token2, - ACTIONS(1902), 1, - anon_sym_LPAREN, - STATE(905), 1, - sym_identifier, - ACTIONS(1819), 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, - [63249] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1829), 1, - aux_sym_update_statement_token4, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(961), 1, - sym_select_from, - STATE(1009), 1, - sym_select_where, - STATE(1069), 1, - sym_select_group_by, - STATE(1140), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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, - [63311] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(919), 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, - [63341] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(975), 1, - sym_select_where, - STATE(1017), 1, - sym_select_group_by, - STATE(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1153), 1, - sym_where_filter, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [63397] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1896), 1, - aux_sym_join_item_token1, - ACTIONS(1898), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(922), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1835), 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, - [63437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 2, - anon_sym_COMMA, - anon_sym_LPAREN, - ACTIONS(31), 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, - [63464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(445), 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, - [63491] = 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, - [63536] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(966), 1, - sym_select_from, - STATE(1039), 1, - sym_select_where, - STATE(1104), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1168), 1, - sym_select_having, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [63597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1926), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1924), 17, - anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - 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_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, - [63626] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1929), 1, - anon_sym_SEMI, - ACTIONS(1931), 1, - aux_sym_update_statement_token2, - ACTIONS(1934), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(1937), 1, - aux_sym_sequence_increment_token1, - ACTIONS(1940), 1, - aux_sym_sequence_min_token1, - ACTIONS(1943), 1, - aux_sym_sequence_max_token1, - ACTIONS(1946), 1, - aux_sym_sequence_start_token1, - ACTIONS(1949), 1, - aux_sym_sequence_cache_token1, - ACTIONS(1952), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(1955), 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, - [63671] = 6, - 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(879), 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, - 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, - [63704] = 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, - [63749] = 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(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, - [63794] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(948), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 16, - 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_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, - [63823] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(977), 1, - sym_select_from, - STATE(1029), 1, - sym_select_where, - STATE(1116), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1183), 1, - sym_select_having, - STATE(1262), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [63884] = 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(1958), 1, - anon_sym_SEMI, - STATE(934), 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, - [63929] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(970), 1, - sym_select_from, - STATE(1051), 1, - sym_select_where, - STATE(1106), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [63990] = 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(1960), 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, - [64035] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - ACTIONS(1866), 1, - aux_sym_update_statement_token4, - STATE(972), 1, - sym_select_from, - STATE(1040), 1, - sym_select_where, - STATE(1087), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [64096] = 3, - 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, - 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, - [64123] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1249), 1, - sym_join_type, - STATE(949), 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, - 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, - [64152] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(1962), 1, - aux_sym_join_item_token1, - ACTIONS(1965), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(949), 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, - [64191] = 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, - [64218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(914), 1, - sym_identifier, - ACTIONS(1872), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1880), 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, - [64249] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1968), 1, - aux_sym_join_item_token1, - ACTIONS(1970), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(953), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1835), 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, - [64288] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1968), 1, - aux_sym_join_item_token1, - ACTIONS(1970), 1, - aux_sym_join_item_token2, - STATE(1249), 1, - sym_join_type, - STATE(949), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 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, - [64327] = 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(1972), 1, - anon_sym_SEMI, - STATE(940), 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, - [64372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 18, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - 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_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, - [64396] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1024), 1, - sym_select_where, - STATE(1071), 1, - sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1186), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64452] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1009), 1, - sym_select_where, - STATE(1069), 1, - sym_select_group_by, - STATE(1140), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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, - [64508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1872), 1, - anon_sym_COMMA, - STATE(914), 1, - sym_identifier, - ACTIONS(1880), 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, - [64538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 1, - anon_sym_COMMA, - ACTIONS(455), 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, - [64564] = 3, - 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, - [64590] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1015), 1, - sym_select_where, - STATE(1078), 1, - sym_select_group_by, - STATE(1120), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1208), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 1, - anon_sym_COMMA, - ACTIONS(445), 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, - [64672] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1026), 1, - sym_select_where, - STATE(1080), 1, - sym_select_group_by, - STATE(1124), 1, - sym_select_having, - STATE(1153), 1, - sym_where_filter, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64728] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(994), 1, - sym_select_where, - STATE(1074), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [64784] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - STATE(1051), 1, - sym_select_where, - STATE(1106), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [64839] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1029), 1, - sym_select_where, - STATE(1116), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1183), 1, - sym_select_having, - STATE(1262), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [64894] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(1976), 1, - aux_sym_insert_conflict_token1, - STATE(993), 1, - sym__list_of_identifiers, - STATE(998), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(1974), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [64925] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1000), 1, - sym_select_group_by, - STATE(1072), 1, - sym_select_having, - STATE(1132), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1322), 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, - [64972] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1008), 1, - sym_select_group_by, - STATE(1064), 1, - sym_select_having, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [65019] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - STATE(1040), 1, - sym_select_where, - STATE(1087), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [65074] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1017), 1, - sym_select_group_by, - STATE(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65121] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1039), 1, - sym_select_where, - STATE(1104), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1168), 1, - sym_select_having, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [65176] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1001), 1, - sym_select_group_by, - STATE(1075), 1, - sym_select_having, - STATE(1135), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65223] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1005), 1, - sym_select_group_by, - STATE(1057), 1, - sym_select_having, - STATE(1147), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [65270] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1023), 1, - sym_select_group_by, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [65317] = 7, - 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(905), 1, - sym_identifier, - ACTIONS(1813), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1819), 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, - [65350] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1797), 1, - aux_sym_where_filter_token1, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1036), 1, - sym_select_where, - STATE(1115), 1, - sym_select_group_by, - STATE(1153), 1, - sym_where_filter, - STATE(1174), 1, - sym_select_having, - STATE(1244), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1595), 1, - sym__select_limit_offset, - [65405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - anon_sym_LPAREN, - STATE(1041), 1, - sym_precision, - ACTIONS(55), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [65431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(879), 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] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1986), 1, - aux_sym_join_item_token1, - ACTIONS(1988), 1, - aux_sym_join_item_token2, - STATE(1270), 1, - sym_join_type, - STATE(988), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1835), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1990), 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, - [65523] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1270), 1, - sym_join_type, - STATE(989), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 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, - [65549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - STATE(981), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1994), 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, - [65575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(1994), 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, - [65601] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1996), 1, - aux_sym_update_statement_token2, - ACTIONS(1998), 1, - anon_sym_LPAREN, - STATE(905), 1, - sym_identifier, - ACTIONS(1813), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1819), 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, - [65633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 1, - anon_sym_LPAREN, - STATE(1041), 1, - sym_type_length, - ACTIONS(55), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [65659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - STATE(984), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2002), 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, - [65685] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(1986), 1, - aux_sym_join_item_token1, - ACTIONS(1988), 1, - aux_sym_join_item_token2, - STATE(1270), 1, - sym_join_type, - STATE(990), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65721] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1270), 1, - sym_join_type, - STATE(990), 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, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [65747] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(2004), 1, - aux_sym_join_item_token1, - ACTIONS(2007), 1, - aux_sym_join_item_token2, - STATE(1270), 1, - sym_join_type, - STATE(990), 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, - [65783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(31), 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, - [65807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(1035), 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_conflict_target_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, - [65859] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1069), 1, - sym_select_group_by, - STATE(1140), 1, - sym_select_having, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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(1232), 1, - sym_join_type, - STATE(997), 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, - 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(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(2016), 1, - aux_sym_join_item_token1, - ACTIONS(2018), 1, - aux_sym_join_item_token2, - STATE(1232), 1, - sym_join_type, - STATE(997), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1831), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [65966] = 9, - 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(1232), 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, - anon_sym_COMMA, - 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_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_conflict_target_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, - [66026] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - aux_sym_insert_items_token1, - ACTIONS(2031), 1, - aux_sym_conflict_target_token1, - ACTIONS(2037), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2040), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2043), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2046), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1055), 1, - sym_column_constraint_ty, - STATE(1092), 1, - sym_constraint_foreign_key, - ACTIONS(2034), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(999), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2026), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66067] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1066), 1, - sym_select_having, - STATE(1129), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1317), 1, - sym_into, - ACTIONS(2049), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66108] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1072), 1, - sym_select_having, - STATE(1132), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1322), 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, - [66149] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - aux_sym_insert_items_token1, - ACTIONS(2055), 1, - aux_sym_conflict_target_token1, - ACTIONS(2059), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2061), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2063), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2065), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1055), 1, - sym_column_constraint_ty, - STATE(1092), 1, - sym_constraint_foreign_key, - ACTIONS(2057), 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(2051), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66190] = 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(2067), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [66215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2071), 1, - aux_sym_insert_conflict_token1, - STATE(1004), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(2069), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [66240] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1075), 1, - sym_select_having, - STATE(1135), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(879), 1, - sym_identifier, - ACTIONS(1821), 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, - [66310] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1080), 1, - sym_select_group_by, - STATE(1124), 1, - sym_select_having, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66357] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1057), 1, - sym_select_having, - STATE(1147), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [66398] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1078), 1, - sym_select_group_by, - STATE(1120), 1, - sym_select_having, - STATE(1208), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(471), 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, - [66468] = 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, - 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, - [66491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(914), 1, - sym_identifier, - ACTIONS(1872), 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, - [66518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 15, - anon_sym_SEMI, - aux_sym_update_statement_token2, - 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, - [66539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(443), 3, - 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, - [66562] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1071), 1, - sym_select_group_by, - STATE(1139), 1, - sym_select_having, - STATE(1186), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACK, - STATE(1076), 1, - aux_sym__type_repeat1, - ACTIONS(2078), 2, - aux_sym__type_token1, - aux_sym__type_token2, - ACTIONS(125), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [66636] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1070), 1, - sym_select_having, - STATE(1137), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66677] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - aux_sym_insert_items_token1, - ACTIONS(2055), 1, - aux_sym_conflict_target_token1, - ACTIONS(2059), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2061), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2063), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2065), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1055), 1, - sym_column_constraint_ty, - STATE(1092), 1, - sym_constraint_foreign_key, - ACTIONS(2057), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(999), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(2080), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [66718] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(2016), 1, - aux_sym_join_item_token1, - ACTIONS(2018), 1, - aux_sym_join_item_token2, - STATE(1232), 1, - sym_join_type, - STATE(996), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(1835), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [66753] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1232), 1, - sym_join_type, - STATE(995), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 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, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - aux_sym_where_filter_token1, - [66778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - ACTIONS(31), 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, - [66801] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1083), 1, - sym_select_having, - STATE(1134), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [66842] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1064), 1, - sym_select_having, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [66883] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1058), 1, - sym_select_group_by, - STATE(1151), 1, - sym_select_having, - STATE(1185), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1571), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [66930] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2084), 1, - aux_sym_drop_function_statement_token1, - ACTIONS(2086), 1, - aux_sym_conflict_target_token1, - ACTIONS(2088), 1, - aux_sym_create_table_statement_token1, - ACTIONS(2090), 1, - aux_sym_create_schema_statement_token1, - ACTIONS(2092), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2094), 1, - aux_sym_create_index_statement_token2, - ACTIONS(2096), 1, - aux_sym_grant_targets_token5, - ACTIONS(2098), 1, - aux_sym_create_trigger_statement_token1, - ACTIONS(2100), 1, - aux_sym_trigger_event_token2, - ACTIONS(2102), 1, - aux_sym_temporary_token1, - ACTIONS(2104), 1, - aux_sym_temporary_token2, - ACTIONS(2106), 1, - sym_unlogged, - STATE(1593), 1, - sym_temporary, - STATE(2320), 1, - sym_or_replace, - [66979] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1074), 1, - sym_select_group_by, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67026] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 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, - [67046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(914), 1, - sym_identifier, - ACTIONS(1872), 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, - [67072] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1115), 1, - sym_select_group_by, - STATE(1174), 1, - sym_select_having, - STATE(1244), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1595), 1, - sym__select_limit_offset, - [67118] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1106), 1, - sym_select_group_by, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [67164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 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, - [67184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2110), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2112), 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, - [67206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(453), 3, - 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, - [67228] = 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_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, - [67250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2114), 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, - [67270] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1098), 1, - sym_select_group_by, - STATE(1162), 1, - sym_select_having, - STATE(1218), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [67316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 3, - 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, - [67338] = 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, - [67360] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1116), 1, - sym_select_group_by, - STATE(1183), 1, - sym_select_having, - STATE(1262), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [67406] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1104), 1, - sym_select_group_by, - STATE(1168), 1, - sym_select_having, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [67452] = 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_conflict_target_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, - [67472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2120), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2122), 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, - [67494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2126), 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, - [67516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 3, - aux_sym_update_statement_token2, - aux_sym_update_statement_token3, - sym__identifier, - ACTIONS(29), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DOLLAR, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - anon_sym_SQUOTE, - [67538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2128), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2130), 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, - [67560] = 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_conflict_target_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, - [67580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2132), 1, - anon_sym_COMMA, - STATE(1047), 1, - aux_sym_returning_repeat1, - ACTIONS(2108), 12, - 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_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, - [67604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 14, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [67624] = 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, - [67646] = 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_conflict_target_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, - [67666] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1787), 1, - aux_sym_grant_roles_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - STATE(1087), 1, - sym_select_group_by, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [67712] = 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, - [67734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(2145), 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, - [67756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_LBRACK, - STATE(1054), 1, - aux_sym__type_repeat1, - ACTIONS(161), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [67779] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - aux_sym_constraint_when_token1, - STATE(1148), 1, - sym_constraint_when, - ACTIONS(2150), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [67802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2154), 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, - [67825] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1135), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [67860] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1131), 1, - sym_select_having, - STATE(1201), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2049), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2158), 1, - aux_sym_update_statement_token2, - ACTIONS(2160), 1, - anon_sym_LPAREN, - STATE(905), 1, - sym_identifier, - ACTIONS(1819), 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, - [67928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, - anon_sym_COMMA, - STATE(1060), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2162), 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, - [67951] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1124), 1, - sym_select_having, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [67992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 1, - anon_sym_SEMI, - ACTIONS(2167), 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, - [68013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2171), 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, - [68032] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1147), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [68067] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2177), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2185), 1, - aux_sym_if_statement_token1, - ACTIONS(2187), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1732), 1, - sym_if_not_exists, - STATE(1871), 2, - sym_table_constraint, - sym_table_column_item, - [68108] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1128), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1377), 1, - sym__select_limit_offset, - ACTIONS(2189), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2156), 1, - anon_sym_COMMA, - STATE(1056), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2191), 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, - [68166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(1035), 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, - [68191] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1120), 1, - sym_select_having, - STATE(1208), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68232] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1154), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [68267] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1151), 1, - sym_select_having, - STATE(1185), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1571), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68308] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1129), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1317), 1, - sym_into, - ACTIONS(2049), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68343] = 2, - 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_conflict_target_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, - [68362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1140), 1, - sym_select_having, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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, - [68403] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1132), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1322), 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, - [68438] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_LBRACK, - STATE(1054), 1, - aux_sym__type_repeat1, - ACTIONS(172), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [68461] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - aux_sym_constraint_when_token1, - STATE(1146), 1, - sym_constraint_when, - ACTIONS(2195), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [68484] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1139), 1, - sym_select_having, - STATE(1186), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_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, - [68544] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1157), 1, - sym_select_having, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_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, - [68604] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1134), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68639] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1137), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [68674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2162), 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, - [68693] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, - anon_sym_LBRACK, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 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, - [68727] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, - anon_sym_LBRACK, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 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, - [68761] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1168), 1, - sym_select_having, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [68801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - aux_sym_constraint_when_token2, - ACTIONS(2205), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [68821] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2209), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1625), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [68859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(593), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [68877] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(2211), 1, - aux_sym_join_item_token1, - ACTIONS(2213), 1, - aux_sym_join_item_token2, - STATE(1232), 1, - sym_join_type, - ACTIONS(1831), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1094), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [68909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2215), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [68927] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2219), 1, - aux_sym_update_statement_token2, - ACTIONS(2221), 1, - aux_sym_insert_statement_token2, - ACTIONS(2223), 1, - aux_sym_returning_token1, - ACTIONS(2225), 1, - aux_sym_index_using_token1, - ACTIONS(2227), 1, - aux_sym_where_filter_token1, - STATE(1198), 1, - sym_identifier, - STATE(1272), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [68965] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - aux_sym_join_item_token3, - ACTIONS(1858), 1, - aux_sym_join_type_token1, - ACTIONS(2229), 1, - aux_sym_join_item_token1, - ACTIONS(2232), 1, - aux_sym_join_item_token2, - STATE(1232), 1, - sym_join_type, - ACTIONS(1847), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1094), 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, - [68997] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1232), 1, - sym_join_type, - STATE(1094), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1831), 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, - [69019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2235), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(662), 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, - [69041] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2010), 1, - anon_sym_COMMA, - STATE(1035), 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, - [69065] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(2049), 1, - aux_sym_for_statement_token2, - STATE(1178), 1, - sym_select_having, - STATE(1252), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1587), 1, - sym__select_limit_offset, - [69105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(161), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [69123] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2238), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1774), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [69161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(591), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(2240), 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, - [69183] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(1823), 1, - aux_sym_update_statement_token2, - STATE(879), 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, - [69207] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_DQUOTE, + STATE(10), 1, + sym__if_not_exists, + STATE(23), 1, + sym_table_reference, + STATE(25), 1, + sym_identifier, + STATE(4), 2, + sym_comment, + sym_marginalia, + [97] = 9, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(23), 1, + sym__identifier, + ACTIONS(25), 1, + sym_keyword_if, + ACTIONS(27), 1, + anon_sym_DQUOTE, + STATE(8), 1, + sym__if_not_exists, + STATE(24), 1, + sym_table_reference, + STATE(25), 1, + sym_identifier, + STATE(5), 2, + sym_comment, + sym_marginalia, + [126] = 8, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(31), 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, - [69227] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1183), 1, - sym_select_having, - STATE(1262), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [69267] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - ACTIONS(2211), 1, - aux_sym_join_item_token1, - ACTIONS(2213), 1, - aux_sym_join_item_token2, - STATE(1232), 1, - sym_join_type, - ACTIONS(1835), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - STATE(1091), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [69299] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - STATE(1180), 1, - sym_select_having, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [69339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 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, - [69357] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2221), 1, - aux_sym_insert_statement_token2, - ACTIONS(2225), 1, - aux_sym_index_using_token1, - ACTIONS(2227), 1, - aux_sym_where_filter_token1, - ACTIONS(2244), 1, - aux_sym_update_statement_token2, - ACTIONS(2246), 1, - aux_sym_returning_token1, - STATE(1187), 1, - sym_identifier, - STATE(1273), 1, - sym_delete_using, - STATE(1443), 1, - sym_where_filter, - STATE(1967), 1, - sym_into, - ACTIONS(2242), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69395] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1167), 1, - sym_select_having, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [69435] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1232), 1, - sym_join_type, - STATE(1095), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(1835), 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, - [69457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_COMMA, - STATE(1111), 1, - aux_sym_returning_repeat1, - ACTIONS(2108), 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, - [69479] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2251), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1720), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [69517] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2253), 1, - anon_sym_RPAREN, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1638), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [69555] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(621), 1, - anon_sym_LBRACK, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - STATE(298), 1, - aux_sym__type_repeat1, - STATE(1394), 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, - [69589] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1162), 1, - sym_select_having, - STATE(1218), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [69629] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1789), 1, - aux_sym_select_having_token1, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1174), 1, - sym_select_having, - STATE(1244), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1595), 1, - sym__select_limit_offset, - [69669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [69687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2154), 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, - [69708] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(2259), 1, - anon_sym_LPAREN, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - STATE(1196), 1, - sym_as, - STATE(1219), 1, - sym__list_of_identifiers, - STATE(1220), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [69745] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1186), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 1, - anon_sym_COMMA, - STATE(1121), 1, - aux_sym_returning_repeat1, - ACTIONS(2108), 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, - [69801] = 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, - sym__identifier, - [69818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 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, - [69835] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1207), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [69870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(172), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [69887] = 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(2065), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [69916] = 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, - [69933] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1308), 1, - sym__select_limit_offset, - STATE(1358), 1, - sym_into, - ACTIONS(2270), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [69962] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1377), 1, - sym__select_limit_offset, - ACTIONS(2189), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [69991] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - aux_sym_conflict_target_token1, - ACTIONS(2175), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2179), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2181), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2183), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(2187), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1446), 1, - sym_table_constraint_ty, - STATE(1885), 1, - sym_create_table_item, - STATE(1910), 2, - sym_table_constraint, - sym_table_column_item, - [70026] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1197), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1524), 1, - sym__select_limit_offset, - ACTIONS(2189), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70061] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1309), 1, - sym__select_limit_offset, - STATE(1317), 1, - sym_into, - ACTIONS(2049), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - STATE(914), 1, - sym_identifier, - ACTIONS(1880), 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, - [70111] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1343), 1, - sym__select_limit_offset, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70140] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1307), 1, - sym__select_limit_offset, - STATE(1322), 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, - [70169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2257), 1, - anon_sym_COMMA, - STATE(1118), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2191), 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, - [70190] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1321), 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, - [70219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - anon_sym_COMMA, - STATE(1138), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2162), 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, - [70240] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1185), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1571), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70275] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1208), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70310] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2275), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2277), 1, - aux_sym_update_statement_token3, - ACTIONS(2279), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2281), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2283), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1704), 1, - sym_alter_table_action, - STATE(2199), 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, - [70341] = 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(2376), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70370] = 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, - [70399] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1206), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70434] = 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(2220), 5, - sym_update_statement, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [70463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [70480] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1312), 1, - sym__select_limit_offset, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2287), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - aux_sym_conflict_target_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, - [70526] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2221), 1, - aux_sym_insert_statement_token2, - ACTIONS(2225), 1, - aux_sym_index_using_token1, - ACTIONS(2227), 1, - aux_sym_where_filter_token1, - ACTIONS(2291), 1, - aux_sym_returning_token1, - STATE(1199), 1, - sym_identifier, - STATE(1291), 1, - sym_delete_using, - STATE(1425), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70561] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1352), 1, - sym__select_limit_offset, - ACTIONS(792), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [70590] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1201), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2049), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70625] = 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_conflict_target_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, - [70642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2295), 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, - [70659] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1313), 1, - sym__select_limit_offset, - STATE(1348), 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, - [70688] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2275), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2277), 1, - aux_sym_update_statement_token3, - ACTIONS(2279), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2281), 1, - aux_sym_alter_table_action_token1, - ACTIONS(2283), 1, - aux_sym_alter_table_rename_column_token1, - STATE(1704), 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, - [70719] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(1906), 1, - aux_sym_update_statement_token2, - ACTIONS(2259), 1, - anon_sym_LPAREN, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - STATE(1191), 1, - sym_as, - STATE(1225), 1, - sym__list_of_identifiers, - STATE(1234), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [70756] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1193), 1, - sym_select_order_by, - STATE(1268), 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, - [70791] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2221), 1, - aux_sym_insert_statement_token2, - ACTIONS(2223), 1, - aux_sym_returning_token1, - ACTIONS(2225), 1, - aux_sym_index_using_token1, - ACTIONS(2227), 1, - aux_sym_where_filter_token1, - STATE(1198), 1, - sym_identifier, - STATE(1272), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [70826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2297), 1, - anon_sym_COMMA, - STATE(1159), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2162), 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, - [70846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 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, - [70862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 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, - [70878] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(2049), 1, - aux_sym_for_statement_token2, - STATE(1252), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1587), 1, - sym__select_limit_offset, - [70912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 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, - [70928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - anon_sym_COMMA, - STATE(1159), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2154), 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, - [70948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - anon_sym_COMMA, - STATE(1171), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2308), 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, - [70968] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2316), 1, - aux_sym_grant_privileges_token1, - STATE(1709), 1, - sym_identifier, - STATE(2075), 1, - sym_grant_targets, - ACTIONS(2312), 3, - aux_sym_drop_function_statement_token1, - aux_sym_grant_targets_token6, - aux_sym_grant_targets_token7, - ACTIONS(2314), 3, - aux_sym_create_table_statement_token1, - aux_sym_create_schema_statement_token1, - aux_sym_grant_targets_token5, - [70994] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - STATE(1237), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [71028] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1262), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [71062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 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, - [71078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2320), 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, - [71094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - anon_sym_COMMA, - STATE(1182), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2322), 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, - [71114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - anon_sym_COMMA, - STATE(1164), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2191), 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, - [71134] = 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, - [71150] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1218), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [71184] = 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, - [71200] = 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, - [71216] = 2, - 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, - [71232] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(2189), 1, - aux_sym_for_statement_token2, - STATE(1230), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1714), 1, - sym__select_limit_offset, - [71266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 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] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1266), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [71316] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2334), 1, - aux_sym_create_table_statement_token1, - ACTIONS(2336), 1, - aux_sym_return_setof_token1, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 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, - [71344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 1, - anon_sym_COMMA, - STATE(1182), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(2342), 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, - [71364] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1244), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1595), 1, - sym__select_limit_offset, - [71398] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1795), 1, - aux_sym_select_order_by_token1, - STATE(1245), 1, - sym_select_order_by, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [71432] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1552), 1, - sym__select_limit_offset, - ACTIONS(2049), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71461] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1571), 1, - sym__select_limit_offset, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71490] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - STATE(1272), 1, - sym_delete_using, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71519] = 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(1192), 1, - aux_sym_update_statement_repeat1, - STATE(1523), 1, - sym_where_filter, - STATE(1927), 1, - sym_returning, - ACTIONS(2353), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71548] = 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(2365), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1574), 1, - sym_where_filter, - STATE(1816), 1, - sym_returning, - ACTIONS(2363), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71577] = 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(2369), 1, - aux_sym_update_statement_token4, - STATE(1189), 1, - aux_sym_update_statement_repeat1, - STATE(1562), 1, - sym_where_filter, - STATE(1945), 1, - sym_returning, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71606] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2259), 1, - anon_sym_LPAREN, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - STATE(1219), 1, - sym__list_of_identifiers, - STATE(1220), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [71637] = 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(2373), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1534), 1, - sym_where_filter, - STATE(1834), 1, - sym_returning, - ACTIONS(2371), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71666] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1544), 1, - sym__select_limit_offset, - ACTIONS(1833), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2375), 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, - [71710] = 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(2369), 1, - aux_sym_update_statement_token4, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1562), 1, - sym_where_filter, - STATE(1945), 1, - sym_returning, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71739] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2259), 1, - anon_sym_LPAREN, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - STATE(1216), 1, - sym_insert_items, - STATE(1217), 1, - sym__list_of_identifiers, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [71770] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1358), 1, - sym_into, - STATE(1505), 1, - sym__select_limit_offset, - ACTIONS(2270), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71799] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2377), 1, - aux_sym_returning_token1, - STATE(1291), 1, - sym_delete_using, - STATE(1425), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71828] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2349), 1, - aux_sym_index_using_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2381), 1, - aux_sym_returning_token1, - STATE(1290), 1, - sym_delete_using, - STATE(1389), 1, - sym_where_filter, - STATE(1779), 1, - sym_into, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71857] = 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(2373), 1, - aux_sym_update_statement_token4, - STATE(1203), 1, - aux_sym_update_statement_repeat1, - STATE(1534), 1, - sym_where_filter, - STATE(1834), 1, - sym_returning, - ACTIONS(2371), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71886] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1524), 1, - sym__select_limit_offset, - ACTIONS(2189), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71915] = 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(1195), 1, - aux_sym_update_statement_repeat1, - STATE(1545), 1, - sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2383), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71944] = 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(1281), 1, - aux_sym_update_statement_repeat1, - STATE(1545), 1, - sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2383), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [71973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 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, - [71988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 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, - [72003] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1519), 1, - sym__select_limit_offset, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72032] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 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, - [72061] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1560), 1, - sym__select_limit_offset, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72090] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2053), 1, - aux_sym_insert_items_token1, - ACTIONS(2059), 1, - aux_sym_alter_column_action_token1, - ACTIONS(2061), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2063), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2065), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1077), 1, - sym_column_constraint_ty, - STATE(1092), 1, - sym_constraint_foreign_key, - ACTIONS(2057), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - [72119] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1495), 1, - sym__select_limit_offset, - ACTIONS(792), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72148] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - STATE(1562), 1, - sym_where_filter, - STATE(1945), 1, - sym_returning, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72174] = 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(1228), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72198] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - sym__identifier, - STATE(903), 1, - sym_from_item, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(982), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72222] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1324), 1, - sym_insert_conflict, - STATE(1542), 1, - sym_returning, - STATE(1809), 1, - sym_into, - ACTIONS(2397), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(903), 1, - sym_from_item, - STATE(927), 1, - sym_identifier, - STATE(938), 1, - sym_function_call, - STATE(941), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72272] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1354), 1, - sym_insert_conflict, - STATE(1557), 1, - sym_returning, - STATE(1968), 1, - sym_into, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72298] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(1240), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [72326] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(2049), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1317), 1, - sym_into, - STATE(1587), 1, - sym__select_limit_offset, - [72354] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(1250), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [72382] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1323), 1, - sym_insert_conflict, - STATE(1541), 1, - sym_returning, - STATE(1812), 1, - sym_into, - ACTIONS(2409), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2413), 1, - anon_sym_COMMA, - STATE(1251), 1, - aux_sym_update_statement_repeat1, - STATE(1500), 1, - sym_where_filter, - ACTIONS(2411), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [72430] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - ACTIONS(2415), 1, - anon_sym_RPAREN, - STATE(225), 1, - sym_predefined_type, - STATE(1114), 1, - sym_identifier, - STATE(1751), 2, - sym_var_declaration, - sym__type, - [72456] = 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(1239), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72480] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(927), 1, - sym_identifier, - STATE(938), 1, - sym_function_call, - STATE(1172), 1, - sym_from_item, - STATE(952), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72504] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(2261), 1, - aux_sym_insert_items_token1, - ACTIONS(2263), 1, - aux_sym_insert_items_token2, - ACTIONS(2265), 1, - aux_sym_select_statement_token1, - ACTIONS(2407), 1, - anon_sym_LPAREN, - STATE(1214), 1, - sym_insert_items, - STATE(1405), 1, - sym_select_statement, - STATE(2230), 1, - sym_with_query, - [72532] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - aux_sym_for_statement_token2, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1346), 1, - sym_into, - STATE(1609), 1, - sym__select_limit_offset, - [72560] = 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(1238), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72584] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_update_statement_repeat2, - STATE(1562), 1, - sym_where_filter, - STATE(1945), 1, - sym_returning, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72610] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - sym__identifier, - STATE(903), 1, - sym_from_item, - STATE(906), 1, - sym_identifier, - STATE(916), 1, - sym_function_call, - STATE(920), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72634] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(2270), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1358), 1, - sym_into, - STATE(1584), 1, - sym__select_limit_offset, - [72662] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - STATE(1574), 1, - sym_where_filter, - STATE(1816), 1, - sym_returning, - ACTIONS(2363), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72688] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2419), 1, - sym__identifier, - STATE(1059), 1, - sym_identifier, - STATE(1102), 1, - sym_function_call, - STATE(1598), 1, - sym_from_item, - STATE(1105), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72712] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - ACTIONS(2421), 1, - anon_sym_RPAREN, - STATE(225), 1, - sym_predefined_type, - STATE(1114), 1, - sym_identifier, - STATE(1718), 2, - sym_var_declaration, - sym__type, - [72738] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1337), 1, - sym_insert_conflict, - STATE(1527), 1, - sym_returning, - STATE(1890), 1, - sym_into, - ACTIONS(2423), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72764] = 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(1258), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72788] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - sym__identifier, - STATE(906), 1, - sym_identifier, - STATE(916), 1, - sym_function_call, - STATE(1084), 1, - sym_from_item, - STATE(931), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72812] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1340), 1, - sym_into, - STATE(1589), 1, - sym__select_limit_offset, - [72840] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1242), 1, - aux_sym_update_statement_repeat2, - STATE(1521), 1, - sym_where_filter, - STATE(1931), 1, - sym_returning, - ACTIONS(2425), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72866] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1271), 1, - aux_sym_update_statement_repeat2, - STATE(1574), 1, - sym_where_filter, - STATE(1816), 1, - sym_returning, - ACTIONS(2363), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72892] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1320), 1, - sym_insert_conflict, - STATE(1573), 1, - sym_returning, - STATE(1818), 1, - sym_into, - ACTIONS(2427), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72918] = 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(1084), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [72942] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - STATE(1496), 1, - sym_where_filter, - STATE(1953), 1, - sym_returning, - ACTIONS(2429), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [72968] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2437), 1, - aux_sym_trigger_cond_token1, - STATE(1566), 1, - sym_trigger_scope, - STATE(1896), 1, - sym_trigger_cond, - STATE(2160), 1, - sym_trigger_exec, - ACTIONS(2431), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [72994] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1322), 1, - sym_into, - STATE(1590), 1, - sym__select_limit_offset, - [73022] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1799), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1368), 1, - sym_into, - STATE(1603), 1, - sym__select_limit_offset, - [73050] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - sym__identifier, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(1084), 1, - sym_from_item, - STATE(980), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73074] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - STATE(1521), 1, - sym_where_filter, - STATE(1931), 1, - sym_returning, - ACTIONS(2425), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73100] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - sym__identifier, - STATE(906), 1, - sym_identifier, - STATE(916), 1, - sym_function_call, - STATE(1136), 1, - sym_from_item, - STATE(931), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73124] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2419), 1, - sym__identifier, - STATE(1059), 1, - sym_identifier, - STATE(1102), 1, - sym_function_call, - STATE(1741), 1, - sym_from_item, - STATE(1105), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73148] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1330), 1, - sym_insert_conflict, - STATE(1558), 1, - sym_returning, - STATE(1980), 1, - sym_into, - ACTIONS(2439), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73174] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2413), 1, - anon_sym_COMMA, - STATE(1292), 1, - aux_sym_update_statement_repeat1, - STATE(1492), 1, - sym_where_filter, - ACTIONS(2441), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - [73196] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(2189), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1344), 1, - sym_into, - STATE(1714), 1, - sym__select_limit_offset, - [73224] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2403), 1, - sym__identifier, - STATE(927), 1, - sym_identifier, - STATE(938), 1, - sym_function_call, - STATE(1084), 1, - sym_from_item, - STATE(952), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73248] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1211), 1, - aux_sym_update_statement_repeat2, - STATE(1545), 1, - sym_where_filter, - STATE(1846), 1, - sym_returning, - ACTIONS(2383), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73274] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2419), 1, - sym__identifier, - STATE(903), 1, - sym_from_item, - STATE(1059), 1, - sym_identifier, - STATE(1102), 1, - sym_function_call, - STATE(1110), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73298] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2433), 1, - aux_sym_trigger_scope_token1, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2437), 1, - aux_sym_trigger_cond_token1, - STATE(1575), 1, - sym_trigger_scope, - STATE(1787), 1, - sym_trigger_cond, - STATE(2366), 1, - sym_trigger_exec, - ACTIONS(2431), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [73324] = 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(1254), 1, - sym_from_item, - STATE(1019), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73348] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1247), 1, - aux_sym_update_statement_repeat2, - STATE(1547), 1, - sym_where_filter, - STATE(1862), 1, - sym_returning, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73374] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - sym__identifier, - STATE(881), 1, - sym_identifier, - STATE(883), 1, - sym_function_call, - STATE(903), 1, - sym_from_item, - STATE(892), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73398] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - sym__identifier, - STATE(881), 1, - sym_identifier, - STATE(883), 1, - sym_function_call, - STATE(1067), 1, - sym_from_item, - STATE(891), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73422] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - sym__identifier, - STATE(881), 1, - sym_identifier, - STATE(883), 1, - sym_function_call, - STATE(1084), 1, - sym_from_item, - STATE(891), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73446] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1371), 1, - sym_into, - STATE(1595), 1, - sym__select_limit_offset, - [73474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 3, - aux_sym_predefined_type_token1, - aux_sym_predefined_type_token2, - sym__identifier, - ACTIONS(29), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym__type_token1, - aux_sym__type_token2, - [73490] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - sym__identifier, - STATE(976), 1, - sym_identifier, - STATE(979), 1, - sym_function_call, - STATE(1275), 1, - sym_from_item, - STATE(980), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73514] = 3, - 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, - [73530] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1268), 1, - sym_select_offset, - STATE(1269), 1, - sym_select_limit, - STATE(1348), 1, - sym_into, - STATE(1586), 1, - sym__select_limit_offset, - [73558] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_LPAREN, - ACTIONS(2393), 1, - sym__identifier, - STATE(903), 1, - sym_from_item, - STATE(985), 1, - sym_identifier, - STATE(1006), 1, - sym_function_call, - STATE(1020), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1791), 1, - aux_sym_select_limit_token1, - STATE(1338), 1, - sym_select_limit, - ACTIONS(2447), 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, - [73600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1793), 1, - aux_sym_select_offset_token1, - STATE(1338), 1, - sym_select_offset, - ACTIONS(2447), 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, - anon_sym_LPAREN, - ACTIONS(2419), 1, - sym__identifier, - STATE(1059), 1, - sym_identifier, - STATE(1102), 1, - sym_function_call, - STATE(1606), 1, - sym_from_item, - STATE(1105), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [73642] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2389), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - STATE(1547), 1, - sym_where_filter, - STATE(1862), 1, - sym_returning, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73668] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2377), 1, - aux_sym_returning_token1, - STATE(1425), 1, - sym_where_filter, - STATE(1802), 1, - sym_into, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73691] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - STATE(1387), 1, - sym_where_filter, - STATE(1877), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [73714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - aux_sym_index_col_nulls_token1, - STATE(1555), 1, - sym_index_col_dir, - STATE(1947), 1, - sym_index_col_nulls, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2451), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - [73735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_COMMA, - STATE(1295), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2455), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2459), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1285), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [73773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 1, - anon_sym_SEMI, - ACTIONS(2463), 1, - aux_sym_function_run_as_token1, - STATE(1591), 1, - sym_function_volatility, - STATE(2332), 1, - sym_function_run_as, - ACTIONS(2465), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [73794] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2467), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1278), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [73815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_COMMA, - STATE(1282), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2472), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 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, - [73845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 1, - anon_sym_COMMA, - STATE(1281), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2478), 5, - anon_sym_SEMI, - aux_sym_update_statement_token4, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [73862] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, - anon_sym_COMMA, - STATE(1282), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2483), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [73879] = 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, - [73892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 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, - [73905] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1974), 1, - sym_var_declaration, - ACTIONS(2490), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(1278), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [73926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 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, - [73939] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2496), 1, - aux_sym_grant_roles_token2, - STATE(1766), 1, - sym_identifier, - STATE(2359), 1, - sym_grant_roles, - ACTIONS(2494), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [73960] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1114), 1, - sym_identifier, - STATE(1839), 2, - sym_var_declaration, - sym__type, - [73983] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(267), 1, - aux_sym_sequence_start_token2, - ACTIONS(291), 1, - aux_sym_select_statement_token1, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2498), 1, - anon_sym_RPAREN, - STATE(1711), 1, - sym_identifier, - STATE(2117), 1, - sym_with_query, - STATE(2172), 1, - sym_select_statement, - [74008] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2502), 1, - aux_sym_returning_token1, - STATE(1438), 1, - sym_where_filter, - STATE(1858), 1, - sym_into, - ACTIONS(2500), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74031] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2351), 1, - aux_sym_where_filter_token1, - ACTIONS(2381), 1, - aux_sym_returning_token1, - STATE(1389), 1, - sym_where_filter, - STATE(1779), 1, - sym_into, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, - anon_sym_COMMA, - STATE(1292), 1, - aux_sym_update_statement_repeat1, - ACTIONS(2478), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74071] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2463), 1, - aux_sym_function_run_as_token1, - ACTIONS(2507), 1, - anon_sym_SEMI, - STATE(1762), 1, - sym_function_volatility, - STATE(2392), 1, - sym_function_run_as, - ACTIONS(2465), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [74092] = 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, - [74105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_COMMA, - STATE(1298), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2511), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74122] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 1, - aux_sym_predefined_type_token2, - STATE(1688), 1, - sym__type, - STATE(1969), 1, - sym_alter_column_type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [74145] = 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, - [74158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 1, - anon_sym_COMMA, - STATE(1298), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2162), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [74175] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 1, - aux_sym_predefined_type_token2, - STATE(1688), 1, - sym__type, - STATE(1991), 1, - sym_alter_column_type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [74198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2516), 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, - [74211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2474), 1, - anon_sym_COMMA, - STATE(1279), 1, - aux_sym_insert_items_repeat1, - ACTIONS(2518), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - aux_sym_index_col_nulls_token1, - STATE(1451), 1, - sym_index_col_dir, - STATE(1828), 1, - sym_index_col_nulls, - ACTIONS(2451), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(2520), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [74249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(818), 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, - [74262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2524), 1, - aux_sym_grant_roles_token2, - STATE(1837), 1, - sym_identifier, - ACTIONS(2522), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - [74280] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2526), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2528), 1, - aux_sym_create_index_statement_token3, - ACTIONS(2530), 1, - aux_sym_if_statement_token1, - STATE(1684), 1, - sym_if_not_exists, - STATE(2035), 1, - sym_identifier, - [74302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 1, - aux_sym_predefined_type_token2, - ACTIONS(2532), 1, - sym__identifier, - STATE(100), 1, - sym__type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [74322] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1317), 1, - sym_into, - ACTIONS(2049), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74336] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1380), 1, - sym_into, - ACTIONS(2534), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74350] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1344), 1, - sym_into, - ACTIONS(2189), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74376] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2540), 1, - aux_sym_if_statement_token1, - STATE(1390), 1, - sym_identifier, - STATE(1874), 1, - sym_if_exists, - ACTIONS(2538), 2, - aux_sym_conflict_target_token1, - aux_sym_alter_table_action_token2, - [74396] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1322), 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(1371), 1, - sym_into, - ACTIONS(1888), 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(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1342), 1, - aux_sym_returning_repeat1, - STATE(1904), 1, - sym_into, - ACTIONS(2542), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 1, - aux_sym_predefined_type_token2, - STATE(2264), 1, - sym__type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [74464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2546), 1, - aux_sym_predefined_type_token1, - ACTIONS(2548), 1, - aux_sym_predefined_type_token2, - STATE(1002), 1, - sym__type, - STATE(1016), 2, - sym_predefined_type, - sym_identifier, - [74484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 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, - [74496] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1086), 1, - sym_identifier, - STATE(1952), 1, - sym__type, - [74518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - ACTIONS(2550), 1, - sym__identifier, - STATE(434), 1, - sym__type, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [74538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1550), 1, - sym_returning, - STATE(1854), 1, - sym_into, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74558] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1348), 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, - [74572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 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, - [74584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1557), 1, - sym_returning, - STATE(1968), 1, - sym_into, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1559), 1, - sym_returning, - STATE(1985), 1, - sym_into, - ACTIONS(2554), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74624] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - STATE(1394), 1, - sym__type, - STATE(225), 2, - sym_predefined_type, - sym_identifier, - [74644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1374), 1, - aux_sym_returning_repeat1, - STATE(1978), 1, - sym_into, - ACTIONS(2556), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74664] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - ACTIONS(2558), 1, - aux_sym_trigger_exec_token1, - STATE(2117), 1, - sym_with_query, - STATE(2016), 2, - sym_execute_statement, - sym_select_statement, - [74684] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1213), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [74702] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1978), 1, - sym_into, - ACTIONS(2556), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1569), 1, - sym_returning, - STATE(1879), 1, - sym_into, - ACTIONS(2560), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74742] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1378), 1, - aux_sym_returning_repeat1, - STATE(1779), 1, - sym_into, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2562), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [74774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 1, - anon_sym_COMMA, - STATE(1333), 1, - aux_sym_with_query_repeat1, - ACTIONS(2567), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [74790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2012), 1, - aux_sym_insert_statement_token2, - STATE(1035), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [74808] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2569), 1, - aux_sym_predefined_type_token1, - ACTIONS(2571), 1, - aux_sym_predefined_type_token2, - ACTIONS(2573), 1, - sym__identifier, - STATE(651), 1, - sym__type, - STATE(562), 2, - sym_predefined_type, - sym_identifier, - [74828] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1779), 1, - sym_into, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74848] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1541), 1, - sym_returning, - STATE(1812), 1, - sym_into, - ACTIONS(2409), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2575), 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, - [74880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2581), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2583), 1, - aux_sym_update_statement_token3, - STATE(1976), 1, - sym_alter_column_action, - ACTIONS(2577), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [74900] = 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, - [74912] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1229), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [74930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1972), 1, - sym_into, - ACTIONS(2585), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [74950] = 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, - [74964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2270), 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, - [74976] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2201), 1, - aux_sym_predefined_type_token1, - ACTIONS(2203), 1, - aux_sym_predefined_type_token2, - STATE(225), 1, - sym_predefined_type, - STATE(1085), 1, - sym_identifier, - STATE(1680), 1, - sym__type, - [74998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1799), 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, - [75010] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2338), 1, - aux_sym_predefined_type_token1, - ACTIONS(2340), 1, - aux_sym_predefined_type_token2, - STATE(1394), 1, - sym__type, - STATE(19), 2, - sym_predefined_type, - sym_identifier, - [75030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1888), 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, - [75042] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1359), 1, - aux_sym_returning_repeat1, - STATE(1972), 1, - sym_into, - ACTIONS(2585), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2587), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(662), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_for_statement_token2, - anon_sym_RBRACK, - [75078] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2590), 1, - aux_sym_schema_role_token1, - ACTIONS(2592), 1, - aux_sym_if_statement_token1, - STATE(1475), 1, - sym_if_not_exists, - STATE(1623), 1, - sym_identifier, - STATE(2232), 1, - sym_schema_role, - [75100] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75114] = 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(614), 1, - sym__type, - STATE(517), 2, - sym_predefined_type, - sym_identifier, - [75134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2401), 1, - aux_sym_returning_token1, - STATE(1572), 1, - sym_returning, - STATE(1884), 1, - sym_into, - ACTIONS(2600), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - aux_sym_predefined_type_token1, - ACTIONS(2604), 1, - aux_sym_predefined_type_token2, - ACTIONS(2606), 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(2530), 1, - aux_sym_if_statement_token1, - ACTIONS(2608), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2610), 1, - aux_sym_create_index_statement_token3, - STATE(1626), 1, - sym_if_not_exists, - STATE(2210), 1, - sym_identifier, - [75196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, - aux_sym_predefined_type_token1, - ACTIONS(2614), 1, - aux_sym_predefined_type_token2, - ACTIONS(2616), 1, - sym__identifier, - STATE(486), 1, - sym__type, - STATE(286), 2, - sym_predefined_type, - sym_identifier, - [75216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2534), 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, - [75228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1928), 1, - sym_into, - ACTIONS(2618), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2620), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2622), 1, - anon_sym_COMMA, - STATE(1361), 1, - aux_sym_update_statement_repeat2, - ACTIONS(2162), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_returning_token1, - aux_sym_where_filter_token1, - [75276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1255), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2625), 1, - anon_sym_COMMA, - STATE(1381), 1, - aux_sym_with_query_repeat1, - ACTIONS(2627), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [75310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2483), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75322] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1346), 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, - [75336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2629), 1, - aux_sym_predefined_type_token1, - ACTIONS(2631), 1, - aux_sym_predefined_type_token2, - ACTIONS(2633), 1, - sym__identifier, - STATE(420), 1, - sym__type, - STATE(255), 2, - sym_predefined_type, - sym_identifier, - [75356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(25), 1, - aux_sym_sequence_start_token2, - ACTIONS(27), 1, - aux_sym_select_statement_token1, - ACTIONS(2558), 1, - aux_sym_trigger_exec_token1, - STATE(2117), 1, - sym_with_query, - STATE(2305), 2, - sym_execute_statement, - sym_select_statement, - [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(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1267), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2635), 1, - aux_sym_predefined_type_token1, - ACTIONS(2637), 1, - aux_sym_predefined_type_token2, - ACTIONS(2639), 1, - sym__identifier, - STATE(353), 1, - sym__type, - STATE(161), 2, - sym_predefined_type, - sym_identifier, - [75426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 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, - [75438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1215), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2579), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2581), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(2583), 1, - aux_sym_update_statement_token3, - STATE(1799), 1, - sym_alter_column_action, - ACTIONS(2641), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [75476] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1904), 1, - sym_into, - ACTIONS(2542), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75496] = 6, - 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(141), 1, - sym__type, - STATE(40), 2, - sym_predefined_type, - sym_identifier, - [75516] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - aux_sym_predefined_type_token1, - ACTIONS(2651), 1, - aux_sym_predefined_type_token2, - ACTIONS(2653), 1, - sym__identifier, - STATE(496), 1, - sym__type, - STATE(294), 2, - sym_predefined_type, - sym_identifier, - [75536] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1358), 1, - sym_into, - ACTIONS(2270), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [75550] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - STATE(1858), 1, - sym_into, - ACTIONS(2500), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1329), 1, - aux_sym_returning_repeat1, - STATE(1858), 1, - sym_into, - ACTIONS(2500), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75590] = 2, - 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(3), 1, - sym_comment, - ACTIONS(2625), 1, - 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, - 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, - [75638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - aux_sym_join_item_token3, - ACTIONS(1843), 1, - aux_sym_join_type_token1, - STATE(1259), 1, - sym_join_type, - ACTIONS(1845), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [75656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1336), 1, - aux_sym_returning_repeat1, - STATE(1802), 1, - sym_into, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75676] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__identifier, - ACTIONS(2665), 1, - anon_sym_RPAREN, - ACTIONS(2667), 1, - aux_sym_insert_items_token1, - STATE(1347), 1, - sym_identifier, - STATE(1525), 1, - sym_var_declaration, - [75695] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1856), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2669), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2671), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2377), 1, - aux_sym_returning_token1, - STATE(1802), 1, - sym_into, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75727] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2673), 1, - anon_sym_SEMI, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - STATE(1641), 1, - sym_index_includes, - STATE(2156), 1, - sym_where_filter, - [75746] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2502), 1, - aux_sym_returning_token1, - STATE(1858), 1, - sym_into, - ACTIONS(2500), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [75763] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1799), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2641), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2671), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [75778] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - aux_sym_for_statement_token3, - ACTIONS(2682), 1, - aux_sym_if_statement_token5, - STATE(1391), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2679), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [75795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1200), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [75814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - aux_sym_body_token1, - ACTIONS(2688), 1, - aux_sym_declarations_token1, - STATE(1971), 1, - sym_body, - STATE(1514), 2, - sym_declarations, - aux_sym_block_repeat1, - [75831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2690), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_items_token1, - anon_sym_COLON_EQ, - [75842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [75853] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - aux_sym_if_statement_token1, - ACTIONS(2187), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1777), 1, - sym_if_not_exists, - STATE(1799), 1, - sym_table_column_item, - [75872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2686), 1, - aux_sym_body_token1, - ACTIONS(2688), 1, - aux_sym_declarations_token1, - STATE(1895), 1, - sym_body, - STATE(1393), 2, - sym_declarations, - aux_sym_block_repeat1, - [75889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2694), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - ACTIONS(2108), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [75904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2697), 1, - anon_sym_SEMI, - STATE(1694), 1, - sym_index_includes, - STATE(2113), 1, - sym_where_filter, - [75923] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2164), 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] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2701), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_index_includes, - STATE(2140), 1, - sym_where_filter, - [75955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - aux_sym_constraint_when_token1, - STATE(1660), 1, - sym_constraint_when, - ACTIONS(2703), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [75970] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2526), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2530), 1, - aux_sym_if_statement_token1, - STATE(1684), 1, - sym_if_not_exists, - STATE(2035), 1, - sym_identifier, - [75989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - anon_sym_LPAREN, - ACTIONS(2705), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_SEMI, - ACTIONS(2713), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2715), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2540), 1, - aux_sym_if_statement_token1, - STATE(1419), 1, - sym_identifier, - STATE(1520), 1, - sym_drop_function_item, - STATE(1899), 1, - sym_if_exists, - [76049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2717), 1, - anon_sym_SEMI, - STATE(1670), 1, - sym_index_includes, - STATE(2061), 1, - sym_where_filter, - [76068] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, - anon_sym_SEMI, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2721), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76085] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1190), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76104] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, - anon_sym_SEMI, - STATE(1418), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2721), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76121] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2684), 1, - sym__identifier, - ACTIONS(2723), 1, - anon_sym_SEMI, - STATE(1882), 1, - sym_identifier, - STATE(1883), 1, - sym_string, - [76140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1188), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76170] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2269), 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, - [76183] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2727), 1, - anon_sym_SEMI, - STATE(1585), 1, - sym_index_includes, - STATE(2381), 1, - sym_where_filter, - [76202] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1976), 1, - sym_alter_table_fk_ref_action, - ACTIONS(2577), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(2671), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76217] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(2729), 1, - anon_sym_SEMI, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2731), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, - anon_sym_LPAREN, - ACTIONS(2733), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2713), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(1406), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2739), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76264] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2518), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2743), 1, - anon_sym_COMMA, - STATE(1422), 1, - aux_sym_drop_function_statement_repeat1, - ACTIONS(2741), 3, - anon_sym_SEMI, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76290] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - STATE(2138), 1, - sym_identifier, - STATE(2280), 1, - sym_function_call, - ACTIONS(2746), 2, - aux_sym_drop_function_statement_token1, - aux_sym_grant_targets_token6, - [76307] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(2748), 1, - anon_sym_SEMI, - STATE(1409), 1, - aux_sym_drop_type_statement_repeat1, - ACTIONS(2750), 2, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [76324] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2381), 1, - aux_sym_returning_token1, - STATE(1779), 1, - sym_into, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1035), 1, - sym_identifier, - ACTIONS(2010), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [76356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2540), 1, - aux_sym_if_statement_token1, - STATE(1419), 1, - sym_identifier, - STATE(1420), 1, - sym_drop_function_item, - STATE(1899), 1, - sym_if_exists, - [76375] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - aux_sym_for_statement_token3, - ACTIONS(2756), 1, - aux_sym_if_statement_token5, - STATE(1391), 1, - aux_sym_if_statement_repeat1, - ACTIONS(2754), 2, - aux_sym_if_statement_token3, - aux_sym_if_statement_token4, - [76392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2567), 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(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1297), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76422] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1297), 1, - sym_update_set, - STATE(2068), 1, - sym__list_of_identifiers, - STATE(2271), 1, - sym_identifier, - [76441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1221), 1, - sym_update_set, - STATE(2068), 1, - sym__list_of_identifiers, - STATE(2271), 1, - sym_identifier, - [76460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1397), 1, - sym_dollar_quote, - STATE(2147), 2, - sym_block, - sym_string, - [76477] = 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, - [76488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2530), 1, - aux_sym_if_statement_token1, - ACTIONS(2762), 1, - aux_sym_insert_conflict_token1, - STATE(1724), 1, - sym_if_not_exists, - STATE(2152), 1, - sym_identifier, - [76507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2764), 1, - anon_sym_SEMI, - STATE(1705), 1, - sym_index_includes, - STATE(2064), 1, - sym_where_filter, - [76526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2472), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_returning_token1, - [76537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2766), 1, - aux_sym_returning_token1, - STATE(1978), 1, - sym_into, - ACTIONS(2556), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76554] = 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, - [76571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1202), 1, - sym_update_set, - STATE(2066), 1, - sym_identifier, - STATE(2068), 1, - sym__list_of_identifiers, - [76590] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2675), 1, - aux_sym_index_includes_token1, - ACTIONS(2774), 1, - anon_sym_SEMI, - STATE(1755), 1, - sym_index_includes, - STATE(2295), 1, - sym_where_filter, - [76609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1397), 1, - sym_dollar_quote, - STATE(2196), 2, - sym_block, - sym_string, - [76626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - ACTIONS(2347), 1, - aux_sym_returning_token1, - STATE(1877), 1, - sym_into, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [76643] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2776), 1, - aux_sym_conflict_target_token1, - ACTIONS(2778), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2780), 1, - aux_sym_alter_table_rename_column_token2, - STATE(2209), 1, - sym_identifier, - [76662] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 1, - aux_sym_create_index_statement_token1, - ACTIONS(2784), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(2786), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(2788), 1, - aux_sym_table_constraint_ty_token4, - STATE(1402), 1, - sym_table_constraint_ty, - [76681] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - aux_sym_constraint_when_token1, - STATE(1756), 1, - sym_constraint_when, - ACTIONS(2790), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [76696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 5, - anon_sym_COMMA, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [76707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_COMMA, - STATE(1398), 1, - aux_sym_returning_repeat1, - ACTIONS(2794), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_insert_statement_token2, - [76722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 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(2453), 1, - aux_sym_index_col_nulls_token1, - STATE(1824), 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(1597), 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(2540), 1, - aux_sym_if_statement_token1, - STATE(1424), 1, - sym_identifier, - STATE(1825), 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(2185), 1, - aux_sym_if_statement_token1, - STATE(1842), 1, - sym_if_not_exists, - STATE(2242), 1, - sym_identifier, - [76845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2185), 1, - aux_sym_if_statement_token1, - STATE(954), 1, - sym_identifier, - STATE(1865), 1, - sym_if_not_exists, - [76861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2540), 1, - aux_sym_if_statement_token1, - STATE(1155), 1, - sym_identifier, - STATE(1897), 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(1886), 1, - aux_sym_insert_statement_token2, - STATE(1346), 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(1990), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - STATE(2054), 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(1994), 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(1994), 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(2002), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77101] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2590), 1, - aux_sym_schema_role_token1, - STATE(1683), 1, - sym_identifier, - STATE(2042), 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] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2863), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77159] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1400), 1, - sym_trigger_when, - ACTIONS(2865), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [77171] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2867), 1, - anon_sym_SQUOTE, - STATE(1478), 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(2185), 1, - aux_sym_if_statement_token1, - STATE(1989), 1, - sym_if_not_exists, - STATE(2055), 1, - sym_identifier, - [77201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2185), 1, - aux_sym_if_statement_token1, - STATE(943), 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(2084), 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(1886), 1, - aux_sym_insert_statement_token2, - STATE(1368), 1, - sym_into, - ACTIONS(1799), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1909), 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(2441), 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] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1415), 1, - sym_trigger_when, - ACTIONS(2865), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [77487] = 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, - [77501] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2920), 1, - anon_sym_SQUOTE, - STATE(1503), 1, - aux_sym_string_repeat1, - ACTIONS(2922), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1380), 1, - sym_into, - ACTIONS(2534), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77529] = 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, - [77543] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2926), 1, - anon_sym_SQUOTE, - STATE(1506), 1, - aux_sym_string_repeat1, - ACTIONS(2928), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym__identifier, - ACTIONS(2185), 1, - aux_sym_if_statement_token1, - STATE(1894), 1, - sym_if_not_exists, - STATE(2165), 1, - sym_identifier, - [77573] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2930), 1, - anon_sym_SQUOTE, - STATE(1518), 1, - aux_sym_string_repeat1, - ACTIONS(2829), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77587] = 4, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(2932), 1, - anon_sym_SQUOTE, - STATE(1509), 1, - aux_sym_string_repeat1, - ACTIONS(2934), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [77601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [77611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2938), 1, - anon_sym_COMMA, - STATE(1512), 1, - aux_sym_returning_repeat1, - ACTIONS(2108), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 4, - aux_sym_update_statement_token1, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [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(1809), 1, - anon_sym_LPAREN, - ACTIONS(2954), 1, - sym__identifier, - STATE(880), 1, - sym_identifier, - STATE(898), 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(1886), 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(2741), 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(1953), 1, - sym_returning, - ACTIONS(2429), 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(2371), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [77769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1358), 1, - sym_into, - ACTIONS(2270), 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(1274), 1, - sym_identifier, - STATE(1772), 1, - sym_index_col, - [77815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1812), 1, - sym_into, - ACTIONS(2409), 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(2172), 1, - sym_select_statement, - [77845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2540), 1, - aux_sym_if_statement_token1, - STATE(1417), 1, - sym_identifier, - STATE(1801), 1, - sym_if_exists, - [77861] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2275), 1, - aux_sym_drop_type_statement_token1, - ACTIONS(2279), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(2281), 1, - aux_sym_alter_table_action_token1, - STATE(1792), 1, - sym_alter_table_action, - [77877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1348), 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(2383), 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(1274), 1, - sym_identifier, - STATE(1722), 1, - sym_index_col, - [77971] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1274), 1, - sym_identifier, - STATE(1695), 1, - sym_index_col, - [77987] = 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, - [77997] = 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(2039), 1, - sym_conflict_target, - [78013] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1968), 1, - sym_into, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1985), 1, - sym_into, - ACTIONS(2554), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(890), 1, - aux_sym_index_using_token1, - STATE(1992), 1, - sym_execute_using, - ACTIONS(2991), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [78055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1371), 1, - sym_into, - ACTIONS(1888), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1945), 1, - sym_returning, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78083] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - STATE(1512), 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(2425), 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(1277), 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(1886), 1, - aux_sym_insert_statement_token2, - STATE(1929), 1, - sym_into, - 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(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1344), 1, - sym_into, - ACTIONS(2189), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1274), 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(1274), 1, - sym_identifier, - STATE(1988), 1, - sym_index_col, - [78209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - aux_sym_index_col_nulls_token1, - STATE(1908), 1, - sym_index_col_nulls, - ACTIONS(3002), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [78223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3004), 4, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [78233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1884), 1, - sym_into, - ACTIONS(2600), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78247] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1879), 1, - sym_into, - ACTIONS(2560), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78261] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1875), 1, - sym_into, - ACTIONS(3006), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1322), 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, - anon_sym_COMMA, - aux_sym_drop_type_statement_token3, - aux_sym_drop_type_statement_token4, - [78299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1816), 1, - sym_returning, - ACTIONS(2363), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78313] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [78323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1274), 1, - sym_identifier, - STATE(1582), 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(2435), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2437), 1, - aux_sym_trigger_cond_token1, - STATE(1787), 1, - sym_trigger_cond, - STATE(2366), 1, - sym_trigger_exec, - [78365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - ACTIONS(2954), 1, - sym__identifier, - STATE(1293), 2, - sym_string, - sym_identifier, - [78379] = 2, - ACTIONS(3), 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(1886), 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(954), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(3018), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [78417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1317), 1, - sym_into, - ACTIONS(2049), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1863), 1, - sym_into, - ACTIONS(3020), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 1, - aux_sym_insert_statement_token2, - STATE(1854), 1, - sym_into, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - aux_sym_returning_token1, - STATE(1862), 1, - sym_returning, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [78473] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - ACTIONS(2437), 1, - aux_sym_trigger_cond_token1, - STATE(1811), 1, - sym_trigger_cond, - STATE(2296), 1, - sym_trigger_exec, - [78489] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - anon_sym_LPAREN, - ACTIONS(2971), 1, - sym__identifier, - STATE(1274), 1, - sym_identifier, - STATE(1754), 1, - sym_index_col, - [78505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(1397), 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(1601), 1, - sym_identifier, - [78568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RPAREN, - STATE(1764), 1, - aux_sym_create_index_statement_repeat1, - [78581] = 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, - [78594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(2534), 1, - aux_sym_for_statement_token2, - STATE(1380), 1, - sym_into, - [78607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2774), 1, - anon_sym_SEMI, - STATE(2295), 1, - sym_where_filter, - [78620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1888), 1, - aux_sym_for_statement_token2, - STATE(1371), 1, - sym_into, - [78633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(2189), 1, - aux_sym_for_statement_token2, - STATE(1344), 1, - sym_into, - [78646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1832), 1, - sym_function_signature, - STATE(1838), 1, - sym_identifier, - [78659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1833), 1, - aux_sym_for_statement_token2, - STATE(1348), 1, - sym_into, - [78672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(2049), 1, - aux_sym_for_statement_token2, - STATE(1317), 1, - sym_into, - [78685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2463), 1, - aux_sym_function_run_as_token1, - ACTIONS(2507), 1, - anon_sym_SEMI, - STATE(2392), 1, - sym_function_run_as, - [78698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3036), 3, - aux_sym_create_table_statement_token1, - aux_sym_grant_targets_token5, - sym_unlogged, - [78707] = 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, - [78720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - ACTIONS(3044), 1, - anon_sym_DOLLAR, - STATE(2167), 1, - sym_identifier, - [78733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1978), 1, - aux_sym_for_statement_token2, - STATE(1322), 1, - sym_into, - [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(1992), 1, - anon_sym_COMMA, - ACTIONS(3051), 1, - aux_sym_insert_conflict_token1, - STATE(1642), 1, - aux_sym_drop_type_statement_repeat1, - [78772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3055), 1, - aux_sym_index_using_token1, - STATE(903), 1, - sym_join_condition, - [78785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_COMMA, - ACTIONS(3059), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_update_set_repeat1, - [78798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 1, - anon_sym_COMMA, - ACTIONS(3064), 1, - anon_sym_RPAREN, - STATE(1600), 1, - aux_sym_update_set_repeat1, - [78811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(3066), 1, - aux_sym_update_statement_token2, - STATE(2019), 1, - sym__list_of_identifiers, - [78824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3068), 1, - aux_sym_into_token1, - STATE(987), 1, - sym_identifier, - [78837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1801), 1, - aux_sym_for_statement_token2, - STATE(1340), 1, - sym_into, - [78850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 1, - aux_sym_grant_targets_token4, - ACTIONS(3070), 1, - anon_sym_COMMA, - STATE(1604), 1, - aux_sym_drop_type_statement_repeat1, - [78863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2138), 1, - sym_identifier, - STATE(2258), 1, - sym_function_call, - [78876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 1, - aux_sym_index_using_token1, - ACTIONS(3073), 1, - aux_sym_insert_conflict_token1, - STATE(903), 1, - sym_join_condition, - [78889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(954), 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(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(1799), 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(954), 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(888), 1, - aux_sym_insert_statement_token2, - STATE(1346), 1, - sym_into, - [78980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(1721), 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(1717), 1, - aux_sym_grant_function_repeat1, - [79019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(954), 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(293), 1, - sym__identifier, - ACTIONS(3100), 1, - aux_sym_into_token1, - STATE(1474), 1, - sym_identifier, - [79058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3102), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79093] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - anon_sym_SEMI, - ACTIONS(3110), 1, - aux_sym_schema_role_token1, - STATE(2042), 1, - sym_schema_role, - [79106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3112), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79119] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - anon_sym_COMMA, - ACTIONS(3116), 1, - anon_sym_RPAREN, - STATE(1630), 1, - aux_sym_create_table_statement_repeat1, - [79132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2526), 1, - aux_sym_insert_conflict_token1, - STATE(2035), 1, - sym_identifier, - [79145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(954), 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(3114), 1, - anon_sym_COMMA, - ACTIONS(3124), 1, - anon_sym_RPAREN, - STATE(1729), 1, - aux_sym_create_table_statement_repeat1, - [79193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(2684), 1, - sym__identifier, - STATE(1838), 1, - sym_identifier, - STATE(1984), 1, - sym_function_signature, - [79219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(954), 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(954), 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(2209), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1640), 1, - aux_sym_create_table_statement_repeat1, - [79293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - anon_sym_COMMA, - ACTIONS(3116), 1, - anon_sym_RPAREN, - STATE(1729), 1, - aux_sym_create_table_statement_repeat1, - [79319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(3143), 1, - anon_sym_SEMI, - STATE(2245), 1, - sym_where_filter, - [79332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(3145), 1, - aux_sym_insert_conflict_token1, - STATE(936), 1, - aux_sym_drop_type_statement_repeat1, - [79345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79358] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 1, - aux_sym_trigger_scope_token2, - ACTIONS(3151), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [79378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1429), 1, - sym_with_query_item, - STATE(1601), 1, - sym_identifier, - [79404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3157), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_COMMA, - ACTIONS(3162), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [79430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3166), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3168), 1, - aux_sym_with_query_item_token1, - [79443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2727), 1, - anon_sym_SEMI, - STATE(2381), 1, - sym_where_filter, - [79456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2498), 1, - anon_sym_RPAREN, - ACTIONS(2684), 1, - sym__identifier, - STATE(1711), 1, - sym_identifier, - [79469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 1, - anon_sym_LPAREN, - ACTIONS(3174), 1, - aux_sym_index_using_token1, - STATE(2389), 1, - sym_index_using, - [79495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3178), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_RPAREN, - STATE(1583), 1, - aux_sym_create_index_statement_repeat1, - [79530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [79543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3182), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3184), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [79565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 1, - anon_sym_COMMA, - ACTIONS(3192), 1, - anon_sym_RPAREN, - STATE(1696), 1, - aux_sym_create_type_statement_repeat2, - [79600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3194), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3196), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_create_type_statement_repeat1, - [79626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79639] = 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, - [79652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 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(3057), 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(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2697), 1, - anon_sym_SEMI, - STATE(2113), 1, - sym_where_filter, - [79691] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3206), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79704] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3208), 1, - anon_sym_SEMI, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3214), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_SEMI, - STATE(1610), 1, - aux_sym_grant_roles_repeat1, - [79778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_SEMI, - STATE(1611), 1, - aux_sym_grant_roles_repeat1, - [79791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3220), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, - STATE(1616), 1, - aux_sym_grant_function_repeat1, - [79813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3224), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3226), 1, - anon_sym_COMMA, - ACTIONS(3229), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1682), 1, - aux_sym_grant_targets_repeat1, - [79839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 1, - aux_sym_schema_role_token1, - ACTIONS(3231), 1, - anon_sym_SEMI, - STATE(2145), 1, - sym_schema_role, - [79852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(2762), 1, - aux_sym_insert_conflict_token1, - STATE(2152), 1, - sym_identifier, - [79865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - aux_sym_index_using_token1, - ACTIONS(3235), 1, - anon_sym_LPAREN, - STATE(2157), 1, - sym_index_using, - [79891] = 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, - [79904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 1, - aux_sym_index_using_token1, - ACTIONS(3243), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [79915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3247), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [79937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3251), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [79950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3253), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [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(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2673), 1, - anon_sym_SEMI, - STATE(2156), 1, - sym_where_filter, - [79985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RPAREN, - STATE(1667), 1, - aux_sym_create_index_statement_repeat1, - [79998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2996), 1, - anon_sym_RPAREN, - ACTIONS(3259), 1, - anon_sym_COMMA, - STATE(1696), 1, - aux_sym_create_type_statement_repeat2, - [80011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1739), 1, - sym_var_declaration, - [80024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 3, - aux_sym__interval_fields_token4, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [80046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3268), 1, - anon_sym_RBRACK, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [80072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80085] = 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, - [80098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_SEMI, - ACTIONS(3276), 1, - anon_sym_COMMA, - STATE(1734), 1, - aux_sym_alter_table_change_repeat1, - [80111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2717), 1, - anon_sym_SEMI, - STATE(2061), 1, - sym_where_filter, - [80124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1735), 1, - sym_grant_function, - STATE(1999), 1, - sym_identifier, - [80137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3280), 1, - anon_sym_RPAREN, - STATE(1636), 1, - aux_sym_insert_values_repeat1, - [80150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 3, - aux_sym_grant_targets_token1, - aux_sym_grant_targets_token2, - aux_sym_grant_targets_token3, - [80159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(3284), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1737), 1, - aux_sym_drop_type_statement_repeat1, - [80172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3286), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3288), 1, - aux_sym_trigger_event_token2, - STATE(1710), 1, - aux_sym_trigger_event_repeat1, - [80185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - ACTIONS(3291), 1, - anon_sym_RPAREN, - STATE(1738), 1, - aux_sym_drop_type_statement_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(954), 1, - anon_sym_COMMA, - ACTIONS(1006), 1, - anon_sym_SEMI, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80224] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 1, - aux_sym_insert_statement_token2, - ACTIONS(2270), 1, - aux_sym_for_statement_token2, - STATE(1358), 1, - sym_into, - [80237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3299), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_index_col_nulls_token1, - [80246] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_RPAREN, - STATE(1649), 1, - aux_sym_create_index_statement_repeat1, - [80259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 1, - anon_sym_COMMA, - ACTIONS(3306), 1, - anon_sym_RPAREN, - STATE(1717), 1, - aux_sym_grant_function_repeat1, - [80272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2415), 1, - anon_sym_RPAREN, - ACTIONS(3308), 1, - anon_sym_COMMA, - STATE(1753), 1, - aux_sym_drop_function_item_repeat1, - [80285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - aux_sym_index_using_token1, - ACTIONS(3310), 1, - anon_sym_LPAREN, - STATE(2127), 1, - sym_index_using, - [80298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2238), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1759), 1, - aux_sym_create_table_statement_repeat1, - [80311] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_COMMA, - ACTIONS(3312), 1, - anon_sym_RPAREN, - STATE(1717), 1, - aux_sym_grant_function_repeat1, - [80324] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_RPAREN, - STATE(1658), 1, - aux_sym_create_index_statement_repeat1, - [80337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - aux_sym_index_using_token1, - ACTIONS(3314), 1, - anon_sym_LPAREN, - STATE(2281), 1, - sym_index_using, - [80350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3316), 1, - aux_sym_insert_conflict_token1, - STATE(2285), 1, - sym_identifier, - [80363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__identifier, - ACTIONS(3318), 1, - aux_sym_sequence_owned_token2, - STATE(1163), 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(1763), 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(2684), 1, - sym__identifier, - STATE(1975), 1, - sym_identifier, - STATE(2301), 1, - sym_assign_statement, - [80415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - anon_sym_COMMA, - ACTIONS(3331), 1, - anon_sym_RPAREN, - STATE(1729), 1, - aux_sym_create_table_statement_repeat1, - [80428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1775), 1, - sym_var_declaration, - [80441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 3, - aux_sym_body_token1, - aux_sym_declarations_token1, - sym__identifier, - [80450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1799), 1, - sym_table_column_item, - [80463] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1729), 1, - aux_sym_create_table_statement_repeat1, - [80476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3276), 1, - anon_sym_COMMA, - ACTIONS(3335), 1, - anon_sym_SEMI, - STATE(1771), 1, - aux_sym_alter_table_change_repeat1, - [80489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3337), 1, - anon_sym_COMMA, - ACTIONS(3339), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1769), 1, - aux_sym_grant_targets_repeat1, - [80502] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 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(1992), 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(901), 1, - sym_identifier, - [80563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3055), 1, - aux_sym_index_using_token1, - ACTIONS(3345), 1, - aux_sym_insert_conflict_token1, - STATE(903), 1, - sym_join_condition, - [80576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 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(3196), 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(3190), 1, - anon_sym_COMMA, - ACTIONS(3349), 1, - anon_sym_RPAREN, - STATE(1696), 1, - aux_sym_create_type_statement_repeat2, - [80615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - ACTIONS(3351), 1, - anon_sym_SEMI, - STATE(1761), 1, - aux_sym_returning_repeat1, - [80628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - anon_sym_COMMA, - ACTIONS(3353), 1, - anon_sym_RPAREN, - STATE(1669), 1, - aux_sym_update_set_repeat1, - [80641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 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(954), 1, - anon_sym_COMMA, - ACTIONS(3359), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80676] = 4, - ACTIONS(3), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3308), 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(3308), 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(3308), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RPAREN, - STATE(1750), 1, - aux_sym_drop_function_item_repeat1, - [80728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3370), 1, - anon_sym_RPAREN, - STATE(1701), 1, - aux_sym_create_index_statement_repeat1, - [80741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2361), 1, - aux_sym_where_filter_token1, - ACTIONS(2764), 1, - anon_sym_SEMI, - STATE(2064), 1, - sym_where_filter, - [80754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [80763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - anon_sym_COMMA, - ACTIONS(3374), 1, - anon_sym_RPAREN, - STATE(1707), 1, - aux_sym_insert_values_repeat1, - [80776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RPAREN, - STATE(1350), 1, - aux_sym_conflict_target_repeat1, - [80789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2253), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1729), 1, - aux_sym_create_table_statement_repeat1, - [80802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - sym__identifier, - STATE(1325), 1, - sym_identifier, - STATE(1742), 1, - sym_var_declaration, - [80815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 1, - anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_SEMI, - STATE(1512), 1, - aux_sym_returning_repeat1, - [80828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2463), 1, - aux_sym_function_run_as_token1, - ACTIONS(3380), 1, - anon_sym_SEMI, - STATE(2011), 1, - sym_function_run_as, - [80841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3322), 1, - aux_sym_trigger_event_token2, - ACTIONS(3382), 1, - aux_sym_insert_conflict_token1, - STATE(1710), 1, - aux_sym_trigger_event_repeat1, - [80854] = 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, - [80867] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1975), 1, - sym_identifier, - STATE(2057), 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(3262), 1, - sym__identifier, - STATE(1347), 1, - sym_identifier, - STATE(1739), 1, - sym_var_declaration, - [80906] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - anon_sym_COMMA, - ACTIONS(3386), 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(3386), 1, - aux_sym_alter_table_rename_column_token2, - STATE(1682), 1, - aux_sym_grant_targets_repeat1, - [80932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1963), 1, - sym_grant_function, - STATE(1999), 1, - sym_identifier, - [80945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_SEMI, - ACTIONS(3390), 1, - anon_sym_COMMA, - STATE(1771), 1, - aux_sym_alter_table_change_repeat1, - [80958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - ACTIONS(3393), 1, - anon_sym_RPAREN, - STATE(1716), 1, - aux_sym_create_index_statement_repeat1, - [80971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3324), 1, - anon_sym_COMMA, - ACTIONS(3395), 1, - aux_sym_grant_targets_token4, - STATE(1604), 1, - aux_sym_drop_type_statement_repeat1, - [80984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2253), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_COMMA, - STATE(1733), 1, - aux_sym_create_table_statement_repeat1, - [80997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 1, - anon_sym_COMMA, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1744), 1, - aux_sym_create_type_statement_repeat2, - [81010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - aux_sym_index_using_token1, - ACTIONS(3399), 1, - anon_sym_LPAREN, - STATE(2115), 1, - sym_index_using, - [81023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3262), 1, - sym__identifier, - STATE(1316), 1, - sym_identifier, - STATE(1976), 1, - sym_table_column_item, - [81036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1686), 1, - sym_identifier, - [81046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 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] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, - anon_sym_STAR, - STATE(317), 1, - sym_star, - [81084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 2, - aux_sym_update_statement_token1, - aux_sym_delete_statement_token1, - [81092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 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] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - STATE(2296), 1, - sym_trigger_exec, - [81130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1830), 1, - sym_identifier, - [81140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [81148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1677), 1, - sym_identifier, - [81158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1479), 1, - sym_identifier, - [81168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2041), 1, - sym_identifier, - [81186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 2, - anon_sym_SEMI, - aux_sym_function_run_as_token1, - [81194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 2, - aux_sym_function_run_as_token2, - aux_sym_function_run_as_token3, - [81202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1156), 1, - sym_identifier, - [81212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3026), 1, - aux_sym_alter_column_action_token1, - ACTIONS(3415), 1, - aux_sym_insert_items_token1, - [81222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - sym__identifier, - STATE(1108), 1, - sym_identifier, - [81232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2577), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3419), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1386), 1, - sym_identifier, - [81258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3051), 1, - aux_sym_insert_conflict_token1, - ACTIONS(3421), 1, - aux_sym_grant_privileges_token2, - [81276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 1, - anon_sym_SEMI, - ACTIONS(3423), 1, - anon_sym_COMMA, - [81294] = 3, - ACTIONS(29), 1, - aux_sym_psql_statement_token1, + sym_keyword_table, ACTIONS(31), 1, + aux_sym_keyword_temporary_token1, + ACTIONS(33), 1, + aux_sym_keyword_temporary_token2, + ACTIONS(35), 1, + sym_keyword_unlogged, + STATE(35), 1, + sym_keyword_temporary, + STATE(6), 2, + sym_comment, + sym_marginalia, + [152] = 8, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, sym__identifier, - ACTIONS(2819), 1, - sym_comment, - [81304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3064), 2, - anon_sym_COMMA, + ACTIONS(39), 1, anon_sym_RPAREN, - [81312] = 2, - ACTIONS(3), 1, + STATE(15), 1, + sym_column_definition, + STATE(21), 1, + sym_identifier, + STATE(7), 2, sym_comment, - ACTIONS(2991), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [81320] = 2, + sym_marginalia, + [178] = 7, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, + sym__identifier, + STATE(23), 1, + sym_table_reference, + STATE(25), 1, + sym_identifier, + STATE(8), 2, sym_comment, - ACTIONS(2554), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81328] = 3, + sym_marginalia, + [201] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(9), 2, sym_comment, - ACTIONS(1467), 1, - anon_sym_STAR, - STATE(435), 1, - sym_star, - [81338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - STATE(2100), 1, - sym_trigger_exec, - [81348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2405), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [81364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 1, + sym_marginalia, + ACTIONS(41), 4, + anon_sym_DOT, anon_sym_LPAREN, - STATE(1364), 1, - sym_insert_values, - [81374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1074), 2, anon_sym_COMMA, anon_sym_RPAREN, - [81382] = 2, + [218] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, sym__identifier, - STATE(1243), 1, + STATE(22), 1, + sym_table_reference, + STATE(25), 1, sym_identifier, - [81400] = 2, - ACTIONS(3), 1, + STATE(10), 2, sym_comment, - ACTIONS(2552), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81408] = 3, + sym_marginalia, + [241] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3429), 1, - anon_sym_SQUOTE, - STATE(131), 1, - sym_string, - [81418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, sym__identifier, - STATE(1719), 1, + STATE(21), 1, sym_identifier, - [81428] = 3, - ACTIONS(3), 1, + STATE(26), 1, + sym_column_definition, + STATE(11), 2, sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1498), 1, - sym_identifier, - [81438] = 3, + sym_marginalia, + [264] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(12), 2, sym_comment, - ACTIONS(1809), 1, + sym_marginalia, + ACTIONS(43), 4, + anon_sym_DOT, anon_sym_LPAREN, - STATE(1881), 1, - sym__list_of_identifiers, - [81448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym__list_of_identifiers, - [81458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3431), 2, anon_sym_COMMA, anon_sym_RPAREN, - [81466] = 3, + [281] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1411), 1, - sym_identifier, - [81476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3433), 1, - aux_sym_drop_type_statement_token2, - ACTIONS(3435), 1, - aux_sym_drop_function_statement_token1, - [81486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3437), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [81494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 2, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(45), 1, anon_sym_COMMA, + ACTIONS(47), 1, anon_sym_RPAREN, - [81502] = 3, - ACTIONS(3), 1, + STATE(14), 1, + aux_sym_column_definitions_repeat1, + STATE(13), 2, sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2070), 1, - sym_identifier, - [81512] = 3, + sym_marginalia, + [301] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(3439), 1, - anon_sym_SEMI, - ACTIONS(3441), 1, - aux_sym_update_statement_token2, - [81522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_SQUOTE, - STATE(1743), 1, - sym_string, - [81532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - aux_sym_function_return_token1, - STATE(2063), 1, - sym_function_return, - [81542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3445), 2, - aux_sym_insert_conflict_token1, - sym__identifier, - [81550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3447), 2, - anon_sym_SEMI, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(49), 1, anon_sym_COMMA, - [81566] = 3, - ACTIONS(3), 1, + ACTIONS(52), 1, + anon_sym_RPAREN, + STATE(14), 3, sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1835), 1, - sym_identifier, - [81576] = 2, + sym_marginalia, + aux_sym_column_definitions_repeat1, + [319] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(3083), 2, - anon_sym_SEMI, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(45), 1, anon_sym_COMMA, - [81584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(2062), 1, - sym_function_parameters, - [81594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [81602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1502), 1, - sym_identifier, - [81612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3451), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [81620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2055), 1, - sym_identifier, - [81630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3445), 2, - aux_sym_schema_role_token1, - sym__identifier, - [81638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1924), 2, - anon_sym_COMMA, - aux_sym_grant_targets_token4, - [81646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3357), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1160), 1, - anon_sym_STAR, - STATE(109), 1, - sym_star, - [81672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(1471), 1, - sym_identifier, - [81682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3453), 1, - anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_RPAREN, - [81692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(955), 1, - sym_identifier, - [81702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1076), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [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(3457), 2, - anon_sym_LPAREN, - sym__identifier, - [81728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2998), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_COMMA, - ACTIONS(3461), 1, - anon_sym_RPAREN, - [81746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2556), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(908), 1, - anon_sym_STAR, - STATE(455), 1, - sym_star, - [81780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 1, - anon_sym_STAR, - STATE(615), 1, - sym_star, - [81790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3465), 2, - anon_sym_SEMI, - aux_sym_where_filter_token1, - [81798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2425), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1256), 1, - sym_identifier, - [81824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(943), 1, - sym_identifier, - [81834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1437), 1, - anon_sym_SQUOTE, - STATE(74), 1, - sym_string, - [81844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2331), 1, - sym_identifier, - [81854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2326), 1, - sym_identifier, - [81864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2319), 1, - sym_identifier, - [81874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3469), 1, - anon_sym_COMMA, - ACTIONS(3471), 1, - anon_sym_RPAREN, - [81884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [81892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1339), 1, - sym_identifier, - [81902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2317), 1, - sym_identifier, - [81912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1417), 1, - sym_identifier, - [81922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [81938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3475), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [81954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3016), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [81962] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3477), 1, - anon_sym_SEMI, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - [81972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 1, - aux_sym_constraint_foreign_key_token1, - STATE(1563), 1, - sym_constraint_foreign_key, - [81982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_SQUOTE, - STATE(1805), 1, - sym_string, - [81992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3481), 1, - anon_sym_SEMI, - ACTIONS(3483), 1, - anon_sym_COMMA, - [82002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82010] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3485), 1, - aux_sym_update_statement_token1, - ACTIONS(3487), 1, - aux_sym_insert_conflict_token4, - [82028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 1, - anon_sym_SQUOTE, - STATE(124), 1, - sym_string, - [82038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 2, - aux_sym_constraint_when_token3, - aux_sym_constraint_when_token4, - [82046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 1, - anon_sym_COMMA, - ACTIONS(3493), 1, - anon_sym_RPAREN, - [82056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2409), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2187), 1, - sym_identifier, - [82074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2294), 1, - sym_identifier, - [82100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1973), 1, - sym_dollar_quote, - [82110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2435), 1, - aux_sym_trigger_exec_token1, - STATE(2366), 1, - sym_trigger_exec, - [82120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1141), 1, - sym_identifier, - [82130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1209), 1, - sym_identifier, - [82140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1404), 1, - sym_identifier, - [82150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(955), 1, - sym_identifier, - [82160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3495), 1, - anon_sym_SQUOTE, - STATE(170), 1, - sym_string, - [82170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, - anon_sym_COMMA, - ACTIONS(3499), 1, - anon_sym_RPAREN, - [82180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2292), 1, - sym_identifier, - [82190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2585), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3501), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [82214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1776), 1, - sym_identifier, - [82224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3503), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(967), 1, - sym_identifier, - [82258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(1861), 1, - sym__list_of_identifiers, - [82276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - anon_sym_SQUOTE, - STATE(5), 1, - sym_string, - [82286] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_LPAREN, - STATE(1536), 1, - sym__list_of_identifiers, - [82296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - sym__identifier, - STATE(1445), 1, - sym_identifier, - [82306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_STAR, - STATE(453), 1, - sym_star, - [82316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 1, - anon_sym_COMMA, - ACTIONS(3511), 1, - anon_sym_RPAREN, - [82326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1341), 1, - anon_sym_STAR, - STATE(636), 1, - sym_star, - [82352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(983), 1, - sym_identifier, - [82370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2188), 1, - sym_identifier, - [82380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 1, - anon_sym_LPAREN, - ACTIONS(3519), 1, - aux_sym_update_set_token1, - [82390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [82398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3525), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [82430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2429), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_SQUOTE, - STATE(424), 1, - sym_string, - [82448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2255), 1, - sym_identifier, - [82458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 1, - anon_sym_COMMA, - ACTIONS(3533), 1, - anon_sym_RPAREN, - [82468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3188), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_SQUOTE, - STATE(1804), 1, - sym_string, - [82486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 2, - aux_sym_insert_items_token1, - aux_sym_alter_column_action_token2, - [82494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, - anon_sym_STAR, - STATE(404), 1, - sym_star, - [82504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1654), 1, - sym_identifier, - [82514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1119), 1, - sym_identifier, - [82524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - aux_sym_join_item_token3, - ACTIONS(3539), 1, - aux_sym_join_type_token3, - [82534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - sym__identifier, - STATE(1093), 1, - sym_identifier, - [82544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 2, - anon_sym_LPAREN, - sym__identifier, - [82552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_SQUOTE, - STATE(482), 1, - sym_string, - [82562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2363), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3545), 2, - aux_sym_index_col_nulls_token2, - aux_sym_index_col_nulls_token3, - [82578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3002), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 1, - anon_sym_COMMA, - ACTIONS(3549), 1, - anon_sym_RPAREN, - [82596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3286), 2, - aux_sym_insert_conflict_token1, - aux_sym_trigger_event_token2, - [82612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, - aux_sym_create_type_statement_token2, - [82622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2902), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_SQUOTE, - STATE(7), 1, - sym_string, - [82648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1736), 1, - sym_identifier, - [82658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym__identifier, - STATE(1844), 1, - sym_identifier, - [82668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3557), 1, - anon_sym_SQUOTE, - STATE(59), 1, - sym_string, - [82678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, - anon_sym_STAR, - STATE(350), 1, - sym_star, - [82688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3559), 1, - anon_sym_COMMA, - ACTIONS(3561), 1, - anon_sym_RPAREN, - [82698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(2250), 1, - sym_identifier, - [82708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3220), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 1, - anon_sym_STAR, - STATE(137), 1, - sym_star, - [82726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [82734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1723), 1, - sym_identifier, - [82744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2243), 1, - sym_identifier, - [82754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2234), 1, - sym_identifier, - [82764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2600), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [82788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 1, - anon_sym_LPAREN, - STATE(1301), 1, - sym_insert_values, - [82798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2758), 1, - anon_sym_DOLLAR, - STATE(1878), 1, - sym_dollar_quote, - [82808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2618), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3565), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [82824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3567), 1, - anon_sym_SEMI, - ACTIONS(3569), 1, - anon_sym_COLON_EQ, - [82834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [82842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [82850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3573), 1, - anon_sym_SEMI, - ACTIONS(3575), 1, - anon_sym_DOLLAR, - [82860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 2, - aux_sym__interval_fields_token5, - aux_sym__interval_fields_token6, - [82892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(939), 1, - sym_identifier, - [82902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_SQUOTE, - STATE(57), 1, - sym_string, - [82912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - aux_sym_function_return_token1, - STATE(2169), 1, - sym_function_return, - [82922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3006), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [82930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - aux_sym_get_diagnostics_statement_token2, - ACTIONS(3579), 1, - aux_sym_get_diagnostics_statement_token3, - [82940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3581), 1, - anon_sym_COMMA, - ACTIONS(3583), 1, - anon_sym_RPAREN, - [82950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3162), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [82958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 1, - sym__identifier, - STATE(2165), 1, - sym_identifier, - [82968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym__identifier, - STATE(1013), 1, - sym_identifier, - [82978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [82986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3587), 2, - anon_sym_SEMI, - aux_sym_for_statement_token2, - [82994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3589), 1, - aux_sym_sequence_start_token2, - ACTIONS(3591), 1, - sym_number, - [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(3593), 1, - anon_sym_COMMA, - ACTIONS(3595), 1, - anon_sym_RPAREN, - [83024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - aux_sym_sequence_increment_token2, - ACTIONS(3599), 1, - sym_number, - [83034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - STATE(166), 1, - sym_string, - [83044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3535), 1, - aux_sym_fk_ref_action_token2, - [83051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym_LPAREN, - [83058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 1, - aux_sym_time_expression_token3, - [83065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3605), 1, - anon_sym_SEMI, - [83072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 1, - aux_sym__interval_fields_token2, - [83079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3266), 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_if_statement_token1, - [83100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3611), 1, - anon_sym_RPAREN, - [83107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3613), 1, - aux_sym_for_statement_token2, - [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(1028), 1, - anon_sym_RPAREN, - [83156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 1, - aux_sym_for_statement_token2, - [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(1004), 1, - anon_sym_RPAREN, - [83191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, - aux_sym_update_statement_token2, - [83198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 1, - aux_sym_time_expression_token3, - [83205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 1, - aux_sym_sequence_increment_token2, - [83212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 1, - sym_number, - [83219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 1, - aux_sym__interval_fields_token2, - [83226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 1, - aux_sym__interval_fields_token6, - [83233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3641), 1, - anon_sym_RBRACK, - [83240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3643), 1, - anon_sym_RPAREN, - [83247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, - anon_sym_DOLLAR, - [83254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 1, - anon_sym_RPAREN, - [83261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 1, - sym_number, - [83268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3237), 1, - sym_number, - [83275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, - aux_sym_if_statement_token1, - [83282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - anon_sym_RPAREN, - [83289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 1, - aux_sym_alter_column_action_token2, - [83296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3653), 1, - aux_sym_drop_type_statement_token2, - [83303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - aux_sym_insert_conflict_token1, - [83310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3657), 1, - anon_sym_LPAREN, - [83317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 1, - aux_sym_create_schema_statement_token1, - [83324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1014), 1, - anon_sym_RPAREN, - [83331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 1, - aux_sym_insert_conflict_token3, - [83338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 1, - aux_sym_time_expression_token3, - [83345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3665), 1, - anon_sym_SEMI, - [83352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3231), 1, - anon_sym_SEMI, - [83359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_SEMI, - [83366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3220), 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(3220), 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, - aux_sym_insert_conflict_token4, - [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(3683), 1, - anon_sym_SEMI, - [83443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 1, - anon_sym_LPAREN, - [83450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - aux_sym_conflict_target_token1, - [83457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 1, - anon_sym_SEMI, - [83464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(998), 1, - anon_sym_RPAREN, - [83471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 1, - aux_sym_if_not_exists_token1, - [83478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1048), 1, - anon_sym_RPAREN, - [83485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2697), 1, - anon_sym_SEMI, - [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(2717), 1, - anon_sym_SEMI, - [83513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 1, - anon_sym_RPAREN, - [83520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 1, - anon_sym_EQ, - [83527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 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(2711), 1, - anon_sym_SEMI, - [83562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 1, - anon_sym_DOLLAR, - [83569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 1, - aux_sym__interval_fields_token2, - [83576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3709), 1, - anon_sym_SEMI, - [83583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3711), 1, - aux_sym_alter_table_rename_column_token2, - [83590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 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, - sym_number, - [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(3293), 1, - anon_sym_LPAREN, - [83646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 1, - anon_sym_RPAREN, - [83653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1038), 1, - anon_sym_RPAREN, - [83660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_SEMI, - [83667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3725), 1, - aux_sym_for_statement_token2, - [83674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - sym__identifier, - [83681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - aux_sym_join_item_token3, - [83688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - aux_sym_join_item_token3, - [83695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3731), 1, - anon_sym_SEMI, - [83702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3733), 1, - aux_sym_for_statement_token2, - [83709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 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(2819), 1, - sym_comment, - ACTIONS(3741), 1, - aux_sym_dollar_quote_string_token1, - [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_update_statement_token2, - [83758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - anon_sym_SEMI, - [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, - aux_sym_function_return_token1, - [83786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_RPAREN, - [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(3759), 1, - aux_sym_time_expression_token3, - [83828] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1034), 1, - anon_sym_RPAREN, - [83835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - anon_sym_SEMI, - [83842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_SEMI, - [83849] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2673), 1, - anon_sym_SEMI, - [83856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 1, - anon_sym_DOLLAR, - [83863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3310), 1, - anon_sym_LPAREN, - [83870] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_SEMI, - [83877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2811), 1, - aux_sym_select_statement_token1, - [83884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(978), 1, - anon_sym_RPAREN, - [83891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(994), 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(3176), 1, - aux_sym__interval_fields_token2, - [83919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - anon_sym_LPAREN, - [83926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3773), 1, - aux_sym_update_statement_token2, - [83933] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - aux_sym__interval_fields_token6, - [83940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3775), 1, - anon_sym_RBRACK, - [83947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 1, - anon_sym_LPAREN, - [83954] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3777), 1, - aux_sym_function_return_token1, - [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, - sym__identifier, - [83989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_SEMI, - [83996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 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(697), 1, - anon_sym_LPAREN, - [84031] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - aux_sym_table_constraint_ty_token3, - [84038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 1, - anon_sym_SEMI, - [84045] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - aux_sym_table_constraint_ty_token3, - [84052] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(962), 1, - anon_sym_RPAREN, - [84059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 1, - aux_sym_table_constraint_ty_token3, - [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, - anon_sym_SEMI, - [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, - aux_sym_create_function_statement_token1, - [84094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 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(3807), 1, - anon_sym_RBRACK, - [84115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - [84122] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3811), 1, - aux_sym_insert_conflict_token1, - [84129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_RPAREN, - [84136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3815), 1, - anon_sym_DOLLAR, - [84143] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 1, - anon_sym_RPAREN, - [84150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_SEMI, - [84157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym_LPAREN, - [84164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_RPAREN, - [84171] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3819), 1, - aux_sym_update_statement_token3, - [84178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3821), 1, - anon_sym_SEMI, - [84185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3823), 1, - sym_number, - [84192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - sym_number, - [84199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - aux_sym_alter_column_action_token2, - [84206] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3827), 1, - aux_sym_insert_conflict_token1, - [84213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3829), 1, - anon_sym_LPAREN, - [84220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1046), 1, - anon_sym_RPAREN, - [84227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3831), 1, - anon_sym_DOLLAR, - [84234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3833), 1, - aux_sym_time_expression_token3, - [84241] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3835), 1, - aux_sym_update_statement_token2, - [84248] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - aux_sym__interval_fields_token2, - [84255] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3837), 1, - aux_sym_insert_conflict_token3, - [84262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3839), 1, - anon_sym_RPAREN, - [84269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - aux_sym__interval_fields_token6, - [84276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 1, - anon_sym_RBRACK, - [84283] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - aux_sym_insert_conflict_token2, - [84290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3845), 1, - anon_sym_SEMI, - [84297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, - anon_sym_RPAREN, - [84304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3849), 1, - anon_sym_DOLLAR, - [84311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_RPAREN, - [84318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - aux_sym_for_statement_token2, - [84325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - aux_sym_if_statement_token1, - [84332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 1, - anon_sym_RPAREN, - [84339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3857), 1, - anon_sym_SEMI, - [84346] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_SEMI, - [84353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - aux_sym_create_table_statement_token1, - [84360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_SEMI, - [84367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - aux_sym_insert_conflict_token3, - [84374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 1, - aux_sym_trigger_scope_token1, - [84381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3869), 1, - aux_sym_for_statement_token2, - [84388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(970), 1, - anon_sym_RPAREN, - [84395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - aux_sym_drop_function_statement_token1, - [84402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 1, - aux_sym_time_expression_token3, - [84409] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 1, - aux_sym_get_diagnostics_statement_token3, - [84416] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym__interval_fields_token2, - [84423] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 1, - anon_sym_DOLLAR, - [84430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3877), 1, - aux_sym_create_function_statement_token1, - [84437] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym__interval_fields_token6, - [84444] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - anon_sym_RBRACK, - [84451] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - anon_sym_SEMI, - [84458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3883), 1, - anon_sym_SEMI, - [84465] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_RPAREN, - [84472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 1, - anon_sym_DOLLAR, - [84479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 1, - anon_sym_RPAREN, - [84486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - anon_sym_SEMI, - [84493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, - anon_sym_SEMI, - [84500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1030), 1, - anon_sym_RPAREN, - [84507] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3895), 1, - aux_sym_for_statement_token2, - [84514] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, - anon_sym_SEMI, - [84521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - aux_sym_alter_table_rename_column_token2, - [84528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3901), 1, - aux_sym_insert_conflict_token1, - [84535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3903), 1, - aux_sym_for_statement_token2, - [84542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3905), 1, - anon_sym_SEMI, - [84549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 1, - anon_sym_RPAREN, - [84556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 1, - anon_sym_RPAREN, - [84563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3907), 1, - aux_sym_function_return_token1, - [84570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 1, - aux_sym_time_expression_token3, - [84577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3911), 1, - aux_sym_if_statement_token1, - [84584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - aux_sym__interval_fields_token2, - [84591] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3913), 1, - aux_sym_grant_targets_token4, - [84598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, - anon_sym_RPAREN, - [84605] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - aux_sym__interval_fields_token6, - [84612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3917), 1, - anon_sym_RBRACK, - [84619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3919), 1, - anon_sym_LPAREN, - [84626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3921), 1, - aux_sym_function_return_token1, - [84633] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_RPAREN, - [84640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, - anon_sym_DOLLAR, - [84647] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3927), 1, - anon_sym_RPAREN, - [84654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3929), 1, - aux_sym_with_query_item_token1, - [84661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 1, - aux_sym_join_item_token3, - [84668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3933), 1, - aux_sym_select_statement_token1, - [84675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1000), 1, - anon_sym_RPAREN, - [84682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - anon_sym_SEMI, - [84689] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3935), 1, - anon_sym_RBRACK, - [84696] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - anon_sym_SEMI, - [84703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3939), 1, - anon_sym_SEMI, - [84710] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3941), 1, - anon_sym_RPAREN, - [84717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 1, - anon_sym_RPAREN, - [84724] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 1, - aux_sym_for_statement_token2, - [84731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, - anon_sym_SEMI, - [84738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3357), 1, - aux_sym__interval_fields_token2, - [84745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1008), 1, - anon_sym_RPAREN, - [84752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3949), 1, - anon_sym_LPAREN, - [84759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 1, - anon_sym_SEMI, - [84766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3357), 1, - aux_sym__interval_fields_token6, - [84773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, - anon_sym_SEMI, - [84780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - aux_sym_insert_conflict_token3, - [84787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1020), 1, - anon_sym_RPAREN, - [84794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3957), 1, - aux_sym_alter_column_action_token1, - [84801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3959), 1, - sym_number, - [84808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3961), 1, - aux_sym_alter_table_rename_column_token2, - [84815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3963), 1, - aux_sym_select_statement_token1, - [84822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3965), 1, - sym_number, - [84829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1026), 1, - anon_sym_RPAREN, - [84836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3967), 1, - anon_sym_RBRACK, - [84843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 1, - aux_sym_update_statement_token3, - [84850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3971), 1, - anon_sym_SEMI, - [84857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3973), 1, - anon_sym_SEMI, - [84864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 1, - anon_sym_SEMI, - [84871] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1032), 1, - anon_sym_RPAREN, - [84878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3977), 1, - anon_sym_LPAREN, - [84885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_RPAREN, - [84892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3981), 1, - aux_sym_update_statement_token3, - [84899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_RPAREN, - [84906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3983), 1, - aux_sym_update_statement_token2, - [84913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3985), 1, - anon_sym_RPAREN, - [84920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3987), 1, - aux_sym_function_return_token1, - [84927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3989), 1, - anon_sym_LBRACK, - [84934] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 1, - aux_sym_alter_column_action_token1, - [84941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3993), 1, - aux_sym_insert_conflict_token1, - [84948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3995), 1, - aux_sym_time_expression_token2, - [84955] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3997), 1, - anon_sym_EQ, - [84962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3999), 1, - aux_sym_if_not_exists_token1, - [84969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4001), 1, - aux_sym_join_item_token3, - [84976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4003), 1, - aux_sym_update_statement_token4, - [84983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4005), 1, - aux_sym_insert_statement_token2, - [84990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_RPAREN, - [84997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, - anon_sym_SEMI, - [85004] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym_number, - [85011] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4013), 1, - sym_number, - [85018] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_SEMI, - [85025] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 1, - anon_sym_LPAREN, - [85032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4017), 1, - sym__identifier, - [85039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_LBRACK, - [85046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4021), 1, - sym_number, - [85053] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4023), 1, - aux_sym_insert_conflict_token1, - [85060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4025), 1, - sym__identifier, - [85067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4027), 1, - aux_sym_sequence_increment_token2, - [85074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LBRACK, - [85081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4031), 1, - aux_sym_alter_column_action_token1, - [85088] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 1, - aux_sym_sequence_increment_token2, - [85095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4035), 1, - aux_sym_time_expression_token2, - [85102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4037), 1, - anon_sym_LPAREN, - [85109] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 1, - aux_sym_join_item_token3, - [85116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 1, - anon_sym_LPAREN, - [85123] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - anon_sym_SEMI, - [85130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4043), 1, - anon_sym_SEMI, - [85137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - sym_number, - [85144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - sym_number, - [85151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4049), 1, - sym__identifier, - [85158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 1, - sym_number, - [85165] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 1, - anon_sym_SEMI, - [85172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - aux_sym_insert_conflict_token1, - [85179] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 1, - anon_sym_LBRACK, - [85186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4059), 1, - aux_sym_time_expression_token2, - [85193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 1, - anon_sym_SEMI, - [85200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4063), 1, - aux_sym_join_item_token3, - [85207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4065), 1, - anon_sym_SEMI, - [85214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4067), 1, - anon_sym_DOLLAR, - [85221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 1, - sym_number, - [85228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4071), 1, - sym_number, - [85235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 1, - sym__identifier, - [85242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - sym_number, - [85249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 1, - anon_sym_SEMI, - [85256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 1, - aux_sym_update_statement_token2, - [85263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 1, - anon_sym_LBRACK, - [85270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4083), 1, - aux_sym_time_expression_token2, - [85277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 1, - anon_sym_SEMI, - [85284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 1, - aux_sym_join_item_token3, - [85291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 1, - aux_sym_alter_table_rename_column_token2, - [85298] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - aux_sym_drop_function_statement_token1, - [85305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 1, - sym_number, - [85312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 1, - sym_number, - [85319] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, - sym__identifier, - [85326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 1, - sym_number, - [85333] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - aux_sym_create_table_statement_token1, - [85340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 1, - aux_sym_alter_table_rename_column_token2, - [85347] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4103), 1, - anon_sym_LBRACK, - [85354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 1, - aux_sym_time_expression_token2, - [85361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4107), 1, - aux_sym_or_replace_token1, - [85368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4109), 1, - aux_sym_join_item_token3, - [85375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4111), 1, - anon_sym_SEMI, - [85382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2507), 1, - anon_sym_SEMI, - [85389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 1, - sym_number, - [85396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4115), 1, - sym_number, - [85403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 1, - sym__identifier, - [85410] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - sym_number, - [85417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 1, - aux_sym_create_index_statement_token2, - [85424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4123), 1, - aux_sym_function_return_token1, - [85431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4125), 1, - anon_sym_LBRACK, - [85438] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, - aux_sym_time_expression_token2, - [85445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 1, - sym_number, - [85452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4131), 1, - sym_number, - [85459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - sym__identifier, - [85466] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4135), 1, - sym_number, - [85473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 1, - aux_sym_create_trigger_statement_token1, - [85480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4139), 1, - anon_sym_LBRACK, - [85487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 1, - aux_sym_time_expression_token2, - [85494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4143), 1, - sym_number, - [85501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 1, - sym_number, - [85508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4147), 1, - sym__identifier, - [85515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 1, - sym_number, - [85522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 1, - aux_sym_create_schema_statement_token1, - [85529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4153), 1, - anon_sym_LBRACK, - [85536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 1, - aux_sym_time_expression_token2, - [85543] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 1, - sym_number, - [85550] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 1, - sym_number, - [85557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4161), 1, - sym__identifier, - [85564] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 1, - sym_number, - [85571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4165), 1, - anon_sym_SEMI, - [85578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 1, - anon_sym_LBRACK, - [85585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4169), 1, - aux_sym_time_expression_token2, - [85592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 1, - sym_number, - [85599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4173), 1, - sym_number, - [85606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - sym__identifier, - [85613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4177), 1, - sym_number, - [85620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 1, - anon_sym_SEMI, - [85627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4181), 1, - anon_sym_LBRACK, - [85634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 1, - aux_sym_time_expression_token2, - [85641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4185), 1, - sym_number, - [85648] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - sym_number, - [85655] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4189), 1, - sym__identifier, - [85662] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4191), 1, - sym_number, - [85669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4193), 1, - sym_number, - [85676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4195), 1, - sym_number, - [85683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4197), 1, - sym_number, - [85690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 1, + ACTIONS(54), 1, anon_sym_RPAREN, - [85697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4201), 1, - anon_sym_LPAREN, - [85704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - anon_sym_DOLLAR, - [85711] = 2, - ACTIONS(3), 1, + STATE(13), 1, + aux_sym_column_definitions_repeat1, + STATE(15), 2, sym_comment, - ACTIONS(4205), 1, - anon_sym_SEMI, - [85718] = 2, + sym_marginalia, + [339] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(16), 2, sym_comment, - ACTIONS(4207), 1, + sym_marginalia, + ACTIONS(56), 3, ts_builtin_sym_end, - [85725] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, anon_sym_SEMI, - [85732] = 2, + sym_keyword_create, + [355] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(4209), 1, - anon_sym_DOLLAR, - [85739] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4211), 1, - anon_sym_SEMI, - [85746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, sym__identifier, - [85753] = 2, - ACTIONS(3), 1, + STATE(40), 1, + sym_identifier, + STATE(17), 2, sym_comment, - ACTIONS(4215), 1, - anon_sym_DOLLAR, - [85760] = 2, + sym_marginalia, + [375] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(18), 2, sym_comment, - ACTIONS(4217), 1, - aux_sym_create_table_statement_token1, - [85767] = 2, + sym_marginalia, + ACTIONS(58), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + sym_keyword_create, + [391] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(19), 2, sym_comment, - ACTIONS(4219), 1, - aux_sym_update_statement_token4, - [85774] = 2, + sym_marginalia, + ACTIONS(60), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + sym_keyword_create, + [407] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(62), 2, + anon_sym_DQUOTE, + sym__identifier, + STATE(20), 2, sym_comment, - ACTIONS(4221), 1, - anon_sym_DOLLAR, - [85781] = 2, + sym_marginalia, + [422] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(64), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(21), 2, sym_comment, - ACTIONS(4223), 1, + sym_marginalia, + [437] = 5, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(66), 1, anon_sym_LPAREN, - [85788] = 2, - ACTIONS(3), 1, + STATE(45), 1, + sym_column_definitions, + STATE(22), 2, sym_comment, - ACTIONS(4225), 1, - aux_sym_insert_statement_token2, - [85795] = 2, + sym_marginalia, + [454] = 5, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(66), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_column_definitions, + STATE(23), 2, sym_comment, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - [85802] = 2, + sym_marginalia, + [471] = 5, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(66), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_column_definitions, + STATE(24), 2, sym_comment, - ACTIONS(3380), 1, + sym_marginalia, + [488] = 5, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(68), 1, + anon_sym_DOT, + ACTIONS(70), 1, + anon_sym_LPAREN, + STATE(25), 2, + sym_comment, + sym_marginalia, + [505] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(52), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(26), 2, + sym_comment, + sym_marginalia, + [520] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(72), 1, anon_sym_SEMI, - [85809] = 2, + STATE(27), 2, + sym_comment, + sym_marginalia, + [534] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(74), 1, + anon_sym_SEMI, + STATE(28), 2, sym_comment, - ACTIONS(4229), 1, - anon_sym_DOLLAR, - [85816] = 2, + sym_marginalia, + [548] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(76), 1, + sym_keyword_exists, + STATE(29), 2, sym_comment, - ACTIONS(4231), 1, - anon_sym_DOLLAR, - [85823] = 2, + sym_marginalia, + [562] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(78), 1, + anon_sym_SEMI, + STATE(30), 2, sym_comment, - ACTIONS(4233), 1, - anon_sym_DOLLAR, - [85830] = 2, + sym_marginalia, + [576] = 4, + ACTIONS(80), 1, + anon_sym_DASH_DASH, + ACTIONS(82), 1, + aux_sym_comment_token1, + ACTIONS(84), 1, + anon_sym_SLASH_STAR, + STATE(31), 2, + sym_comment, + sym_marginalia, + [590] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_DOLLAR, - [85837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4237), 1, - anon_sym_DOLLAR, - [85844] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4239), 1, - aux_sym_dollar_quote_string_token1, - [85851] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4241), 1, - aux_sym_dollar_quote_string_token1, - [85858] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4243), 1, - aux_sym_dollar_quote_string_token1, - [85865] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4245), 1, - aux_sym_dollar_quote_string_token1, - [85872] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4247), 1, - aux_sym_dollar_quote_string_token1, - [85879] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4249), 1, - aux_sym_dollar_quote_string_token1, - [85886] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4251), 1, - aux_sym_dollar_quote_string_token1, - [85893] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4253), 1, - aux_sym_dollar_quote_string_token1, - [85900] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4255), 1, - aux_sym_dollar_quote_string_token1, - [85907] = 2, - ACTIONS(2819), 1, - sym_comment, - ACTIONS(4257), 1, - aux_sym_dollar_quote_string_token1, - [85914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 1, - anon_sym_DOLLAR, - [85921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4261), 1, - anon_sym_DOLLAR, - [85928] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - anon_sym_DOLLAR, - [85935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4265), 1, - anon_sym_DOLLAR, - [85942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_DOLLAR, - [85949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4269), 1, - anon_sym_DOLLAR, - [85956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4271), 1, - anon_sym_DOLLAR, - [85963] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4273), 1, - anon_sym_DOLLAR, - [85970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4275), 1, - anon_sym_DOLLAR, - [85977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4277), 1, - anon_sym_DOLLAR, - [85984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4279), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(86), 1, sym__identifier, - [85991] = 2, - ACTIONS(3), 1, + STATE(32), 2, sym_comment, - ACTIONS(4281), 1, - sym__identifier, - [85998] = 2, + sym_marginalia, + [604] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(88), 1, + sym_keyword_not, + STATE(33), 2, sym_comment, - ACTIONS(4283), 1, - sym__identifier, - [86005] = 2, + sym_marginalia, + [618] = 4, + ACTIONS(80), 1, + anon_sym_DASH_DASH, + ACTIONS(84), 1, + anon_sym_SLASH_STAR, + ACTIONS(90), 1, + aux_sym_marginalia_token1, + STATE(34), 2, + sym_comment, + sym_marginalia, + [632] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(92), 1, + sym_keyword_table, + STATE(35), 2, sym_comment, - ACTIONS(4285), 1, - sym__identifier, - [86012] = 2, + sym_marginalia, + [646] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(94), 1, + sym_keyword_table, + STATE(36), 2, sym_comment, - ACTIONS(4287), 1, - sym__identifier, - [86019] = 2, + sym_marginalia, + [660] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(96), 1, + anon_sym_SLASH, + STATE(37), 2, sym_comment, - ACTIONS(4289), 1, - sym__identifier, - [86026] = 2, + sym_marginalia, + [674] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(98), 1, + anon_sym_SEMI, + STATE(38), 2, sym_comment, - ACTIONS(4291), 1, - sym__identifier, - [86033] = 2, + sym_marginalia, + [688] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(100), 1, + anon_sym_SEMI, + STATE(39), 2, sym_comment, - ACTIONS(4293), 1, - sym__identifier, - [86040] = 2, + sym_marginalia, + [702] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(102), 1, + anon_sym_LPAREN, + STATE(40), 2, sym_comment, - ACTIONS(4295), 1, - sym__identifier, - [86047] = 2, + sym_marginalia, + [716] = 4, ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(104), 1, + anon_sym_SEMI, + STATE(41), 2, sym_comment, - ACTIONS(4297), 1, - sym__identifier, + sym_marginalia, + [730] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(106), 1, + anon_sym_SEMI, + STATE(42), 2, + sym_comment, + sym_marginalia, + [744] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(108), 1, + anon_sym_DQUOTE, + STATE(43), 2, + sym_comment, + sym_marginalia, + [758] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(110), 1, + anon_sym_SEMI, + STATE(44), 2, + sym_comment, + sym_marginalia, + [772] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(112), 1, + anon_sym_SEMI, + STATE(45), 2, + sym_comment, + sym_marginalia, + [786] = 4, + ACTIONS(3), 1, + anon_sym_DASH_DASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(114), 1, + ts_builtin_sym_end, + STATE(46), 2, + sym_comment, + sym_marginalia, + [800] = 1, + ACTIONS(116), 1, + ts_builtin_sym_end, + [804] = 1, + ACTIONS(118), 1, + ts_builtin_sym_end, }; 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(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)] = 28663, - [SMALL_STATE(395)] = 28719, - [SMALL_STATE(396)] = 28777, - [SMALL_STATE(397)] = 28833, - [SMALL_STATE(398)] = 28889, - [SMALL_STATE(399)] = 28947, - [SMALL_STATE(400)] = 29005, - [SMALL_STATE(401)] = 29063, - [SMALL_STATE(402)] = 29121, - [SMALL_STATE(403)] = 29177, - [SMALL_STATE(404)] = 29235, - [SMALL_STATE(405)] = 29291, - [SMALL_STATE(406)] = 29347, - [SMALL_STATE(407)] = 29403, - [SMALL_STATE(408)] = 29459, - [SMALL_STATE(409)] = 29515, - [SMALL_STATE(410)] = 29571, - [SMALL_STATE(411)] = 29627, - [SMALL_STATE(412)] = 29751, - [SMALL_STATE(413)] = 29807, - [SMALL_STATE(414)] = 29863, - [SMALL_STATE(415)] = 29919, - [SMALL_STATE(416)] = 29975, - [SMALL_STATE(417)] = 30031, - [SMALL_STATE(418)] = 30087, - [SMALL_STATE(419)] = 30143, - [SMALL_STATE(420)] = 30199, - [SMALL_STATE(421)] = 30255, - [SMALL_STATE(422)] = 30311, - [SMALL_STATE(423)] = 30367, - [SMALL_STATE(424)] = 30423, - [SMALL_STATE(425)] = 30491, - [SMALL_STATE(426)] = 30547, - [SMALL_STATE(427)] = 30603, - [SMALL_STATE(428)] = 30661, - [SMALL_STATE(429)] = 30719, - [SMALL_STATE(430)] = 30775, - [SMALL_STATE(431)] = 30831, - [SMALL_STATE(432)] = 30887, - [SMALL_STATE(433)] = 30943, - [SMALL_STATE(434)] = 30999, - [SMALL_STATE(435)] = 31055, - [SMALL_STATE(436)] = 31111, - [SMALL_STATE(437)] = 31167, - [SMALL_STATE(438)] = 31223, - [SMALL_STATE(439)] = 31327, - [SMALL_STATE(440)] = 31451, - [SMALL_STATE(441)] = 31507, - [SMALL_STATE(442)] = 31563, - [SMALL_STATE(443)] = 31618, - [SMALL_STATE(444)] = 31673, - [SMALL_STATE(445)] = 31742, - [SMALL_STATE(446)] = 31835, - [SMALL_STATE(447)] = 31938, - [SMALL_STATE(448)] = 31993, - [SMALL_STATE(449)] = 32048, - [SMALL_STATE(450)] = 32141, - [SMALL_STATE(451)] = 32222, - [SMALL_STATE(452)] = 32277, - [SMALL_STATE(453)] = 32356, - [SMALL_STATE(454)] = 32411, - [SMALL_STATE(455)] = 32466, - [SMALL_STATE(456)] = 32521, - [SMALL_STATE(457)] = 32576, - [SMALL_STATE(458)] = 32631, - [SMALL_STATE(459)] = 32704, - [SMALL_STATE(460)] = 32759, - [SMALL_STATE(461)] = 32854, - [SMALL_STATE(462)] = 32951, - [SMALL_STATE(463)] = 33006, - [SMALL_STATE(464)] = 33061, - [SMALL_STATE(465)] = 33116, - [SMALL_STATE(466)] = 33171, - [SMALL_STATE(467)] = 33226, - [SMALL_STATE(468)] = 33281, - [SMALL_STATE(469)] = 33404, - [SMALL_STATE(470)] = 33459, - [SMALL_STATE(471)] = 33514, - [SMALL_STATE(472)] = 33569, - [SMALL_STATE(473)] = 33624, - [SMALL_STATE(474)] = 33693, - [SMALL_STATE(475)] = 33748, - [SMALL_STATE(476)] = 33803, - [SMALL_STATE(477)] = 33858, - [SMALL_STATE(478)] = 33913, - [SMALL_STATE(479)] = 33968, - [SMALL_STATE(480)] = 34023, - [SMALL_STATE(481)] = 34078, - [SMALL_STATE(482)] = 34133, - [SMALL_STATE(483)] = 34200, - [SMALL_STATE(484)] = 34285, - [SMALL_STATE(485)] = 34386, - [SMALL_STATE(486)] = 34479, - [SMALL_STATE(487)] = 34534, - [SMALL_STATE(488)] = 34589, - [SMALL_STATE(489)] = 34644, - [SMALL_STATE(490)] = 34699, - [SMALL_STATE(491)] = 34754, - [SMALL_STATE(492)] = 34877, - [SMALL_STATE(493)] = 34932, - [SMALL_STATE(494)] = 35009, - [SMALL_STATE(495)] = 35064, - [SMALL_STATE(496)] = 35119, - [SMALL_STATE(497)] = 35174, - [SMALL_STATE(498)] = 35250, - [SMALL_STATE(499)] = 35328, - [SMALL_STATE(500)] = 35400, - [SMALL_STATE(501)] = 35454, - [SMALL_STATE(502)] = 35512, - [SMALL_STATE(503)] = 35592, - [SMALL_STATE(504)] = 35648, - [SMALL_STATE(505)] = 35732, - [SMALL_STATE(506)] = 35790, - [SMALL_STATE(507)] = 35882, - [SMALL_STATE(508)] = 35974, - [SMALL_STATE(509)] = 36028, - [SMALL_STATE(510)] = 36096, - [SMALL_STATE(511)] = 36188, - [SMALL_STATE(512)] = 36244, - [SMALL_STATE(513)] = 36340, - [SMALL_STATE(514)] = 36408, - [SMALL_STATE(515)] = 36465, - [SMALL_STATE(516)] = 36558, - [SMALL_STATE(517)] = 36653, - [SMALL_STATE(518)] = 36712, - [SMALL_STATE(519)] = 36769, - [SMALL_STATE(520)] = 36863, - [SMALL_STATE(521)] = 36921, - [SMALL_STATE(522)] = 37015, - [SMALL_STATE(523)] = 37109, - [SMALL_STATE(524)] = 37203, - [SMALL_STATE(525)] = 37297, - [SMALL_STATE(526)] = 37391, - [SMALL_STATE(527)] = 37485, - [SMALL_STATE(528)] = 37579, - [SMALL_STATE(529)] = 37673, - [SMALL_STATE(530)] = 37767, - [SMALL_STATE(531)] = 37861, - [SMALL_STATE(532)] = 37955, - [SMALL_STATE(533)] = 38049, - [SMALL_STATE(534)] = 38143, - [SMALL_STATE(535)] = 38195, - [SMALL_STATE(536)] = 38289, - [SMALL_STATE(537)] = 38383, - [SMALL_STATE(538)] = 38435, - [SMALL_STATE(539)] = 38529, - [SMALL_STATE(540)] = 38623, - [SMALL_STATE(541)] = 38717, - [SMALL_STATE(542)] = 38769, - [SMALL_STATE(543)] = 38821, - [SMALL_STATE(544)] = 38915, - [SMALL_STATE(545)] = 39009, - [SMALL_STATE(546)] = 39103, - [SMALL_STATE(547)] = 39197, - [SMALL_STATE(548)] = 39291, - [SMALL_STATE(549)] = 39385, - [SMALL_STATE(550)] = 39479, - [SMALL_STATE(551)] = 39573, - [SMALL_STATE(552)] = 39667, - [SMALL_STATE(553)] = 39761, - [SMALL_STATE(554)] = 39855, - [SMALL_STATE(555)] = 39949, - [SMALL_STATE(556)] = 40043, - [SMALL_STATE(557)] = 40095, - [SMALL_STATE(558)] = 40189, - [SMALL_STATE(559)] = 40283, - [SMALL_STATE(560)] = 40373, - [SMALL_STATE(561)] = 40467, - [SMALL_STATE(562)] = 40561, - [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)] = 41183, - [SMALL_STATE(570)] = 41277, - [SMALL_STATE(571)] = 41329, - [SMALL_STATE(572)] = 41384, - [SMALL_STATE(573)] = 41475, - [SMALL_STATE(574)] = 41564, - [SMALL_STATE(575)] = 41615, - [SMALL_STATE(576)] = 41706, - [SMALL_STATE(577)] = 41763, - [SMALL_STATE(578)] = 41852, - [SMALL_STATE(579)] = 41903, - [SMALL_STATE(580)] = 41992, - [SMALL_STATE(581)] = 42043, - [SMALL_STATE(582)] = 42098, - [SMALL_STATE(583)] = 42149, - [SMALL_STATE(584)] = 42200, - [SMALL_STATE(585)] = 42291, - [SMALL_STATE(586)] = 42342, - [SMALL_STATE(587)] = 42430, - [SMALL_STATE(588)] = 42518, - [SMALL_STATE(589)] = 42570, - [SMALL_STATE(590)] = 42658, - [SMALL_STATE(591)] = 42746, - [SMALL_STATE(592)] = 42834, - [SMALL_STATE(593)] = 42886, - [SMALL_STATE(594)] = 42974, - [SMALL_STATE(595)] = 43062, - [SMALL_STATE(596)] = 43150, - [SMALL_STATE(597)] = 43204, - [SMALL_STATE(598)] = 43292, - [SMALL_STATE(599)] = 43380, - [SMALL_STATE(600)] = 43468, - [SMALL_STATE(601)] = 43556, - [SMALL_STATE(602)] = 43644, - [SMALL_STATE(603)] = 43732, - [SMALL_STATE(604)] = 43820, - [SMALL_STATE(605)] = 43872, - [SMALL_STATE(606)] = 43924, - [SMALL_STATE(607)] = 43978, - [SMALL_STATE(608)] = 44066, - [SMALL_STATE(609)] = 44154, - [SMALL_STATE(610)] = 44204, - [SMALL_STATE(611)] = 44292, - [SMALL_STATE(612)] = 44341, - [SMALL_STATE(613)] = 44392, - [SMALL_STATE(614)] = 44441, - [SMALL_STATE(615)] = 44490, - [SMALL_STATE(616)] = 44539, - [SMALL_STATE(617)] = 44588, - [SMALL_STATE(618)] = 44637, - [SMALL_STATE(619)] = 44686, - [SMALL_STATE(620)] = 44735, - [SMALL_STATE(621)] = 44784, - [SMALL_STATE(622)] = 44833, - [SMALL_STATE(623)] = 44884, - [SMALL_STATE(624)] = 44933, - [SMALL_STATE(625)] = 44982, - [SMALL_STATE(626)] = 45031, - [SMALL_STATE(627)] = 45080, - [SMALL_STATE(628)] = 45129, - [SMALL_STATE(629)] = 45178, - [SMALL_STATE(630)] = 45227, - [SMALL_STATE(631)] = 45278, - [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)] = 47458, - [SMALL_STATE(670)] = 47536, - [SMALL_STATE(671)] = 47614, - [SMALL_STATE(672)] = 47692, - [SMALL_STATE(673)] = 47770, - [SMALL_STATE(674)] = 47838, - [SMALL_STATE(675)] = 47916, - [SMALL_STATE(676)] = 47994, - [SMALL_STATE(677)] = 48062, - [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)] = 60980, - [SMALL_STATE(878)] = 61048, - [SMALL_STATE(879)] = 61080, - [SMALL_STATE(880)] = 61113, - [SMALL_STATE(881)] = 61146, - [SMALL_STATE(882)] = 61185, - [SMALL_STATE(883)] = 61215, - [SMALL_STATE(884)] = 61251, - [SMALL_STATE(885)] = 61319, - [SMALL_STATE(886)] = 61381, - [SMALL_STATE(887)] = 61413, - [SMALL_STATE(888)] = 61475, - [SMALL_STATE(889)] = 61543, - [SMALL_STATE(890)] = 61611, - [SMALL_STATE(891)] = 61679, - [SMALL_STATE(892)] = 61721, - [SMALL_STATE(893)] = 61753, - [SMALL_STATE(894)] = 61815, - [SMALL_STATE(895)] = 61857, - [SMALL_STATE(896)] = 61919, - [SMALL_STATE(897)] = 61961, - [SMALL_STATE(898)] = 62028, - [SMALL_STATE(899)] = 62055, - [SMALL_STATE(900)] = 62122, - [SMALL_STATE(901)] = 62151, - [SMALL_STATE(902)] = 62178, - [SMALL_STATE(903)] = 62245, - [SMALL_STATE(904)] = 62272, - [SMALL_STATE(905)] = 62301, - [SMALL_STATE(906)] = 62328, - [SMALL_STATE(907)] = 62365, - [SMALL_STATE(908)] = 62392, - [SMALL_STATE(909)] = 62425, - [SMALL_STATE(910)] = 62454, - [SMALL_STATE(911)] = 62481, - [SMALL_STATE(912)] = 62508, - [SMALL_STATE(913)] = 62537, - [SMALL_STATE(914)] = 62604, - [SMALL_STATE(915)] = 62631, - [SMALL_STATE(916)] = 62693, - [SMALL_STATE(917)] = 62727, - [SMALL_STATE(918)] = 62755, - [SMALL_STATE(919)] = 62811, - [SMALL_STATE(920)] = 62851, - [SMALL_STATE(921)] = 62881, - [SMALL_STATE(922)] = 62943, - [SMALL_STATE(923)] = 62983, - [SMALL_STATE(924)] = 63045, - [SMALL_STATE(925)] = 63101, - [SMALL_STATE(926)] = 63157, - [SMALL_STATE(927)] = 63213, - [SMALL_STATE(928)] = 63249, - [SMALL_STATE(929)] = 63311, - [SMALL_STATE(930)] = 63341, - [SMALL_STATE(931)] = 63397, - [SMALL_STATE(932)] = 63437, - [SMALL_STATE(933)] = 63464, - [SMALL_STATE(934)] = 63491, - [SMALL_STATE(935)] = 63536, - [SMALL_STATE(936)] = 63597, - [SMALL_STATE(937)] = 63626, - [SMALL_STATE(938)] = 63671, - [SMALL_STATE(939)] = 63704, - [SMALL_STATE(940)] = 63749, - [SMALL_STATE(941)] = 63794, - [SMALL_STATE(942)] = 63823, - [SMALL_STATE(943)] = 63884, - [SMALL_STATE(944)] = 63929, - [SMALL_STATE(945)] = 63990, - [SMALL_STATE(946)] = 64035, - [SMALL_STATE(947)] = 64096, - [SMALL_STATE(948)] = 64123, - [SMALL_STATE(949)] = 64152, - [SMALL_STATE(950)] = 64191, - [SMALL_STATE(951)] = 64218, - [SMALL_STATE(952)] = 64249, - [SMALL_STATE(953)] = 64288, - [SMALL_STATE(954)] = 64327, - [SMALL_STATE(955)] = 64372, - [SMALL_STATE(956)] = 64396, - [SMALL_STATE(957)] = 64452, - [SMALL_STATE(958)] = 64508, - [SMALL_STATE(959)] = 64538, - [SMALL_STATE(960)] = 64564, - [SMALL_STATE(961)] = 64590, - [SMALL_STATE(962)] = 64646, - [SMALL_STATE(963)] = 64672, - [SMALL_STATE(964)] = 64728, - [SMALL_STATE(965)] = 64784, - [SMALL_STATE(966)] = 64839, - [SMALL_STATE(967)] = 64894, - [SMALL_STATE(968)] = 64925, - [SMALL_STATE(969)] = 64972, - [SMALL_STATE(970)] = 65019, - [SMALL_STATE(971)] = 65074, - [SMALL_STATE(972)] = 65121, - [SMALL_STATE(973)] = 65176, - [SMALL_STATE(974)] = 65223, - [SMALL_STATE(975)] = 65270, - [SMALL_STATE(976)] = 65317, - [SMALL_STATE(977)] = 65350, - [SMALL_STATE(978)] = 65405, - [SMALL_STATE(979)] = 65431, - [SMALL_STATE(980)] = 65461, - [SMALL_STATE(981)] = 65497, - [SMALL_STATE(982)] = 65523, - [SMALL_STATE(983)] = 65549, - [SMALL_STATE(984)] = 65575, - [SMALL_STATE(985)] = 65601, - [SMALL_STATE(986)] = 65633, - [SMALL_STATE(987)] = 65659, - [SMALL_STATE(988)] = 65685, - [SMALL_STATE(989)] = 65721, - [SMALL_STATE(990)] = 65747, - [SMALL_STATE(991)] = 65783, - [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)] = 66067, - [SMALL_STATE(1001)] = 66108, - [SMALL_STATE(1002)] = 66149, - [SMALL_STATE(1003)] = 66190, - [SMALL_STATE(1004)] = 66215, - [SMALL_STATE(1005)] = 66240, - [SMALL_STATE(1006)] = 66281, - [SMALL_STATE(1007)] = 66310, - [SMALL_STATE(1008)] = 66357, - [SMALL_STATE(1009)] = 66398, - [SMALL_STATE(1010)] = 66445, - [SMALL_STATE(1011)] = 66468, - [SMALL_STATE(1012)] = 66491, - [SMALL_STATE(1013)] = 66518, - [SMALL_STATE(1014)] = 66539, - [SMALL_STATE(1015)] = 66562, - [SMALL_STATE(1016)] = 66609, - [SMALL_STATE(1017)] = 66636, - [SMALL_STATE(1018)] = 66677, - [SMALL_STATE(1019)] = 66718, - [SMALL_STATE(1020)] = 66753, - [SMALL_STATE(1021)] = 66778, - [SMALL_STATE(1022)] = 66801, - [SMALL_STATE(1023)] = 66842, - [SMALL_STATE(1024)] = 66883, - [SMALL_STATE(1025)] = 66930, - [SMALL_STATE(1026)] = 66979, - [SMALL_STATE(1027)] = 67026, - [SMALL_STATE(1028)] = 67046, - [SMALL_STATE(1029)] = 67072, - [SMALL_STATE(1030)] = 67118, - [SMALL_STATE(1031)] = 67164, - [SMALL_STATE(1032)] = 67184, - [SMALL_STATE(1033)] = 67206, - [SMALL_STATE(1034)] = 67228, - [SMALL_STATE(1035)] = 67250, - [SMALL_STATE(1036)] = 67270, - [SMALL_STATE(1037)] = 67316, - [SMALL_STATE(1038)] = 67338, - [SMALL_STATE(1039)] = 67360, - [SMALL_STATE(1040)] = 67406, - [SMALL_STATE(1041)] = 67452, - [SMALL_STATE(1042)] = 67472, - [SMALL_STATE(1043)] = 67494, - [SMALL_STATE(1044)] = 67516, - [SMALL_STATE(1045)] = 67538, - [SMALL_STATE(1046)] = 67560, - [SMALL_STATE(1047)] = 67580, - [SMALL_STATE(1048)] = 67604, - [SMALL_STATE(1049)] = 67624, - [SMALL_STATE(1050)] = 67646, - [SMALL_STATE(1051)] = 67666, - [SMALL_STATE(1052)] = 67712, - [SMALL_STATE(1053)] = 67734, - [SMALL_STATE(1054)] = 67756, - [SMALL_STATE(1055)] = 67779, - [SMALL_STATE(1056)] = 67802, - [SMALL_STATE(1057)] = 67825, - [SMALL_STATE(1058)] = 67860, - [SMALL_STATE(1059)] = 67901, - [SMALL_STATE(1060)] = 67928, - [SMALL_STATE(1061)] = 67951, - [SMALL_STATE(1062)] = 67992, - [SMALL_STATE(1063)] = 68013, - [SMALL_STATE(1064)] = 68032, - [SMALL_STATE(1065)] = 68067, - [SMALL_STATE(1066)] = 68108, - [SMALL_STATE(1067)] = 68143, - [SMALL_STATE(1068)] = 68166, - [SMALL_STATE(1069)] = 68191, - [SMALL_STATE(1070)] = 68232, - [SMALL_STATE(1071)] = 68267, - [SMALL_STATE(1072)] = 68308, - [SMALL_STATE(1073)] = 68343, - [SMALL_STATE(1074)] = 68362, - [SMALL_STATE(1075)] = 68403, - [SMALL_STATE(1076)] = 68438, - [SMALL_STATE(1077)] = 68461, - [SMALL_STATE(1078)] = 68484, - [SMALL_STATE(1079)] = 68525, - [SMALL_STATE(1080)] = 68544, - [SMALL_STATE(1081)] = 68585, - [SMALL_STATE(1082)] = 68604, - [SMALL_STATE(1083)] = 68639, - [SMALL_STATE(1084)] = 68674, - [SMALL_STATE(1085)] = 68693, - [SMALL_STATE(1086)] = 68727, - [SMALL_STATE(1087)] = 68761, - [SMALL_STATE(1088)] = 68801, - [SMALL_STATE(1089)] = 68821, - [SMALL_STATE(1090)] = 68859, - [SMALL_STATE(1091)] = 68877, - [SMALL_STATE(1092)] = 68909, - [SMALL_STATE(1093)] = 68927, - [SMALL_STATE(1094)] = 68965, - [SMALL_STATE(1095)] = 68997, - [SMALL_STATE(1096)] = 69019, - [SMALL_STATE(1097)] = 69041, - [SMALL_STATE(1098)] = 69065, - [SMALL_STATE(1099)] = 69105, - [SMALL_STATE(1100)] = 69123, - [SMALL_STATE(1101)] = 69161, - [SMALL_STATE(1102)] = 69183, - [SMALL_STATE(1103)] = 69207, - [SMALL_STATE(1104)] = 69227, - [SMALL_STATE(1105)] = 69267, - [SMALL_STATE(1106)] = 69299, - [SMALL_STATE(1107)] = 69339, - [SMALL_STATE(1108)] = 69357, - [SMALL_STATE(1109)] = 69395, - [SMALL_STATE(1110)] = 69435, - [SMALL_STATE(1111)] = 69457, - [SMALL_STATE(1112)] = 69479, - [SMALL_STATE(1113)] = 69517, - [SMALL_STATE(1114)] = 69555, - [SMALL_STATE(1115)] = 69589, - [SMALL_STATE(1116)] = 69629, - [SMALL_STATE(1117)] = 69669, - [SMALL_STATE(1118)] = 69687, - [SMALL_STATE(1119)] = 69708, - [SMALL_STATE(1120)] = 69745, - [SMALL_STATE(1121)] = 69780, - [SMALL_STATE(1122)] = 69801, - [SMALL_STATE(1123)] = 69818, - [SMALL_STATE(1124)] = 69835, - [SMALL_STATE(1125)] = 69870, - [SMALL_STATE(1126)] = 69887, - [SMALL_STATE(1127)] = 69916, - [SMALL_STATE(1128)] = 69933, - [SMALL_STATE(1129)] = 69962, - [SMALL_STATE(1130)] = 69991, - [SMALL_STATE(1131)] = 70026, - [SMALL_STATE(1132)] = 70061, - [SMALL_STATE(1133)] = 70090, - [SMALL_STATE(1134)] = 70111, - [SMALL_STATE(1135)] = 70140, - [SMALL_STATE(1136)] = 70169, - [SMALL_STATE(1137)] = 70190, - [SMALL_STATE(1138)] = 70219, - [SMALL_STATE(1139)] = 70240, - [SMALL_STATE(1140)] = 70275, - [SMALL_STATE(1141)] = 70310, - [SMALL_STATE(1142)] = 70341, - [SMALL_STATE(1143)] = 70370, - [SMALL_STATE(1144)] = 70399, - [SMALL_STATE(1145)] = 70434, - [SMALL_STATE(1146)] = 70463, - [SMALL_STATE(1147)] = 70480, - [SMALL_STATE(1148)] = 70509, - [SMALL_STATE(1149)] = 70526, - [SMALL_STATE(1150)] = 70561, - [SMALL_STATE(1151)] = 70590, - [SMALL_STATE(1152)] = 70625, - [SMALL_STATE(1153)] = 70642, - [SMALL_STATE(1154)] = 70659, - [SMALL_STATE(1155)] = 70688, - [SMALL_STATE(1156)] = 70719, - [SMALL_STATE(1157)] = 70756, - [SMALL_STATE(1158)] = 70791, - [SMALL_STATE(1159)] = 70826, - [SMALL_STATE(1160)] = 70846, - [SMALL_STATE(1161)] = 70862, - [SMALL_STATE(1162)] = 70878, - [SMALL_STATE(1163)] = 70912, - [SMALL_STATE(1164)] = 70928, - [SMALL_STATE(1165)] = 70948, - [SMALL_STATE(1166)] = 70968, - [SMALL_STATE(1167)] = 70994, - [SMALL_STATE(1168)] = 71028, - [SMALL_STATE(1169)] = 71062, - [SMALL_STATE(1170)] = 71078, - [SMALL_STATE(1171)] = 71094, - [SMALL_STATE(1172)] = 71114, - [SMALL_STATE(1173)] = 71134, - [SMALL_STATE(1174)] = 71150, - [SMALL_STATE(1175)] = 71184, - [SMALL_STATE(1176)] = 71200, - [SMALL_STATE(1177)] = 71216, - [SMALL_STATE(1178)] = 71232, - [SMALL_STATE(1179)] = 71266, - [SMALL_STATE(1180)] = 71282, - [SMALL_STATE(1181)] = 71316, - [SMALL_STATE(1182)] = 71344, - [SMALL_STATE(1183)] = 71364, - [SMALL_STATE(1184)] = 71398, - [SMALL_STATE(1185)] = 71432, - [SMALL_STATE(1186)] = 71461, - [SMALL_STATE(1187)] = 71490, - [SMALL_STATE(1188)] = 71519, - [SMALL_STATE(1189)] = 71548, - [SMALL_STATE(1190)] = 71577, - [SMALL_STATE(1191)] = 71606, - [SMALL_STATE(1192)] = 71637, - [SMALL_STATE(1193)] = 71666, - [SMALL_STATE(1194)] = 71695, - [SMALL_STATE(1195)] = 71710, - [SMALL_STATE(1196)] = 71739, - [SMALL_STATE(1197)] = 71770, - [SMALL_STATE(1198)] = 71799, - [SMALL_STATE(1199)] = 71828, - [SMALL_STATE(1200)] = 71857, - [SMALL_STATE(1201)] = 71886, - [SMALL_STATE(1202)] = 71915, - [SMALL_STATE(1203)] = 71944, - [SMALL_STATE(1204)] = 71973, - [SMALL_STATE(1205)] = 71988, - [SMALL_STATE(1206)] = 72003, - [SMALL_STATE(1207)] = 72032, - [SMALL_STATE(1208)] = 72061, - [SMALL_STATE(1209)] = 72090, - [SMALL_STATE(1210)] = 72119, - [SMALL_STATE(1211)] = 72148, - [SMALL_STATE(1212)] = 72174, - [SMALL_STATE(1213)] = 72198, - [SMALL_STATE(1214)] = 72222, - [SMALL_STATE(1215)] = 72248, - [SMALL_STATE(1216)] = 72272, - [SMALL_STATE(1217)] = 72298, - [SMALL_STATE(1218)] = 72326, - [SMALL_STATE(1219)] = 72354, - [SMALL_STATE(1220)] = 72382, - [SMALL_STATE(1221)] = 72408, - [SMALL_STATE(1222)] = 72430, - [SMALL_STATE(1223)] = 72456, - [SMALL_STATE(1224)] = 72480, - [SMALL_STATE(1225)] = 72504, - [SMALL_STATE(1226)] = 72532, - [SMALL_STATE(1227)] = 72560, - [SMALL_STATE(1228)] = 72584, - [SMALL_STATE(1229)] = 72610, - [SMALL_STATE(1230)] = 72634, - [SMALL_STATE(1231)] = 72662, - [SMALL_STATE(1232)] = 72688, - [SMALL_STATE(1233)] = 72712, - [SMALL_STATE(1234)] = 72738, - [SMALL_STATE(1235)] = 72764, - [SMALL_STATE(1236)] = 72788, - [SMALL_STATE(1237)] = 72812, - [SMALL_STATE(1238)] = 72840, - [SMALL_STATE(1239)] = 72866, - [SMALL_STATE(1240)] = 72892, - [SMALL_STATE(1241)] = 72918, - [SMALL_STATE(1242)] = 72942, - [SMALL_STATE(1243)] = 72968, - [SMALL_STATE(1244)] = 72994, - [SMALL_STATE(1245)] = 73022, - [SMALL_STATE(1246)] = 73050, - [SMALL_STATE(1247)] = 73074, - [SMALL_STATE(1248)] = 73100, - [SMALL_STATE(1249)] = 73124, - [SMALL_STATE(1250)] = 73148, - [SMALL_STATE(1251)] = 73174, - [SMALL_STATE(1252)] = 73196, - [SMALL_STATE(1253)] = 73224, - [SMALL_STATE(1254)] = 73248, - [SMALL_STATE(1255)] = 73274, - [SMALL_STATE(1256)] = 73298, - [SMALL_STATE(1257)] = 73324, - [SMALL_STATE(1258)] = 73348, - [SMALL_STATE(1259)] = 73374, - [SMALL_STATE(1260)] = 73398, - [SMALL_STATE(1261)] = 73422, - [SMALL_STATE(1262)] = 73446, - [SMALL_STATE(1263)] = 73474, - [SMALL_STATE(1264)] = 73490, - [SMALL_STATE(1265)] = 73514, - [SMALL_STATE(1266)] = 73530, - [SMALL_STATE(1267)] = 73558, - [SMALL_STATE(1268)] = 73582, - [SMALL_STATE(1269)] = 73600, - [SMALL_STATE(1270)] = 73618, - [SMALL_STATE(1271)] = 73642, - [SMALL_STATE(1272)] = 73668, - [SMALL_STATE(1273)] = 73691, - [SMALL_STATE(1274)] = 73714, - [SMALL_STATE(1275)] = 73735, - [SMALL_STATE(1276)] = 73752, - [SMALL_STATE(1277)] = 73773, - [SMALL_STATE(1278)] = 73794, - [SMALL_STATE(1279)] = 73815, - [SMALL_STATE(1280)] = 73832, - [SMALL_STATE(1281)] = 73845, - [SMALL_STATE(1282)] = 73862, - [SMALL_STATE(1283)] = 73879, - [SMALL_STATE(1284)] = 73892, - [SMALL_STATE(1285)] = 73905, - [SMALL_STATE(1286)] = 73926, - [SMALL_STATE(1287)] = 73939, - [SMALL_STATE(1288)] = 73960, - [SMALL_STATE(1289)] = 73983, - [SMALL_STATE(1290)] = 74008, - [SMALL_STATE(1291)] = 74031, - [SMALL_STATE(1292)] = 74054, - [SMALL_STATE(1293)] = 74071, - [SMALL_STATE(1294)] = 74092, - [SMALL_STATE(1295)] = 74105, - [SMALL_STATE(1296)] = 74122, - [SMALL_STATE(1297)] = 74145, - [SMALL_STATE(1298)] = 74158, - [SMALL_STATE(1299)] = 74175, - [SMALL_STATE(1300)] = 74198, - [SMALL_STATE(1301)] = 74211, - [SMALL_STATE(1302)] = 74228, - [SMALL_STATE(1303)] = 74249, - [SMALL_STATE(1304)] = 74262, - [SMALL_STATE(1305)] = 74280, - [SMALL_STATE(1306)] = 74302, - [SMALL_STATE(1307)] = 74322, - [SMALL_STATE(1308)] = 74336, - [SMALL_STATE(1309)] = 74350, - [SMALL_STATE(1310)] = 74364, - [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)] = 74496, - [SMALL_STATE(1319)] = 74518, - [SMALL_STATE(1320)] = 74538, - [SMALL_STATE(1321)] = 74558, - [SMALL_STATE(1322)] = 74572, - [SMALL_STATE(1323)] = 74584, - [SMALL_STATE(1324)] = 74604, - [SMALL_STATE(1325)] = 74624, - [SMALL_STATE(1326)] = 74644, - [SMALL_STATE(1327)] = 74664, - [SMALL_STATE(1328)] = 74684, - [SMALL_STATE(1329)] = 74702, - [SMALL_STATE(1330)] = 74722, - [SMALL_STATE(1331)] = 74742, - [SMALL_STATE(1332)] = 74762, - [SMALL_STATE(1333)] = 74774, - [SMALL_STATE(1334)] = 74790, - [SMALL_STATE(1335)] = 74808, - [SMALL_STATE(1336)] = 74828, - [SMALL_STATE(1337)] = 74848, - [SMALL_STATE(1338)] = 74868, - [SMALL_STATE(1339)] = 74880, - [SMALL_STATE(1340)] = 74900, - [SMALL_STATE(1341)] = 74912, - [SMALL_STATE(1342)] = 74930, - [SMALL_STATE(1343)] = 74950, - [SMALL_STATE(1344)] = 74964, - [SMALL_STATE(1345)] = 74976, - [SMALL_STATE(1346)] = 74998, - [SMALL_STATE(1347)] = 75010, - [SMALL_STATE(1348)] = 75030, - [SMALL_STATE(1349)] = 75042, - [SMALL_STATE(1350)] = 75062, - [SMALL_STATE(1351)] = 75078, - [SMALL_STATE(1352)] = 75100, - [SMALL_STATE(1353)] = 75114, - [SMALL_STATE(1354)] = 75134, - [SMALL_STATE(1355)] = 75154, - [SMALL_STATE(1356)] = 75174, - [SMALL_STATE(1357)] = 75196, - [SMALL_STATE(1358)] = 75216, - [SMALL_STATE(1359)] = 75228, - [SMALL_STATE(1360)] = 75248, - [SMALL_STATE(1361)] = 75260, - [SMALL_STATE(1362)] = 75276, - [SMALL_STATE(1363)] = 75294, - [SMALL_STATE(1364)] = 75310, - [SMALL_STATE(1365)] = 75322, - [SMALL_STATE(1366)] = 75336, - [SMALL_STATE(1367)] = 75356, - [SMALL_STATE(1368)] = 75376, - [SMALL_STATE(1369)] = 75388, - [SMALL_STATE(1370)] = 75406, - [SMALL_STATE(1371)] = 75426, - [SMALL_STATE(1372)] = 75438, - [SMALL_STATE(1373)] = 75456, - [SMALL_STATE(1374)] = 75476, - [SMALL_STATE(1375)] = 75496, - [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)] = 75710, - [SMALL_STATE(1388)] = 75727, - [SMALL_STATE(1389)] = 75746, - [SMALL_STATE(1390)] = 75763, - [SMALL_STATE(1391)] = 75778, - [SMALL_STATE(1392)] = 75795, - [SMALL_STATE(1393)] = 75814, - [SMALL_STATE(1394)] = 75831, - [SMALL_STATE(1395)] = 75842, - [SMALL_STATE(1396)] = 75853, - [SMALL_STATE(1397)] = 75872, - [SMALL_STATE(1398)] = 75889, - [SMALL_STATE(1399)] = 75904, - [SMALL_STATE(1400)] = 75923, - [SMALL_STATE(1401)] = 75936, - [SMALL_STATE(1402)] = 75955, - [SMALL_STATE(1403)] = 75970, - [SMALL_STATE(1404)] = 75989, - [SMALL_STATE(1405)] = 76002, - [SMALL_STATE(1406)] = 76013, - [SMALL_STATE(1407)] = 76030, - [SMALL_STATE(1408)] = 76049, - [SMALL_STATE(1409)] = 76068, - [SMALL_STATE(1410)] = 76085, - [SMALL_STATE(1411)] = 76104, - [SMALL_STATE(1412)] = 76121, - [SMALL_STATE(1413)] = 76140, - [SMALL_STATE(1414)] = 76151, - [SMALL_STATE(1415)] = 76170, - [SMALL_STATE(1416)] = 76183, - [SMALL_STATE(1417)] = 76202, - [SMALL_STATE(1418)] = 76217, - [SMALL_STATE(1419)] = 76234, - [SMALL_STATE(1420)] = 76247, - [SMALL_STATE(1421)] = 76264, - [SMALL_STATE(1422)] = 76275, - [SMALL_STATE(1423)] = 76290, - [SMALL_STATE(1424)] = 76307, - [SMALL_STATE(1425)] = 76324, - [SMALL_STATE(1426)] = 76341, - [SMALL_STATE(1427)] = 76356, - [SMALL_STATE(1428)] = 76375, - [SMALL_STATE(1429)] = 76392, - [SMALL_STATE(1430)] = 76403, - [SMALL_STATE(1431)] = 76422, - [SMALL_STATE(1432)] = 76441, - [SMALL_STATE(1433)] = 76460, - [SMALL_STATE(1434)] = 76477, - [SMALL_STATE(1435)] = 76488, - [SMALL_STATE(1436)] = 76507, - [SMALL_STATE(1437)] = 76526, - [SMALL_STATE(1438)] = 76537, - [SMALL_STATE(1439)] = 76554, - [SMALL_STATE(1440)] = 76571, - [SMALL_STATE(1441)] = 76590, - [SMALL_STATE(1442)] = 76609, - [SMALL_STATE(1443)] = 76626, - [SMALL_STATE(1444)] = 76643, - [SMALL_STATE(1445)] = 76662, - [SMALL_STATE(1446)] = 76681, - [SMALL_STATE(1447)] = 76696, - [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)] = 77159, - [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)] = 77487, - [SMALL_STATE(1504)] = 77501, - [SMALL_STATE(1505)] = 77515, - [SMALL_STATE(1506)] = 77529, - [SMALL_STATE(1507)] = 77543, - [SMALL_STATE(1508)] = 77557, - [SMALL_STATE(1509)] = 77573, - [SMALL_STATE(1510)] = 77587, - [SMALL_STATE(1511)] = 77601, - [SMALL_STATE(1512)] = 77611, - [SMALL_STATE(1513)] = 77625, - [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)] = 77987, - [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)] = 78431, - [SMALL_STATE(1573)] = 78445, - [SMALL_STATE(1574)] = 78459, - [SMALL_STATE(1575)] = 78473, - [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)] = 78707, - [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)] = 79080, - [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)] = 79358, - [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)] = 79482, - [SMALL_STATE(1655)] = 79495, - [SMALL_STATE(1656)] = 79504, - [SMALL_STATE(1657)] = 79517, - [SMALL_STATE(1658)] = 79530, - [SMALL_STATE(1659)] = 79543, - [SMALL_STATE(1660)] = 79556, - [SMALL_STATE(1661)] = 79565, - [SMALL_STATE(1662)] = 79578, - [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)] = 79704, - [SMALL_STATE(1673)] = 79717, - [SMALL_STATE(1674)] = 79726, - [SMALL_STATE(1675)] = 79739, - [SMALL_STATE(1676)] = 79752, - [SMALL_STATE(1677)] = 79765, - [SMALL_STATE(1678)] = 79778, - [SMALL_STATE(1679)] = 79791, - [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)] = 79928, - [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)] = 80024, - [SMALL_STATE(1699)] = 80037, - [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)] = 80137, - [SMALL_STATE(1708)] = 80150, - [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)] = 80246, - [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)] = 80763, - [SMALL_STATE(1758)] = 80776, - [SMALL_STATE(1759)] = 80789, - [SMALL_STATE(1760)] = 80802, - [SMALL_STATE(1761)] = 80815, - [SMALL_STATE(1762)] = 80828, - [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)] = 81084, - [SMALL_STATE(1784)] = 81092, - [SMALL_STATE(1785)] = 81102, - [SMALL_STATE(1786)] = 81110, - [SMALL_STATE(1787)] = 81120, - [SMALL_STATE(1788)] = 81130, - [SMALL_STATE(1789)] = 81140, - [SMALL_STATE(1790)] = 81148, - [SMALL_STATE(1791)] = 81158, - [SMALL_STATE(1792)] = 81168, - [SMALL_STATE(1793)] = 81176, - [SMALL_STATE(1794)] = 81186, - [SMALL_STATE(1795)] = 81194, - [SMALL_STATE(1796)] = 81202, - [SMALL_STATE(1797)] = 81212, - [SMALL_STATE(1798)] = 81222, - [SMALL_STATE(1799)] = 81232, - [SMALL_STATE(1800)] = 81240, - [SMALL_STATE(1801)] = 81248, - [SMALL_STATE(1802)] = 81258, - [SMALL_STATE(1803)] = 81266, - [SMALL_STATE(1804)] = 81276, - [SMALL_STATE(1805)] = 81284, - [SMALL_STATE(1806)] = 81294, - [SMALL_STATE(1807)] = 81304, - [SMALL_STATE(1808)] = 81312, - [SMALL_STATE(1809)] = 81320, - [SMALL_STATE(1810)] = 81328, - [SMALL_STATE(1811)] = 81338, - [SMALL_STATE(1812)] = 81348, - [SMALL_STATE(1813)] = 81356, - [SMALL_STATE(1814)] = 81364, - [SMALL_STATE(1815)] = 81374, - [SMALL_STATE(1816)] = 81382, - [SMALL_STATE(1817)] = 81390, - [SMALL_STATE(1818)] = 81400, - [SMALL_STATE(1819)] = 81408, - [SMALL_STATE(1820)] = 81418, - [SMALL_STATE(1821)] = 81428, - [SMALL_STATE(1822)] = 81438, - [SMALL_STATE(1823)] = 81448, - [SMALL_STATE(1824)] = 81458, - [SMALL_STATE(1825)] = 81466, - [SMALL_STATE(1826)] = 81476, - [SMALL_STATE(1827)] = 81486, - [SMALL_STATE(1828)] = 81494, - [SMALL_STATE(1829)] = 81502, - [SMALL_STATE(1830)] = 81512, - [SMALL_STATE(1831)] = 81522, - [SMALL_STATE(1832)] = 81532, - [SMALL_STATE(1833)] = 81542, - [SMALL_STATE(1834)] = 81550, - [SMALL_STATE(1835)] = 81558, - [SMALL_STATE(1836)] = 81566, - [SMALL_STATE(1837)] = 81576, - [SMALL_STATE(1838)] = 81584, - [SMALL_STATE(1839)] = 81594, - [SMALL_STATE(1840)] = 81602, - [SMALL_STATE(1841)] = 81612, - [SMALL_STATE(1842)] = 81620, - [SMALL_STATE(1843)] = 81630, - [SMALL_STATE(1844)] = 81638, - [SMALL_STATE(1845)] = 81646, - [SMALL_STATE(1846)] = 81654, - [SMALL_STATE(1847)] = 81662, - [SMALL_STATE(1848)] = 81672, - [SMALL_STATE(1849)] = 81682, - [SMALL_STATE(1850)] = 81692, - [SMALL_STATE(1851)] = 81702, - [SMALL_STATE(1852)] = 81710, - [SMALL_STATE(1853)] = 81720, - [SMALL_STATE(1854)] = 81728, - [SMALL_STATE(1855)] = 81736, - [SMALL_STATE(1856)] = 81746, - [SMALL_STATE(1857)] = 81754, - [SMALL_STATE(1858)] = 81762, - [SMALL_STATE(1859)] = 81770, - [SMALL_STATE(1860)] = 81780, - [SMALL_STATE(1861)] = 81790, - [SMALL_STATE(1862)] = 81798, - [SMALL_STATE(1863)] = 81806, - [SMALL_STATE(1864)] = 81814, - [SMALL_STATE(1865)] = 81824, - [SMALL_STATE(1866)] = 81834, - [SMALL_STATE(1867)] = 81844, - [SMALL_STATE(1868)] = 81854, - [SMALL_STATE(1869)] = 81864, - [SMALL_STATE(1870)] = 81874, - [SMALL_STATE(1871)] = 81884, - [SMALL_STATE(1872)] = 81892, - [SMALL_STATE(1873)] = 81902, - [SMALL_STATE(1874)] = 81912, - [SMALL_STATE(1875)] = 81922, - [SMALL_STATE(1876)] = 81930, - [SMALL_STATE(1877)] = 81938, - [SMALL_STATE(1878)] = 81946, - [SMALL_STATE(1879)] = 81954, - [SMALL_STATE(1880)] = 81962, - [SMALL_STATE(1881)] = 81972, - [SMALL_STATE(1882)] = 81982, - [SMALL_STATE(1883)] = 81992, - [SMALL_STATE(1884)] = 82002, - [SMALL_STATE(1885)] = 82010, - [SMALL_STATE(1886)] = 82018, - [SMALL_STATE(1887)] = 82028, - [SMALL_STATE(1888)] = 82038, - [SMALL_STATE(1889)] = 82046, - [SMALL_STATE(1890)] = 82056, - [SMALL_STATE(1891)] = 82064, - [SMALL_STATE(1892)] = 82074, - [SMALL_STATE(1893)] = 82082, - [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)] = 82170, - [SMALL_STATE(1903)] = 82180, - [SMALL_STATE(1904)] = 82190, - [SMALL_STATE(1905)] = 82198, - [SMALL_STATE(1906)] = 82206, - [SMALL_STATE(1907)] = 82214, - [SMALL_STATE(1908)] = 82224, - [SMALL_STATE(1909)] = 82232, - [SMALL_STATE(1910)] = 82240, - [SMALL_STATE(1911)] = 82248, - [SMALL_STATE(1912)] = 82258, - [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)] = 82326, - [SMALL_STATE(1920)] = 82334, - [SMALL_STATE(1921)] = 82342, - [SMALL_STATE(1922)] = 82352, - [SMALL_STATE(1923)] = 82360, - [SMALL_STATE(1924)] = 82370, - [SMALL_STATE(1925)] = 82380, - [SMALL_STATE(1926)] = 82390, - [SMALL_STATE(1927)] = 82398, - [SMALL_STATE(1928)] = 82406, - [SMALL_STATE(1929)] = 82414, - [SMALL_STATE(1930)] = 82422, - [SMALL_STATE(1931)] = 82430, - [SMALL_STATE(1932)] = 82438, - [SMALL_STATE(1933)] = 82448, - [SMALL_STATE(1934)] = 82458, - [SMALL_STATE(1935)] = 82468, - [SMALL_STATE(1936)] = 82476, - [SMALL_STATE(1937)] = 82486, - [SMALL_STATE(1938)] = 82494, - [SMALL_STATE(1939)] = 82504, - [SMALL_STATE(1940)] = 82514, - [SMALL_STATE(1941)] = 82524, - [SMALL_STATE(1942)] = 82534, - [SMALL_STATE(1943)] = 82544, - [SMALL_STATE(1944)] = 82552, - [SMALL_STATE(1945)] = 82562, - [SMALL_STATE(1946)] = 82570, - [SMALL_STATE(1947)] = 82578, - [SMALL_STATE(1948)] = 82586, - [SMALL_STATE(1949)] = 82596, - [SMALL_STATE(1950)] = 82604, - [SMALL_STATE(1951)] = 82612, - [SMALL_STATE(1952)] = 82622, - [SMALL_STATE(1953)] = 82630, - [SMALL_STATE(1954)] = 82638, - [SMALL_STATE(1955)] = 82648, - [SMALL_STATE(1956)] = 82658, - [SMALL_STATE(1957)] = 82668, - [SMALL_STATE(1958)] = 82678, - [SMALL_STATE(1959)] = 82688, - [SMALL_STATE(1960)] = 82698, - [SMALL_STATE(1961)] = 82708, - [SMALL_STATE(1962)] = 82716, - [SMALL_STATE(1963)] = 82726, - [SMALL_STATE(1964)] = 82734, - [SMALL_STATE(1965)] = 82744, - [SMALL_STATE(1966)] = 82754, - [SMALL_STATE(1967)] = 82764, - [SMALL_STATE(1968)] = 82772, - [SMALL_STATE(1969)] = 82780, - [SMALL_STATE(1970)] = 82788, - [SMALL_STATE(1971)] = 82798, - [SMALL_STATE(1972)] = 82808, - [SMALL_STATE(1973)] = 82816, - [SMALL_STATE(1974)] = 82824, - [SMALL_STATE(1975)] = 82834, - [SMALL_STATE(1976)] = 82842, - [SMALL_STATE(1977)] = 82850, - [SMALL_STATE(1978)] = 82860, - [SMALL_STATE(1979)] = 82868, - [SMALL_STATE(1980)] = 82876, - [SMALL_STATE(1981)] = 82884, - [SMALL_STATE(1982)] = 82892, - [SMALL_STATE(1983)] = 82902, - [SMALL_STATE(1984)] = 82912, - [SMALL_STATE(1985)] = 82922, - [SMALL_STATE(1986)] = 82930, - [SMALL_STATE(1987)] = 82940, - [SMALL_STATE(1988)] = 82950, - [SMALL_STATE(1989)] = 82958, - [SMALL_STATE(1990)] = 82968, - [SMALL_STATE(1991)] = 82978, - [SMALL_STATE(1992)] = 82986, - [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(2)] = 0, + [SMALL_STATE(3)] = 33, + [SMALL_STATE(4)] = 68, + [SMALL_STATE(5)] = 97, + [SMALL_STATE(6)] = 126, + [SMALL_STATE(7)] = 152, + [SMALL_STATE(8)] = 178, + [SMALL_STATE(9)] = 201, + [SMALL_STATE(10)] = 218, + [SMALL_STATE(11)] = 241, + [SMALL_STATE(12)] = 264, + [SMALL_STATE(13)] = 281, + [SMALL_STATE(14)] = 301, + [SMALL_STATE(15)] = 319, + [SMALL_STATE(16)] = 339, + [SMALL_STATE(17)] = 355, + [SMALL_STATE(18)] = 375, + [SMALL_STATE(19)] = 391, + [SMALL_STATE(20)] = 407, + [SMALL_STATE(21)] = 422, + [SMALL_STATE(22)] = 437, + [SMALL_STATE(23)] = 454, + [SMALL_STATE(24)] = 471, + [SMALL_STATE(25)] = 488, + [SMALL_STATE(26)] = 505, + [SMALL_STATE(27)] = 520, + [SMALL_STATE(28)] = 534, + [SMALL_STATE(29)] = 548, + [SMALL_STATE(30)] = 562, + [SMALL_STATE(31)] = 576, + [SMALL_STATE(32)] = 590, + [SMALL_STATE(33)] = 604, + [SMALL_STATE(34)] = 618, + [SMALL_STATE(35)] = 632, + [SMALL_STATE(36)] = 646, + [SMALL_STATE(37)] = 660, + [SMALL_STATE(38)] = 674, + [SMALL_STATE(39)] = 688, + [SMALL_STATE(40)] = 702, + [SMALL_STATE(41)] = 716, + [SMALL_STATE(42)] = 730, + [SMALL_STATE(43)] = 744, + [SMALL_STATE(44)] = 758, + [SMALL_STATE(45)] = 772, + [SMALL_STATE(46)] = 786, + [SMALL_STATE(47)] = 800, + [SMALL_STATE(48)] = 804, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [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(1826), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [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), - [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(1053), - [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [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(1375), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [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(848), - [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(665), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [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(1382), - [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(1644), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interval_fields, 1), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [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(843), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [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(849), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [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(1826), - [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(1025), - [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(843), - [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(1412), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(737), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(712), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(697), - [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(1044), - [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(426), - [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(1068), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [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(740), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [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(495), - [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(766), - [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(670), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [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(1205), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [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(672), - [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(2087), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [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(416), - [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(2189), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [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(1961), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [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(2254), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [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(1286), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [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(662), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [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(1043), - [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(706), - [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(1042), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [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(2244), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2025), - [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(2240), - [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(1876), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 5), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 6), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2150), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2126), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [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(600), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1826), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1780), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1025), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2390), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1579), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2387), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2386), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1580), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1581), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(411), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [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(1507), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [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(1944), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [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(1866), - [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(607), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [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(599), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [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(483), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [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(593), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [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(23), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [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(510), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [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(20), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [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_function, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), - [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(1248), - [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}}, REDUCE(sym_from_item, 1), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [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(2090), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1941), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [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_table, 2), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), - [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 = 1, .reusable = true}}, SHIFT(1619), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1341), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2089), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [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(1900), - [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(1990), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1687), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1996), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2030), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2029), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1993), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2022), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1176), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(2021), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1372), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2330), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [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(664), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), - [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(aux_sym_table_column_item_repeat1, 2), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(754), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1898), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1092), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2163), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2148), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(2139), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1911), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1783), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_kw, 1), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_kw, 1), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(717), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_contains_op, 1), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_contains_op, 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 = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(2077), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1261), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1362), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(2293), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(766), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(726), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(708), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1236), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1253), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [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(703), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [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, 4), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, .production_id = 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 10), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 5), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 11), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 3), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(1263), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1430), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), - [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(1814), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2), SHIFT_REPEAT(1431), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1246), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 2), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 5), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, .production_id = 1), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, .production_id = 3), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 4), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1647), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(842), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_values, 3), - [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat2, 2), SHIFT_REPEAT(1241), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [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(2128), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(756), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 2), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(718), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 2), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 4), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 4), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_type_statement, 5), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_item, 1), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_drop_function_statement, 3), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_drop_function_statement_repeat1, 2), SHIFT_REPEAT(1407), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [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(2005), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 8), - [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(1850), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [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(1850), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [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 = false}}, SHIFT(487), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [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(1806), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [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(408), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 12), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [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(1503), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_returning_repeat1, 2), SHIFT_REPEAT(705), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), - [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(1276), - [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(1767), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [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(705), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [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(1767), - [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(396), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [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(1936), - [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(785), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(692), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [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(734), - [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(960), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), SHIFT_REPEAT(694), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_values_repeat1, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(1554), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [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(648), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1770), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1697), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [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(694), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(1539), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(1318), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(1130), - [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(654), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [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(1408), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), - [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_grant_targets, 3), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(1530), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), - [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, 3), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, .production_id = 1), - [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(722), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [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(542), - [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(578), - [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(695), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10, .production_id = 5), - [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(1073), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [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(850), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [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_function_statement, 11), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_cursor_statement, 4), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [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(1568), - [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(1100), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 4), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 6), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [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}}, REDUCE(sym_drop_function_statement, 5), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), - [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}}, SHIFT(1090), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [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(1508), - [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(1327), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [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}}, SHIFT(2208), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 4), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_run_as, 2), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [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}}, REDUCE(sym_trigger_exec, 3), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_diagnostics_statement, 3), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [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_return_table, 5), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [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(1259), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [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(1965), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 7), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [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}}, SHIFT(1960), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [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}}, REDUCE(sym_grant_statement, 6), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [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_create_trigger_statement, 9), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [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(1849), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4207] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [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(1538), - [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), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [13] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [15] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [18] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [21] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 3), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_column_definitions_repeat1, 2), SHIFT_REPEAT(11), + [52] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_column_definitions_repeat1, 2), + [54] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [56] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2), + [58] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [60] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [62] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_not_exists, 3), + [64] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_definition, 1, .production_id = 1), + [66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [70] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_reference, 1, .production_id = 1), + [72] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_definitions, 2), + [74] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_definitions, 3), + [76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [78] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table, 4), + [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [84] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [90] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_temporary, 1), + [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_definitions, 4), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table, 5), + [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_reference, 3, .production_id = 2), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__create_statement, 1), + [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ddl_statement, 1), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table, 6), + [114] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marginalia, 3), }; #ifdef __cplusplus @@ -94941,6 +1617,8 @@ extern const TSLanguage *tree_sitter_plpgsql(void) { .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym__identifier, .primary_state_ids = ts_primary_state_ids, }; return &language; diff --git a/test/corpus/alter_table_statement.txt b/test/corpus/alter_table_statement.txt deleted file mode 100644 index ab9a56c..0000000 --- a/test/corpus/alter_table_statement.txt +++ /dev/null @@ -1,353 +0,0 @@ -================================================================================ -add column -================================================================================ -alter table foo add bar text; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (table_column_item - (identifier) - (identifier)))))) - -================================================================================ -if exists -================================================================================ -alter table if exists foo add bar text; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (if_exists) - (identifier) - (alter_table_change - (alter_table_action - (table_column_item - (identifier) - (identifier)))))) - -================================================================================ -add column if not exists -================================================================================ -alter table foo add column if not exists bar text; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (if_not_exists) - (table_column_item - (identifier) - (identifier)))))) - -================================================================================ -drop column -================================================================================ -alter table foo drop column bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier))))) - -================================================================================ -drop column cascade -================================================================================ -alter table foo drop column bar cascade; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -drop column restrict -================================================================================ -alter table foo drop column bar restrict; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -drop column if exists -================================================================================ -alter table foo drop column if exists bar restrict; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (if_exists) - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -set column default -================================================================================ -alter table foo alter bar set default 4; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action - (number)))))) - -================================================================================ -drop column default -================================================================================ -alter table foo alter bar drop default; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action))))) - -================================================================================ -alter column type -================================================================================ -alter table foo alter bar type text; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action - (alter_column_type - (identifier))))))) - -================================================================================ -alter column type(1) -================================================================================ -alter table foo alter bar set data type text; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action - (alter_column_type - (identifier))))))) - -================================================================================ -alter column type(2) -================================================================================ -alter table foo alter column bar set data type timestamptz using created at time zone 'utc'; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action - (alter_column_type - (identifier) - (time_expression - (identifier) - (string)))))))) - -================================================================================ -column set not null -================================================================================ -alter table foo alter bar set not null; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action))))) - -================================================================================ -column drop not null -================================================================================ -alter table foo alter bar drop not null; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_column_action))))) - -================================================================================ -column add constraint -================================================================================ -alter table foo add constraint u_bar unique(bar); --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (table_constraint - (identifier) - (table_constraint_ty - (identifier))))))) - -================================================================================ -column drop constraint -================================================================================ -alter table foo drop constraint u_bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier))))) - -================================================================================ -column drop constraint cascade -================================================================================ -alter table foo drop constraint u_bar cascade; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -column drop constraint restrict -================================================================================ -alter table foo drop constraint u_bar restrict; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -column drop constraint if exists -================================================================================ -alter table foo drop constraint if exists u_bar restrict; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (if_exists) - (identifier) - (alter_table_fk_ref_action))))) - -================================================================================ -many changes in columns -================================================================================ -alter table foo drop constraint foo, add unique(foo); --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_action - (identifier)) - (alter_table_action - (table_constraint - (table_constraint_ty - (identifier))))))) - -================================================================================ -rename column -================================================================================ -alter table foo rename column foo to bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_rename_column - (identifier) - (identifier))))) - -================================================================================ -rename constraint -================================================================================ -alter table foo rename constraint foo to foo.bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_rename_constraint - (identifier) - (identifier))))) - -================================================================================ -rename table -================================================================================ -alter table foo rename to foo.bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_rename_table - (identifier))))) - -================================================================================ -change schema -================================================================================ -alter table foo set schema bar; --------------------------------------------------------------------------------- - -(source_file - (alter_table_statement - (identifier) - (alter_table_change - (alter_table_change_schema - (identifier))))) diff --git a/test/corpus/create/table.txt b/test/corpus/create/table.txt new file mode 100644 index 0000000..a1b36a2 --- /dev/null +++ b/test/corpus/create/table.txt @@ -0,0 +1,38 @@ +================================================================================ +Create an empty table +================================================================================ +create table foo (); +-------------------------------------------------------------------------------- + +(source_file + (statement + (create_table + (keyword_create) + (keyword_table) + (table_reference + name: (identifier) + ) + (column_definitions) + ) + ) +) + +================================================================================ +Create an empty table in specified schema +================================================================================ +create table public.foo (); +-------------------------------------------------------------------------------- + +(source_file + (statement + (create_table + (keyword_create) + (keyword_table) + (table_reference + schema: (identifier) + name: (identifier) + ) + (column_definitions) + ) + ) +) diff --git a/test/corpus/create_function/general.txt b/test/corpus/create_function/general.txt deleted file mode 100644 index f96e060..0000000 --- a/test/corpus/create_function/general.txt +++ /dev/null @@ -1,192 +0,0 @@ -================================================================================ -body block -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS $$ BEGIN END $$ LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (block - (dollar_quote) - (body) - (dollar_quote)) - (identifier))) - -================================================================================ -or replace -================================================================================ -CREATE OR REPLACE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (or_replace) - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -immutable -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql IMMUTABLE; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier) - (function_volatility))) - -================================================================================ -stable -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql STABLE; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier) - (function_volatility))) - -================================================================================ -volatile -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql VOLATILE; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier) - (function_volatility))) - -================================================================================ -returns array -================================================================================ -CREATE FUNCTION FOO () RETURNS text[] AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -returns setof -================================================================================ -CREATE FUNCTION FOO () RETURNS SETOF text AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (return_setof - (identifier))) - (string) - (identifier))) - -================================================================================ -returns setof array -================================================================================ -CREATE FUNCTION FOO () RETURNS SETOF text[] AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (return_setof - (identifier))) - (string) - (identifier))) - -================================================================================ -returns table -================================================================================ -CREATE FUNCTION FOO () RETURNS TABLE(a text, b bigint) AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (return_table - (var_declaration - (identifier) - (identifier)) - (var_declaration - (identifier) - (identifier)))) - (string) - (identifier))) - -================================================================================ -security definer -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql SECURITY definer; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier) - (function_run_as))) - -================================================================================ -security invoker -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql SECURITY INVOKER; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier) - (function_run_as))) diff --git a/test/corpus/create_function/parameters.txt b/test/corpus/create_function/parameters.txt deleted file mode 100644 index 444d96b..0000000 --- a/test/corpus/create_function/parameters.txt +++ /dev/null @@ -1,98 +0,0 @@ -================================================================================ -empty -================================================================================ -CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters)) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -with argument -================================================================================ -CREATE FUNCTION FOO (_foo bar.baz) RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters - (var_declaration - (identifier) - (identifier)))) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -default value -================================================================================ -CREATE FUNCTION FOO (_foo bar.baz default '42') RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters - (var_declaration - (identifier) - (identifier)) - (string))) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -with arguments -================================================================================ -CREATE FUNCTION FOO (foo bar, foo bar) RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters - (var_declaration - (identifier) - (identifier)) - (var_declaration - (identifier) - (identifier)))) - (function_return - (identifier)) - (string) - (identifier))) - -================================================================================ -arrays -================================================================================ -CREATE FUNCTION FOO (foo bar[], foo bar[][]) RETURNS void AS 'select' LANGUAGE sql; --------------------------------------------------------------------------------- - -(source_file - (create_function_statement - (function_signature - (identifier) - (function_parameters - (var_declaration - (identifier) - (identifier)) - (var_declaration - (identifier) - (identifier)))) - (function_return - (identifier)) - (string) - (identifier))) diff --git a/test/corpus/create_index_statement.txt b/test/corpus/create_index_statement.txt deleted file mode 100644 index 5576858..0000000 --- a/test/corpus/create_index_statement.txt +++ /dev/null @@ -1,93 +0,0 @@ -================================================================================ -basic -================================================================================ -create index ON foo.bar(col); --------------------------------------------------------------------------------- - -(source_file - (create_index_statement - (identifier) - (index_col - (identifier)))) - -================================================================================ -with columns -================================================================================ -create index on foo.bar ( - col ASC NULLS FIRST, - col DESC NULLS LAST, - col NULLS FIRST, - (upper(col)) DESC); --------------------------------------------------------------------------------- - -(source_file - (create_index_statement - (identifier) - (index_col - (identifier) - (index_col_dir) - (index_col_nulls)) - (index_col - (identifier) - (index_col_dir) - (index_col_nulls)) - (index_col - (identifier) - (index_col_nulls)) - (index_col - (function_call - (identifier) - (identifier)) - (index_col_dir)))) - -================================================================================ -full syntax -================================================================================ -create unique index concurrently if not exists idx_name on foo.bar using gist (col, (upper(bar))); --------------------------------------------------------------------------------- - -(source_file - (create_index_statement - (if_not_exists) - (identifier) - (identifier) - (index_using - (identifier)) - (index_col - (identifier)) - (index_col - (function_call - (identifier) - (identifier))))) - -================================================================================ -include -================================================================================ -create index ON foo.bar(col) include (col1, col2); --------------------------------------------------------------------------------- - -(source_file - (create_index_statement - (identifier) - (index_col - (identifier)) - (index_includes - (identifier) - (identifier)))) - -================================================================================ -partial -================================================================================ -create index ON foo.bar(col) where col > 25; --------------------------------------------------------------------------------- - -(source_file - (create_index_statement - (identifier) - (index_col - (identifier)) - (where_filter - (op_expression - (identifier) - (comparison_op) - (number))))) diff --git a/test/corpus/create_schema_statement.txt b/test/corpus/create_schema_statement.txt deleted file mode 100644 index f64658b..0000000 --- a/test/corpus/create_schema_statement.txt +++ /dev/null @@ -1,77 +0,0 @@ -================================================================================ -basic -================================================================================ -create schema foo; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (identifier))) - -================================================================================ -for user -================================================================================ -create schema authorization joe; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (schema_role - (identifier)))) - -================================================================================ -for current_user -================================================================================ -create schema authorization current_user; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (schema_role))) - -================================================================================ -for session_user -================================================================================ -create schema authorization session_user; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (schema_role))) - -================================================================================ -with name, for user -================================================================================ -create schema foo authorization joe; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (identifier) - (schema_role - (identifier)))) - -================================================================================ -if not exists -================================================================================ -create schema if not exists foo authorization joe; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (if_not_exists) - (identifier) - (schema_role - (identifier)))) - -================================================================================ -if not exists with name -================================================================================ -create schema if not exists authorization joe; --------------------------------------------------------------------------------- - -(source_file - (create_schema_statement - (if_not_exists) - (schema_role - (identifier)))) diff --git a/test/corpus/create_sequence_statement.txt b/test/corpus/create_sequence_statement.txt deleted file mode 100644 index 4b43a95..0000000 --- a/test/corpus/create_sequence_statement.txt +++ /dev/null @@ -1,234 +0,0 @@ -================================================================================ -basic -================================================================================ -create sequence foo; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier))) - -================================================================================ -if not exists -================================================================================ -create sequence if not exists foo; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (if_not_exists) - (identifier))) - -================================================================================ -temp -================================================================================ -create temp sequence foo; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (temporary) - (identifier))) - -================================================================================ -temporary -================================================================================ -create temporary sequence foo; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (temporary) - (identifier))) - -================================================================================ -as -================================================================================ -create sequence foo as smallint; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (as - (identifier)))) - -================================================================================ -increment -================================================================================ -create sequence foo increment 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_increment - (number)))) - -================================================================================ -increment by -================================================================================ -create sequence foo increment by 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_increment - (number)))) - -================================================================================ -minvalue -================================================================================ -create sequence foo minvalue 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_min - (number)))) - -================================================================================ -no minvalue -================================================================================ -create sequence foo no minvalue; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_min))) - -================================================================================ -max value -================================================================================ -create sequence foo maxvalue 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_max - (number)))) - -================================================================================ -no max value -================================================================================ -create sequence foo no maxvalue; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_max))) - -================================================================================ -start -================================================================================ -create sequence foo start 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_start - (number)))) - -================================================================================ -start with -================================================================================ -create sequence foo start with 5; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_start - (number)))) - -================================================================================ -cache -================================================================================ -create sequence foo cache 4; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_cache - (number)))) - -================================================================================ -no cycle -================================================================================ -create sequence foo no cycle; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_cycle))) - -================================================================================ -cycle -================================================================================ -create sequence foo cycle; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_cycle))) - -================================================================================ -owned by -================================================================================ -create sequence foo owned by foo.bar; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_owned - (identifier)))) - -================================================================================ -owned by none -================================================================================ -create sequence foo owned by none; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (identifier) - (sequence_owned))) - -================================================================================ -full syntax -================================================================================ -create temp sequence if not exists foo -as bigint increment -5 -minvalue 5 no maxvalue -start with 3 cache 2 no cycle -owned by none; --------------------------------------------------------------------------------- - -(source_file - (create_sequence_statement - (temporary) - (if_not_exists) - (identifier) - (as - (identifier)) - (sequence_increment - (number)) - (sequence_min - (number)) - (sequence_max) - (sequence_start - (number)) - (sequence_cache - (number)) - (sequence_cycle) - (sequence_owned))) diff --git a/test/corpus/create_table_statement.txt b/test/corpus/create_table_statement.txt deleted file mode 100644 index 31cd3ea..0000000 --- a/test/corpus/create_table_statement.txt +++ /dev/null @@ -1,345 +0,0 @@ -================================================================================ -create an empty table -================================================================================ -create table foo(); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - ) -) - -================================================================================ -create temporary table -================================================================================ -create temp table foo(); - -create temporary table foo(); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (temporary) - (identifier) - ) - (create_table_statement - (temporary) - (identifier) - ) -) - -================================================================================ -create table if not exists -================================================================================ -create table if not exists foo(); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (if_not_exists) - (identifier) - ) -) - -================================================================================ -create unlogged table -================================================================================ -create unlogged table foo(); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (unlogged) - (identifier) - ) -) - -================================================================================ -create table with predefined types -================================================================================ -create table foo( - col1 numeric, - col2 numeric(2), - col3 numeric(2, 4), - col4 varchar, - col5 varchar(255) -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_column_item - (identifier) - (predefined_type) - ) - ) - (create_table_item - (table_column_item - (identifier) - (predefined_type (precision (number))) - ) - ) - (create_table_item - (table_column_item - (identifier) - (predefined_type (precision (number) (number))) - ) - ) - (create_table_item - (table_column_item - (identifier) - (predefined_type) - ) - ) - (create_table_item - (table_column_item - (identifier) - (predefined_type (type_length (number))) - ) - ) - ) -) - -================================================================================ -constraints with deferred -================================================================================ -create table foo( - col1 text not null deferrable, - col2 bigint not null deferrable initially immediate, - col3 numeric(2, 4) null deferrable initially deferred -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty) - (constraint_when)))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty) - (constraint_when)))) - (create_table_item - (table_column_item - (identifier) - (predefined_type - (precision - (number) - (number))) - (column_constraint - (column_constraint_ty) - (constraint_when)))))) - -================================================================================ -column constraints -================================================================================ -create table foo( - col1 text not null primary key check( col1 > b), - col2 bigint null default 25 deferrable initially immediate constraint a_name unique, - col3 numeric(2, 4) null deferrable initially deferred, - col4 int references foo.baz -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty)) - (column_constraint - (column_constraint_ty)) - (column_constraint - (column_constraint_ty - (op_expression - (identifier) - (comparison_op) - (identifier)))))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty)) - (column_constraint - (column_constraint_ty - (number)) - (constraint_when)) - (column_constraint - (identifier) - (column_constraint_ty)))) - (create_table_item - (table_column_item - (identifier) - (predefined_type - (precision - (number) - (number))) - (column_constraint - (column_constraint_ty) - (constraint_when)))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty - (constraint_foreign_key - (identifier)))))))) - -================================================================================ -column fk references -================================================================================ -create table foo( - col int references foo.baz(col1, col2), - col int references foo.baz on delete set default, - col int references foo.baz on delete no action on update cascade, - col int references foo.baz on delete restrict on update set null -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty - (constraint_foreign_key - (identifier) - (identifier) - (identifier)))))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty - (constraint_foreign_key - (identifier) - (fk_action - (fk_ref_action))))))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty - (constraint_foreign_key - (identifier) - (fk_action - (fk_ref_action)) - (fk_action - (fk_ref_action))))))) - (create_table_item - (table_column_item - (identifier) - (identifier) - (column_constraint - (column_constraint_ty - (constraint_foreign_key - (identifier) - (fk_action - (fk_ref_action)) - (fk_action - (fk_ref_action))))))))) - -================================================================================ -table constraints - check -================================================================================ -create table foo( - constraint one check (column_a > 5), - check (column_b > 5) -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_constraint - (identifier) - (table_constraint_ty - (op_expression - (identifier) - (comparison_op) - (number))))) - (create_table_item - (table_constraint - (table_constraint_ty - (op_expression - (identifier) - (comparison_op) - (number))))))) - -================================================================================ -table constraints - unique -================================================================================ -create table foo( - unique (column_a, column_b) -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_constraint - (table_constraint_ty - (identifier) - (identifier)))))) - -================================================================================ -table constraints - pk -================================================================================ -create table foo( - primary key (column_a, column_b) -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_constraint - (table_constraint_ty - (identifier) - (identifier)))))) - -================================================================================ -table constraints - fk -================================================================================ -create table foo( - foreign key (column_a, column_b) references foo(name, age, bar) -); --------------------------------------------------------------------------------- - -(source_file - (create_table_statement - (identifier) - (create_table_item - (table_constraint - (table_constraint_ty - (identifier) - (identifier) - (constraint_foreign_key - (identifier) - (identifier) - (identifier) - (identifier))))))) diff --git a/test/corpus/create_trigger_statement.txt b/test/corpus/create_trigger_statement.txt deleted file mode 100644 index 361ab1b..0000000 --- a/test/corpus/create_trigger_statement.txt +++ /dev/null @@ -1,184 +0,0 @@ -================================================================================ -basic -================================================================================ -create trigger tr before insert on mytable execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -constraint -================================================================================ -create constraint trigger tr before insert on mytable execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -after -================================================================================ -create trigger tr after insert on mytable execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -instead of -================================================================================ -create trigger tr instead of insert on mytable execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -many when -================================================================================ -create trigger tr before insert or update or delete or truncate on mytable execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -scope for statement -================================================================================ -create trigger tr before insert on mytable for statement execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_scope) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -scope for each row -================================================================================ -create trigger tr before insert on mytable for each row execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_scope) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -scope for each statement -================================================================================ -create trigger tr before insert on mytable for each statement execute foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_scope) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -execute procedure -================================================================================ -create trigger tr before insert on mytable execute procedure foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -execute function -================================================================================ -create trigger tr before insert on mytable execute function foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_exec - (function_call - (identifier))))) - -================================================================================ -when -================================================================================ -create constraint trigger a.tr before insert or delete on foo.mytable for each statement when (new.baz != old.baz) execute function foo(); --------------------------------------------------------------------------------- - -(source_file - (create_trigger_statement - (identifier) - (trigger_when) - (trigger_event) - (identifier) - (trigger_scope) - (trigger_cond - (op_expression - (identifier) - (comparison_op) - (identifier))) - (trigger_exec - (function_call - (identifier))))) diff --git a/test/corpus/create_type_statement.txt b/test/corpus/create_type_statement.txt deleted file mode 100644 index b2ce43b..0000000 --- a/test/corpus/create_type_statement.txt +++ /dev/null @@ -1,37 +0,0 @@ -================================================================================ -empty -================================================================================ -create type foo; --------------------------------------------------------------------------------- - -(source_file - (create_type_statement - (identifier))) - -================================================================================ -with fields -================================================================================ -create type foo as ( one text, two bigint[] ); --------------------------------------------------------------------------------- - -(source_file - (create_type_statement - (identifier) - (var_declaration - (identifier) - (identifier)) - (var_declaration - (identifier) - (identifier)))) - -================================================================================ -enum -================================================================================ -create type foo.bar as enum ('one', 'two'); --------------------------------------------------------------------------------- - -(source_file - (create_type_statement - (identifier) - (string) - (string))) diff --git a/test/corpus/delete_statement.txt b/test/corpus/delete_statement.txt deleted file mode 100644 index 4ebd809..0000000 --- a/test/corpus/delete_statement.txt +++ /dev/null @@ -1,104 +0,0 @@ -================================================================================ -whole table -================================================================================ -delete from tasks; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (identifier))) - -================================================================================ -where -================================================================================ -delete from tasks where status <> 'Musical'; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (identifier) - (where_filter - (op_expression - (identifier) - (comparison_op) - (string))))) - -================================================================================ -returning -================================================================================ -DELETE FROM tasks WHERE status = 'DONE' RETURNING *; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (identifier) - (where_filter - (op_expression - (identifier) - (comparison_op) - (string))) - (select_item - (star)))) - -================================================================================ -delete using subselect -================================================================================ -DELETE FROM foo a USING (select baz from bar) b WHERE a.b = b.b; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (identifier) - (identifier) - (delete_using - (from_item - (from_select - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier))))) - (identifier)))) - (where_filter - (op_expression - (identifier) - (comparison_op) - (identifier))))) - -================================================================================ -with cte -================================================================================ -with foo as (select * from bar) -delete from baz; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (identifier))) - -================================================================================ -returning into -================================================================================ -delete from foo -returning id into _backup_id; --------------------------------------------------------------------------------- - -(source_file - (delete_statement - (identifier) - (select_item - (identifier)) - (into - (identifier)))) diff --git a/test/corpus/drop_function_statement.txt b/test/corpus/drop_function_statement.txt deleted file mode 100644 index 2ea047d..0000000 --- a/test/corpus/drop_function_statement.txt +++ /dev/null @@ -1,102 +0,0 @@ -================================================================================ -basic -================================================================================ -drop function foo(bigint, text); --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier) - (identifier) - (identifier)))) - -================================================================================ -many at once -================================================================================ -drop function foo(bigint, text), foo(bigint); --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier) - (identifier) - (identifier)) - (drop_function_item - (identifier) - (identifier)))) - -================================================================================ -without args -================================================================================ -drop function foo; --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier)))) - -================================================================================ -with no args -================================================================================ -drop function foo(); --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier)))) - -================================================================================ -cascade -================================================================================ -drop function foo(bigint) cascade; --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier) - (identifier)))) - -================================================================================ -restrict -================================================================================ -drop function foo(bigint) restrict; --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (identifier) - (identifier)))) - -================================================================================ -if exists -================================================================================ -drop function if exists foo(); --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (if_exists) - (identifier)))) - -================================================================================ -with argnames -================================================================================ -drop function if exists foo(bar text, bigint); --------------------------------------------------------------------------------- - -(source_file - (drop_function_statement - (drop_function_item - (if_exists) - (identifier) - (var_declaration - (identifier) - (identifier)) - (identifier)))) diff --git a/test/corpus/drop_type_statement.txt b/test/corpus/drop_type_statement.txt deleted file mode 100644 index 904f0a7..0000000 --- a/test/corpus/drop_type_statement.txt +++ /dev/null @@ -1,51 +0,0 @@ -================================================================================ -basic -================================================================================ -drop type foo; --------------------------------------------------------------------------------- - -(source_file - (drop_type_statement - (identifier))) - -================================================================================ -many at once -================================================================================ -drop type foo, bar; --------------------------------------------------------------------------------- - -(source_file - (drop_type_statement - (identifier) - (identifier))) - -================================================================================ -cascade -================================================================================ -drop type foo cascade; --------------------------------------------------------------------------------- - -(source_file - (drop_type_statement - (identifier))) - -================================================================================ -restrict -================================================================================ -drop type foo restrict; --------------------------------------------------------------------------------- - -(source_file - (drop_type_statement - (identifier))) - -================================================================================ -if exists -================================================================================ -drop type if exists foo; --------------------------------------------------------------------------------- - -(source_file - (drop_type_statement - (if_exists) - (identifier))) diff --git a/test/corpus/execute_statement.txt b/test/corpus/execute_statement.txt deleted file mode 100644 index 4b5a149..0000000 --- a/test/corpus/execute_statement.txt +++ /dev/null @@ -1,214 +0,0 @@ -================================================================================ -basic -================================================================================ -do $$ begin execute 'command'; end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (string))) - (dollar_quote)))) - -================================================================================ -into -================================================================================ -do $$ begin execute 'command' into var; end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (string) - (into - (identifier)))) - (dollar_quote)))) - -================================================================================ -into strict -================================================================================ -do $$ begin execute 'command' into strict var; end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (string) - (into - (identifier)))) - (dollar_quote)))) - -================================================================================ -using -================================================================================ -do $$ begin execute 'command' using 1, foo(bar); end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (string) - (execute_using - (number) - (function_call - (identifier) - (identifier))))) - (dollar_quote)))) - -================================================================================ -function call -================================================================================ -do $$ begin execute foo() into strict var using 1; end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (function_call - (identifier)) - (into - (identifier)) - (execute_using - (number)))) - (dollar_quote)))) - -================================================================================ -string concatenation -================================================================================ -do $$ begin execute 'foo' || 'bar' into _date; end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (op_expression - (string) - (other_op) - (string)) - (into - (identifier)))) - (dollar_quote)))) - -================================================================================ -simple nested dollar quote -================================================================================ -do $$ begin -execute format( - $sql$ - select %1$s, - select 2, - $sql$ - , _tbl_name) using bar; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier)))) - (dollar_quote)))) - -================================================================================ -execute format dollar quote -================================================================================ -do $$ begin -execute format( - $sql$ - update %1$s - set foo = $1, %2$I = $1 - $sql$ - , _tbl_name) using bar; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier)))) - (dollar_quote)))) - -================================================================================ -complex -================================================================================ -do $$ begin -EXECUTE FORMAT( - $sql$ - UPDATE %2$s SET new_val = $1 - FROM ( SELECT serial AS _serial, created FROM %1$s ) t1 - $sql$ - , _tbl_name) USING baz, bar; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier) - (identifier)))) - (dollar_quote)))) - -================================================================================ -complex(1) -================================================================================ -do $$ begin -EXECUTE FORMAT($sql$ -foo -$sql$ , _tbl_name) USING bar.baz; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier)))) - (dollar_quote)))) diff --git a/test/corpus/grant_statement.txt b/test/corpus/grant_statement.txt deleted file mode 100644 index 75a66b6..0000000 --- a/test/corpus/grant_statement.txt +++ /dev/null @@ -1,177 +0,0 @@ -================================================================================ -basic -================================================================================ -grant all on table foo to postgres; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -all privileges -================================================================================ -GRANT ALL PRIVILEGES ON TABLE FOO.BAR TO POSTGRES; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -many users -================================================================================ -grant all on table foo to my_user, group another_user, current_user, public, session_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier) - (identifier)))) - -================================================================================ -on schema -================================================================================ -GRANT CREATE, USAGE ON SCHEMA esl, esl_archive TO mercures_ws; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges - (identifier) - (identifier)) - (grant_targets - (identifier) - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -all tables in schema -================================================================================ -grant all on all tables in schema foo to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -many tables -================================================================================ -grant all on table bar, baz to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier) - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -functions -================================================================================ -grant all on all functions in schema foo to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -function -================================================================================ -grant all on function bar(text), baz(_arg my.type) to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (grant_function - (identifier) - (identifier)) - (grant_function - (identifier) - (identifier) - (identifier))) - (grant_roles - (identifier)))) - -================================================================================ -all sequences -================================================================================ -grant all on all sequences in schema foo to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -many sequences -================================================================================ -grant all on sequence bar, baz to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges) - (grant_targets - (identifier) - (identifier)) - (grant_roles - (identifier)))) - -================================================================================ -many privileges -================================================================================ -grant connect, create, delete, execute, insert, references, select, temporary, trigger, truncate, update, usage on table bar to my_user; --------------------------------------------------------------------------------- - -(source_file - (grant_statement - (grant_privileges - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier) - (identifier)) - (grant_targets - (identifier)) - (grant_roles - (identifier)))) diff --git a/test/corpus/insert_statement/insert.txt b/test/corpus/insert_statement/insert.txt deleted file mode 100644 index 7b048e6..0000000 --- a/test/corpus/insert_statement/insert.txt +++ /dev/null @@ -1,288 +0,0 @@ -================================================================================ -basic -================================================================================ -insert into my_table values (1); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (insert_values - (insert_item (number)) - ) - ) - ) -) - -================================================================================ -insert into table by specified columns -================================================================================ -insert into my_table (name, email, display_name) values - ('foo', 'bar@biz.baz', 'Foo bar'); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (columns - (identifier) - (identifier) - (identifier) - ) - (insert_items - (insert_values - (insert_item (string)) - (insert_item (string)) - (insert_item (string)) - ) - ) - ) -) - -================================================================================ -insert into table by specified columns with many values -================================================================================ -insert into my_table (name, email, display_name) values - ('foo', 'bar@biz.baz', 'Foo bar'), - ('foo', 'bar@biz.baz', 'Foo bar'), - ('foo', 'bar@biz.baz', 'Foo bar'); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (columns - (identifier) - (identifier) - (identifier) - ) - (insert_items - (insert_values - (insert_item (string)) - (insert_item (string)) - (insert_item (string)) - ) - (insert_values - (insert_item (string)) - (insert_item (string)) - (insert_item (string)) - ) - (insert_values - (insert_item (string)) - (insert_item (string)) - (insert_item (string)) - ) - ) - ) -) - -================================================================================ -insert into table with alias -================================================================================ -insert into foo.my_table as alias values(1); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (as (identifier)) - (insert_items - (insert_values - (insert_item (number)) - ) - ) - ) -) - -================================================================================ -insert into default values -================================================================================ -insert into foo.my_table default values; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - ) -) - -================================================================================ -insert into with many value items -================================================================================ -insert into foo.my_table values (1, 2); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (insert_values - (insert_item (number)) - (insert_item (number)) - ) - ) - ) -) - -================================================================================ -insert into with different kind of value items -================================================================================ -insert into foo.my_table values (1, DEFAULT, (select 1, 2)); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (insert_values - (insert_item (number)) - (insert_item) - (insert_item - (select_statement - (select_item (number)) - (select_item (number)) - ) - ) - ) - ) - ) -) - -================================================================================ -insert into from select -================================================================================ -insert into foo.my_table select column1 from foo bar; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (select_statement - (select_item (identifier)) - (select_from - (from_item - (from_table - (identifier) - (identifier) - ) - ) - ) - ) - ) - ) -) - -================================================================================ -insert into a table with the select enclosed in parentheses -================================================================================ -insert into foo.my_table (select column1 from foo bar); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (select_statement - (select_item (identifier)) - (select_from - (from_item - (from_table - (identifier) - (identifier) - ) - ) - ) - ) - ) - ) -) - -================================================================================ -insert into with returning clause -================================================================================ -insert into foo values (1) returning *, 1; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items - (insert_values - (insert_item (number)) - ) - ) - (returning - (select_item (star)) - (select_item (number)) - ) - ) -) - -================================================================================ -insert into using with clause -================================================================================ -with foo as (select * from bar) -insert into my_table values (1); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item (star)) - (select_from - (from_item - (from_table - (identifier) - ) - ) - ) - ) - ) - ) - (identifier) - (insert_items - (insert_values - (insert_item (number)) - ) - ) - ) -) - -================================================================================ -insert into statement with returning into clause -================================================================================ -insert into foo (bar, baz) select * from another -returning id into _var; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (columns - (identifier) - (identifier) - ) - (insert_items - (select_statement - (select_item (star)) - (select_from - (from_item - (from_table - (identifier) - ) - ) - ) - ) - ) - (returning - (select_item (identifier)) - ) - (into (identifier)) - ) -) diff --git a/test/corpus/insert_statement/on_conflict.txt b/test/corpus/insert_statement/on_conflict.txt deleted file mode 100644 index 0e489a1..0000000 --- a/test/corpus/insert_statement/on_conflict.txt +++ /dev/null @@ -1,169 +0,0 @@ -================================================================================ -on constraint do nothing -================================================================================ -insert into foo default values on conflict on constraint foo do nothing; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier))))) - -================================================================================ -on conflict column names -================================================================================ -insert into foo default values on conflict (foo, bar) do nothing; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier) - (identifier))))) - -================================================================================ -on conflict value expressions -================================================================================ -insert into foo default values on conflict (coalesce(one, two), bar) do nothing; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (function_call - (identifier) - (identifier) - (identifier)) - (identifier))))) - -================================================================================ -update with default -================================================================================ -insert into foo default values on conflict (foo) do update set foo = default; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (update_value))))) - -================================================================================ -update with expression -================================================================================ -insert into foo default values on conflict (foo) do update set foo = 1; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (update_value - (number)))))) - -================================================================================ -update with expression(1) -================================================================================ -insert into foo default values on conflict (foo) do update set (foo) = (1); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (update_value - (number)))))) - -================================================================================ -update with expression(2) -================================================================================ -insert into foo default values on conflict (foo) do update set (foo, bar) = (1, 2, default); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (identifier) - (update_value - (number)) - (update_value - (number)) - (update_value))))) - -================================================================================ -update with expression(3) -================================================================================ -insert into foo default values on conflict (foo) do update set foo = 1, bar = default, baz = (select 1); --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (update_value - (number))) - (update_set - (identifier) - (update_value)) - (update_set - (identifier) - (update_value - (select_statement - (select_item - (number)))))))) - -================================================================================ -update with expression(4) -================================================================================ -insert into foo default values on conflict (foo) do update set (foo) = (1), bar = default; --------------------------------------------------------------------------------- - -(source_file - (insert_statement - (identifier) - (insert_items) - (insert_conflict - (conflict_target - (identifier)) - (update_set - (identifier) - (update_value - (number))) - (update_set - (identifier) - (update_value))))) diff --git a/test/corpus/plpgsql/block.txt b/test/corpus/plpgsql/block.txt deleted file mode 100644 index dc176bf..0000000 --- a/test/corpus/plpgsql/block.txt +++ /dev/null @@ -1,196 +0,0 @@ -================================================================================ -empty -================================================================================ -DO $$ BEGIN END $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body) - (dollar_quote)))) - -================================================================================ -empty(1) -================================================================================ -DO $$ DECLARE BEGIN END $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (declarations) - (body) - (dollar_quote)))) - -================================================================================ -many declare(s) -================================================================================ -DO $$ -DECLARE one text; -DECLARE - name foo%TYPE; - age bar%ROWTYPE; -BEGIN END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (declarations - (var_definition - (var_declaration - (identifier) - (identifier)))) - (declarations - (var_definition - (var_declaration - (identifier) - (identifier))) - (var_definition - (var_declaration - (identifier) - (identifier)))) - (body) - (dollar_quote)))) - -================================================================================ -declare variables -================================================================================ -DO $$ -DECLARE - name text; - age bigint; -BEGIN END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (declarations - (var_definition - (var_declaration - (identifier) - (identifier))) - (var_definition - (var_declaration - (identifier) - (identifier)))) - (body) - (dollar_quote)))) - -================================================================================ -declare with assignment -================================================================================ -DO $$ -DECLARE - name text := 'hello'; - age bigint:= (SELECT foo() + 1); -BEGIN END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (declarations - (var_definition - (var_declaration - (identifier) - (identifier)) - (string)) - (var_definition - (var_declaration - (identifier) - (identifier)) - (select_statement - (select_item - (op_expression - (function_call - (identifier)) - (number)))))) - (body) - (dollar_quote)))) - -================================================================================ -perform -================================================================================ -DO $$ -BEGIN - PERFORM foo(); -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (perform_statement - (select_item - (function_call - (identifier))))) - (dollar_quote)))) - -================================================================================ -many statements -================================================================================ -DO $$ -BEGIN - SELECT 1; - foo.bar = lower(foo.baz); - foo.bar := lower(foo.baz); - RETURN 2; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (select_statement - (select_item - (number))) - (assign_statement - (identifier) - (function_call - (identifier) - (identifier))) - (assign_statement - (identifier) - (function_call - (identifier) - (identifier))) - (return_statement - (number))) - (dollar_quote)))) - -================================================================================ -function call with select -================================================================================ -DO $$ BEGIN perform exists(select 1); END $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (perform_statement - (select_item - (function_call - (identifier) - (select_statement - (select_item - (number))))))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/for_statement.txt b/test/corpus/plpgsql/for_statement.txt deleted file mode 100644 index 5664079..0000000 --- a/test/corpus/plpgsql/for_statement.txt +++ /dev/null @@ -1,123 +0,0 @@ -================================================================================ -integer -================================================================================ -do $$ begin -for foo in 1..10 loop select 1; end loop; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (for_statement - (identifier) - (number) - (number) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -integer by step -================================================================================ -do $$ begin -for foo in 1..do_something() by 5 loop select 1; end loop; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (for_statement - (identifier) - (number) - (function_call - (identifier)) - (number) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -integer reverse -================================================================================ -do $$ begin -for foo in reverse 10..1 by 5 loop select 1; end loop; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (for_statement - (identifier) - (number) - (number) - (number) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -for over query -================================================================================ -do $$ begin -for foo, var in select generate_series(1,10) loop select 1; end loop; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (for_statement - (identifier) - (identifier) - (select_statement - (select_item - (function_call - (identifier) - (number) - (number)))) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -for over execute -================================================================================ -do $$ begin -for foo, var in execute format($sql$ select $1 from %1$s; $sql$, _foo) using bar loop select 1; end loop; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (for_statement - (identifier) - (identifier) - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier))) - (select_statement - (select_item - (number))))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/get_diagnostics_statement.txt b/test/corpus/plpgsql/get_diagnostics_statement.txt deleted file mode 100644 index d264db2..0000000 --- a/test/corpus/plpgsql/get_diagnostics_statement.txt +++ /dev/null @@ -1,25 +0,0 @@ -================================================================================ -get diagnostics -================================================================================ -DO $$ -BEGIN - get current diagnostics foo = ROW_COUNT; - get diagnostics bar := ROW_COUNT; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (get_diagnostics_statement - (assign_statement - (identifier) - (identifier))) - (get_diagnostics_statement - (assign_statement - (identifier) - (identifier)))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/if_statement.txt b/test/corpus/plpgsql/if_statement.txt deleted file mode 100644 index 8288308..0000000 --- a/test/corpus/plpgsql/if_statement.txt +++ /dev/null @@ -1,224 +0,0 @@ -================================================================================ -basic -================================================================================ -do $$ begin -if true then select 1; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (true) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -many statements -================================================================================ -do $$ begin -if true then select 1; select 2; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (true) - (select_statement - (select_item - (number))) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -if then else -================================================================================ -do $$ begin -if var <> 5 then return 1; else return 2; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)) - (return_statement - (number)))) - (dollar_quote)))) - -================================================================================ -if then else if -================================================================================ -do $$ begin -if var > 5 then return 1; elsif var = 4 then return 2; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)) - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)))) - (dollar_quote)))) - -================================================================================ -elseif/elsif -================================================================================ -do $$ begin -if var > 5 then return 1; elsif var = 4 then return 2; elseif var = 3 then return 3; else return 4; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)) - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)) - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number)) - (return_statement - (number)))) - (dollar_quote)))) - -================================================================================ -nested -================================================================================ -do $$ begin -if true then return 1; else if var = 4 then return 2; end if; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (true) - (return_statement - (number)) - (if_statement - (op_expression - (identifier) - (comparison_op) - (number)) - (return_statement - (number))))) - (dollar_quote)))) - -================================================================================ -if is not null -================================================================================ -do $$ begin -if foo is not null then select 1; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_null)) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -if is not distinct from -================================================================================ -do $$ begin -if foo is not distinct from bar then select 1; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_kw) - (identifier)) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -if is distinct from -================================================================================ -do $$ begin -if foo is distinct from bar then select 1; end if; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (if_statement - (op_expression - (identifier) - (comparison_kw) - (identifier)) - (select_statement - (select_item - (number))))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/open_cursor_statement.txt b/test/corpus/plpgsql/open_cursor_statement.txt deleted file mode 100644 index 4629a9c..0000000 --- a/test/corpus/plpgsql/open_cursor_statement.txt +++ /dev/null @@ -1,42 +0,0 @@ -================================================================================ -open for select -================================================================================ -DO $$ -BEGIN - OPEN curs for select 2; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (open_cursor_statement - (identifier) - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -open for execute -================================================================================ -DO $$ -BEGIN - open foo for execute('select 1'); -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (open_cursor_statement - (identifier) - (execute_statement - (string)))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/raise_statement.txt b/test/corpus/plpgsql/raise_statement.txt deleted file mode 100644 index b598f90..0000000 --- a/test/corpus/plpgsql/raise_statement.txt +++ /dev/null @@ -1,70 +0,0 @@ -================================================================================ -dummy -================================================================================ -do $$ begin -raise; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (raise_statement)) - (dollar_quote)))) - -================================================================================ -basic -================================================================================ -do $$ begin -raise 'alarms'; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (raise_statement - (string))) - (dollar_quote)))) - -================================================================================ -with level -================================================================================ -do $$ begin -raise notice 'alarms'; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (raise_statement - (identifier) - (string))) - (dollar_quote)))) - -================================================================================ -with level and args -================================================================================ -do $$ begin -raise notice 'alarms %d', _foo, bar; -end $$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (raise_statement - (identifier) - (string) - (identifier) - (identifier))) - (dollar_quote)))) diff --git a/test/corpus/plpgsql/return_statement.txt b/test/corpus/plpgsql/return_statement.txt deleted file mode 100644 index 98852f9..0000000 --- a/test/corpus/plpgsql/return_statement.txt +++ /dev/null @@ -1,64 +0,0 @@ -================================================================================ -return -================================================================================ -DO $$ -BEGIN - RETURN 1; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (return_statement - (number))) - (dollar_quote)))) - -================================================================================ -return query -================================================================================ -DO $$ -BEGIN - RETURN QUERY select 1; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (return_statement - (select_statement - (select_item - (number))))) - (dollar_quote)))) - -================================================================================ -return query execute -================================================================================ -DO $$ -BEGIN - RETURN QUERY execute format($sql$ select %1$s, $1;$sql$, _foo) using bar; -END -$$; --------------------------------------------------------------------------------- - -(source_file - (do_block - (block - (dollar_quote) - (body - (return_statement - (execute_statement - (function_call - (identifier) - (dollar_quote_string) - (identifier)) - (execute_using - (identifier))))) - (dollar_quote)))) diff --git a/test/corpus/select_statement/from.txt b/test/corpus/select_statement/from.txt deleted file mode 100644 index e2924d7..0000000 --- a/test/corpus/select_statement/from.txt +++ /dev/null @@ -1,179 +0,0 @@ -================================================================================ -from table -================================================================================ -SELECT name FROM products; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -from many tables -================================================================================ -SELECT products.name, i.name FROM products, items i, bar as baz; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier))) - (from_item - (from_table - (identifier) - (identifier))) - (from_item - (from_table - (identifier) - (identifier)))))) - -================================================================================ -sub select -================================================================================ -SELECT name FROM (select foo from bar) alias, (select baz from bar) as alias1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_select - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier))))) - (identifier))) - (from_item - (from_select - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier))))) - (identifier)))))) - -================================================================================ -from function call -================================================================================ -select name from foo(bar, baz); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier) - (identifier) - (identifier))))))) - -================================================================================ -from function call with alias -================================================================================ -select name from foo() bar; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier)) - (identifier)))))) - -================================================================================ -from function call with alias(1) -================================================================================ -select name from foo() as bar; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier)) - (identifier)))))) - -================================================================================ -from function call with alias in params -================================================================================ -select name from foo() bar(alias1, alias2); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier)) - (identifier) - (identifier) - (identifier)))))) - -================================================================================ -from function call with alias in params(1) -================================================================================ -select name from foo() as bar(alias1, alias2); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier)) - (identifier) - (identifier) - (identifier)))))) - -================================================================================ -from function call with alias in params(2) -================================================================================ -select name from foo() as (alias1, alias2); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_function - (function_call - (identifier)) - (identifier) - (identifier)))))) diff --git a/test/corpus/select_statement/join.txt b/test/corpus/select_statement/join.txt deleted file mode 100644 index fa3f9bd..0000000 --- a/test/corpus/select_statement/join.txt +++ /dev/null @@ -1,332 +0,0 @@ -================================================================================ -cross join -================================================================================ -SELECT name FROM products cross join items; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (from_item - (from_table - (identifier)))))))) - -================================================================================ -join on -================================================================================ -SELECT name FROM products join items on products.name = items.name; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (op_expression - (identifier) - (comparison_op) - (identifier)))))))) - -================================================================================ -join using -================================================================================ -select name from products join items using(foo); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))))))) - -================================================================================ -natural join -================================================================================ -select name from products natural join items; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier)))))))) - -================================================================================ -inner join -================================================================================ -select name from products inner join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -left join -================================================================================ -select name from products left join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -right join -================================================================================ -select name from products right join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -full join -================================================================================ -select name from products full join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -left outer join -================================================================================ -select name from products left outer join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -right outer join -================================================================================ -select name from products right outer join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -full outer join -================================================================================ -select name from products full outer join items on true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (true))))))) - -================================================================================ -many joins -================================================================================ -select name from products - natural join a - cross join a - join a on a.foo=b.foo - inner join a using(foo) - left join a using(foo) - left outer join a using(foo) - right join a using(foo) - right outer join a using(foo) - full outer join a using(foo) - full join a using(foo); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)) - (join_item - (join_type) - (from_item - (from_table - (identifier)))) - (join_item - (from_item - (from_table - (identifier)))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (op_expression - (identifier) - (comparison_op) - (identifier)))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))) - (join_item - (join_type) - (from_item - (from_table - (identifier))) - (join_condition - (identifier))))))) diff --git a/test/corpus/select_statement/select.txt b/test/corpus/select_statement/select.txt deleted file mode 100644 index 5edb967..0000000 --- a/test/corpus/select_statement/select.txt +++ /dev/null @@ -1,301 +0,0 @@ -================================================================================ -where -================================================================================ -select name from items where true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (true))))) - -================================================================================ -into -================================================================================ -select name into bar from items where true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (into - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (true))))) - -================================================================================ -into at the end -================================================================================ -select * from items where true into _bar; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (true))) - (into - (identifier)))) - -================================================================================ -into strict -================================================================================ -select name into strict bar from items where true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (into - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (true))))) - -================================================================================ -into many -================================================================================ -select foo, bar into a_foo, a_bar from items where true; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_item - (identifier)) - (into - (identifier) - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (true))))) - -================================================================================ -having -================================================================================ -select sum(len) from items having sum(len) < 5; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (function_call - (identifier) - (identifier))) - (select_from - (from_item - (from_table - (identifier)))) - (select_having - (op_expression - (function_call - (identifier) - (identifier)) - (comparison_op) - (number))))) - -================================================================================ -group by -================================================================================ -select name from items group by 1, 2; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_group_by - (number) - (number)))) - -================================================================================ -group by with parens -================================================================================ -select name from items group by (1, 2); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_group_by - (number) - (number)))) - -================================================================================ -order by -================================================================================ -select name from items order by 1, 2 asc, 3 desc, 4 + 4; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_order_by - (order_by_item - (number)) - (order_by_item - (number) - (order_by_direction)) - (order_by_item - (number) - (order_by_direction)) - (order_by_item - (op_expression - (number) - (number)))))) - -================================================================================ -limit -================================================================================ -select name limit 1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_limit - (number)))) - -================================================================================ -limit offet -================================================================================ -select name limit 1 offset 5; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_limit - (number)) - (select_offset - (number)))) - -================================================================================ -offset limit -================================================================================ -select name offset 5 limit 1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_offset - (number)) - (select_limit - (number)))) - -================================================================================ -limit all offset -================================================================================ -select name limit all offset 5; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_limit) - (select_offset - (number)))) - -================================================================================ -offset limit all -================================================================================ -select name offset 5 limit all; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_offset - (number)) - (select_limit))) - -================================================================================ -with cte -================================================================================ -with foo as (select * from bar) -select * from foo; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -select alias star -================================================================================ -SELECT foo.* FROM foo; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier) - (star)) - (select_from - (from_item - (from_table - (identifier)))))) diff --git a/test/corpus/select_statement/value_expression.txt b/test/corpus/select_statement/value_expression.txt deleted file mode 100644 index a49a9a0..0000000 --- a/test/corpus/select_statement/value_expression.txt +++ /dev/null @@ -1,352 +0,0 @@ -================================================================================ -string -================================================================================ -SELECT 'hello'; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (string)))) - -================================================================================ -nested select -================================================================================ -SELECT (SELECT 'hello'); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (select_statement - (select_item - (string)))))) - -================================================================================ -many -================================================================================ -SELECT 1234, -25, TRUE, FALSE, NULL, *; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (number)) - (select_item - (number)) - (select_item - (true)) - (select_item - (false)) - (select_item - (null)) - (select_item - (star)))) - -================================================================================ -identifiers -================================================================================ -SELECT foo, foo.bar; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (identifier)) - (select_item - (identifier)))) - -================================================================================ -arrays -================================================================================ -SELECT - ARRAY[], - array[1, 2], - array[array[1, 2], array[3, 4]], - array[]::integer[]; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (array_constructor)) - (select_item - (array_constructor - (number) - (number))) - (select_item - (array_constructor - (array_constructor - (number) - (number)) - (array_constructor - (number) - (number)))) - (select_item - (op_expression - (array_constructor) - (cast) - (identifier))))) - -================================================================================ -binary_expression -================================================================================ -SELECT a + b - c / d * e % f; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (op_expression - (identifier) - (identifier)) - (op_expression - (op_expression - (op_expression - (identifier) - (identifier)) - (identifier)) - (identifier)))))) - -================================================================================ -unary prec over binary -================================================================================ -SELECT -22 + - (5 + 1); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (number) - (op_expression - (minus) - (op_expression - (number) - (number))))))) - -================================================================================ -nested parens -================================================================================ -SELECT ((((24 + 24)))); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (number) - (number))))) - -================================================================================ -logical expressions -================================================================================ -SELECT 1 - 2 AND TRUE OR (5 = 2); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (op_expression - (op_expression - (number) - (number)) - (and) - (true)) - (or) - (op_expression - (number) - (comparison_op) - (number)))))) - -================================================================================ -function call -================================================================================ -SELECT foo.bar(param) + baz(); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (function_call - (identifier) - (identifier)) - (function_call - (identifier)))))) - -================================================================================ -nested function call -================================================================================ -SELECT coalesce(null, nullif(false, true), ops.my_fn(5)); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (function_call - (identifier) - (null) - (function_call - (identifier) - (false) - (true)) - (function_call - (identifier) - (number)))))) - -================================================================================ -casting -================================================================================ -SELECT 1::text; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (number) - (cast) - (identifier))))) - -================================================================================ -string concatenation -================================================================================ -SELECT 'hello' || 1 || now(); --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (op_expression - (string) - (other_op) - (number)) - (other_op) - (function_call - (identifier)))))) - -================================================================================ -string quote -================================================================================ -SELECT 'hello' || 'quote''s everywh''ere'; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (string) - (other_op) - (string))))) - -================================================================================ -contains_op -================================================================================ -SELECT - 1 in (1, 2), - 'one' in ('one', 'two'), - 2 between 4 and 8, - 'foo' like '%oo', - 'foo' ilike '%oo'; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (number) - (contains_op) - (number) - (number))) - (select_item - (op_expression - (string) - (contains_op) - (string) - (string))) - (select_item - (op_expression - (op_expression - (number) - (contains_op) - (number)) - (and) - (number))) - (select_item - (op_expression - (string) - (contains_op) - (string))) - (select_item - (op_expression - (string) - (contains_op) - (string))))) - -================================================================================ -is null, isnull, is not null, notnull -================================================================================ -SELECT - foo is null, - foo is not null, - foo isnull, - foo notnull; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (identifier) - (comparison_null))) - (select_item - (op_expression - (identifier) - (comparison_null))) - (select_item - (op_expression - (identifier) - (comparison_null))) - (select_item - (op_expression - (identifier) - (comparison_null))))) - -================================================================================ -time expressions -================================================================================ -SELECT - foo::interval, - foo at time zone 'utc', - interval '1 day', - interval '1' hour to second, - interval '1' day + interval '3' month; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (select_item - (op_expression - (identifier) - (cast) - (identifier))) - (select_item - (time_expression - (identifier) - (string))) - (select_item - (time_expression - (string))) - (select_item - (time_expression - (string))) - (select_item - (op_expression - (time_expression - (string)) - (time_expression - (string)))))) diff --git a/test/corpus/update_statement.txt b/test/corpus/update_statement.txt deleted file mode 100644 index 0fe633d..0000000 --- a/test/corpus/update_statement.txt +++ /dev/null @@ -1,168 +0,0 @@ -================================================================================ -update one field -================================================================================ -update items set foo = 'bar'; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (string))))) - -================================================================================ -alias -================================================================================ -update items as t set foo = 'bar'; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (identifier) - (update_set - (identifier) - (update_value - (string))))) - -================================================================================ -update many fields -================================================================================ -update t set col1 = val1, col2 = default returning foo, *; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (identifier))) - (update_set - (identifier) - (update_value)) - (returning - (select_item - (identifier)) - (select_item - (star))))) - -================================================================================ -update many fields(1) -================================================================================ -update t set (col1, col2) = (val1, val2); --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (identifier) - (update_value - (identifier)) - (update_value - (identifier))))) - -================================================================================ -update where -================================================================================ -update t set foo = bar where column1 = 'magic'; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (identifier))) - (where_filter - (op_expression - (identifier) - (comparison_op) - (string))))) - -================================================================================ -update where subselect -================================================================================ -UPDATE t SET a = b + 1 WHERE id = (SELECT foo FROM bar WHERE c = 'd'); --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (op_expression - (identifier) - (number)))) - (where_filter - (op_expression - (identifier) - (comparison_op) - (select_statement - (select_item - (identifier)) - (select_from - (from_item - (from_table - (identifier)))) - (select_where - (where_filter - (op_expression - (identifier) - (comparison_op) - (string))))))))) - -================================================================================ -update from -================================================================================ -UPDATE foo SET bar = bar + 1 FROM t WHERE b = 'z'; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (op_expression - (identifier) - (number)))) - (from_item - (from_table - (identifier))) - (where_filter - (op_expression - (identifier) - (comparison_op) - (string))))) - -================================================================================ -with cte -================================================================================ -with foo as (select * from bar) -update foo set bar = 1; --------------------------------------------------------------------------------- - -(source_file - (update_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (identifier) - (update_set - (identifier) - (update_value - (number))))) diff --git a/test/corpus/with_statement.txt b/test/corpus/with_statement.txt deleted file mode 100644 index 09184a6..0000000 --- a/test/corpus/with_statement.txt +++ /dev/null @@ -1,208 +0,0 @@ -================================================================================ -basic -================================================================================ -with w as (select * from foo) select * from w; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -with column names -================================================================================ -with w(foo, bar) as (select * from foo) select * from w; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (identifier) - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -materialized -================================================================================ -with w as materialized (select * from foo) select * from w; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -not materialized -================================================================================ -with w as not materialized (select * from foo) select * from w; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - -================================================================================ -with delete -================================================================================ -with new as (delete from productes returning *) select 1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (delete_statement - (identifier) - (select_item - (star))))) - (select_item - (number)))) - -================================================================================ -select statement using with clause with insert into -================================================================================ -with new as (insert into foo values(1)) select 1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (insert_statement - (identifier) - (insert_items - (insert_values - (insert_item (number)) - ) - ) - ) - ) - ) - (select_item (number)) - ) -) - -================================================================================ -with update -================================================================================ -with new as (update foo set bar = 1 returning *) select 1; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (update_statement - (identifier) - (update_set - (identifier) - (update_value - (number))) - (returning - (select_item - (star)))))) - (select_item - (number)))) - -================================================================================ -many -================================================================================ -with w as ( - select * from foo -), x as ( - select * from bar -) select * from foo, bar; --------------------------------------------------------------------------------- - -(source_file - (select_statement - (with_query - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier)))))) - (with_query_item - (identifier) - (select_statement - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))))))) - (select_item - (star)) - (select_from - (from_item - (from_table - (identifier))) - (from_item - (from_table - (identifier)))))) diff --git a/tree-sitter-plpgsql.wasm b/tree-sitter-plpgsql.wasm index a4ea96b..7eda81b 100755 Binary files a/tree-sitter-plpgsql.wasm and b/tree-sitter-plpgsql.wasm differ