From e7f520d7e57fc46fc33f340c928f485f8f80d3d0 Mon Sep 17 00:00:00 2001 From: Christian De la Hoz Date: Mon, 30 Aug 2021 20:31:09 +0200 Subject: [PATCH] create type, for, raise and few fixes --- corpus/create_type_statement.txt | 37 + corpus/execute_statement.txt | 118 +- corpus/plpgsql/block.txt | 4 +- corpus/plpgsql/block.txtor_statement.txt | 123 + corpus/plpgsql/raise_statement.txt | 70 + corpus/plpgsql/return_statement.txt | 25 + corpus/select_statement/join.txt | 105 +- corpus/select_statement/select.txt | 56 +- grammar.js | 106 +- src/grammar.json | 1132 +- src/node-types.json | 702 +- src/parser.c | 71493 ++++++++++++--------- 12 files changed, 44542 insertions(+), 29429 deletions(-) create mode 100644 corpus/create_type_statement.txt create mode 100644 corpus/plpgsql/block.txtor_statement.txt create mode 100644 corpus/plpgsql/raise_statement.txt diff --git a/corpus/create_type_statement.txt b/corpus/create_type_statement.txt new file mode 100644 index 0000000..b2ce43b --- /dev/null +++ b/corpus/create_type_statement.txt @@ -0,0 +1,37 @@ +================================================================================ +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/corpus/execute_statement.txt b/corpus/execute_statement.txt index 72fc7da..a4248f9 100644 --- a/corpus/execute_statement.txt +++ b/corpus/execute_statement.txt @@ -60,10 +60,11 @@ do $$ begin execute 'command' using 1, foo(bar); end $$; (body (execute_statement (string) - (number) - (function_call - (identifier) - (identifier)))) + (execute_using + (number) + (function_call + (identifier) + (identifier))))) (dollar_quote)))) ================================================================================ @@ -82,7 +83,8 @@ do $$ begin execute foo() into strict var using 1; end $$; (identifier)) (into (identifier)) - (number))) + (execute_using + (number)))) (dollar_quote)))) ================================================================================ @@ -104,3 +106,109 @@ do $$ begin execute 'foo' || 'bar' into _date; end $$; (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 + $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/corpus/plpgsql/block.txt b/corpus/plpgsql/block.txt index 0a3f235..86c3f38 100644 --- a/corpus/plpgsql/block.txt +++ b/corpus/plpgsql/block.txt @@ -31,8 +31,8 @@ many declare(s) DO $$ DECLARE one text; DECLARE - name text; - age bigint; + name foo%TYPE; + age bar%ROWTYPE; BEGIN END $$; -------------------------------------------------------------------------------- diff --git a/corpus/plpgsql/block.txtor_statement.txt b/corpus/plpgsql/block.txtor_statement.txt new file mode 100644 index 0000000..5664079 --- /dev/null +++ b/corpus/plpgsql/block.txtor_statement.txt @@ -0,0 +1,123 @@ +================================================================================ +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/corpus/plpgsql/raise_statement.txt b/corpus/plpgsql/raise_statement.txt new file mode 100644 index 0000000..4cf3b2b --- /dev/null +++ b/corpus/plpgsql/raise_statement.txt @@ -0,0 +1,70 @@ +================================================================================ +dummy +================================================================================ +do $$ begin +raise; +end $$; +-------------------------------------------------------------------------------- + +(source_file + (do_block + (block + (dollar_quote) + (body + (ERROR)) + (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/corpus/plpgsql/return_statement.txt b/corpus/plpgsql/return_statement.txt index 884d8be..98852f9 100644 --- a/corpus/plpgsql/return_statement.txt +++ b/corpus/plpgsql/return_statement.txt @@ -37,3 +37,28 @@ $$; (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/corpus/select_statement/join.txt b/corpus/select_statement/join.txt index 67c42a0..fa3f9bd 100644 --- a/corpus/select_statement/join.txt +++ b/corpus/select_statement/join.txt @@ -13,8 +13,9 @@ SELECT name FROM products cross join items; (from_table (identifier)) (join_item - (from_table - (identifier))))))) + (from_item + (from_table + (identifier)))))))) ================================================================================ join on @@ -32,8 +33,9 @@ SELECT name FROM products join items on products.name = items.name; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (op_expression (identifier) @@ -56,8 +58,9 @@ select name from products join items using(foo); (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))))))) @@ -77,8 +80,9 @@ select name from products natural join items; (identifier)) (join_item (join_type) - (from_table - (identifier))))))) + (from_item + (from_table + (identifier)))))))) ================================================================================ inner join @@ -96,8 +100,9 @@ select name from products inner join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -117,8 +122,9 @@ select name from products left join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -138,8 +144,9 @@ select name from products right join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -159,8 +166,9 @@ select name from products full join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -180,8 +188,9 @@ select name from products left outer join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -201,8 +210,9 @@ select name from products right outer join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -222,8 +232,9 @@ select name from products full outer join items on true; (identifier)) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (true))))))) @@ -253,15 +264,18 @@ select name from products (identifier)) (join_item (join_type) - (from_table - (identifier))) + (from_item + (from_table + (identifier)))) (join_item - (from_table - (identifier))) + (from_item + (from_table + (identifier)))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (op_expression (identifier) @@ -269,43 +283,50 @@ select name from products (identifier)))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))) (join_item (join_type) - (from_table - (identifier)) + (from_item + (from_table + (identifier))) (join_condition (identifier))))))) diff --git a/corpus/select_statement/select.txt b/corpus/select_statement/select.txt index 60a6077..9330089 100644 --- a/corpus/select_statement/select.txt +++ b/corpus/select_statement/select.txt @@ -36,6 +36,26 @@ select name into bar from items where true; (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 ================================================================================ @@ -158,9 +178,9 @@ select name limit 1; (source_file (select_statement (select_item - (identifier))) - (ERROR - (number))) + (identifier)) + (select_limit + (number)))) ================================================================================ limit offet @@ -173,7 +193,8 @@ select name limit 1 offset 5; (select_item (identifier)) (select_limit - (number) + (number)) + (select_offset (number)))) ================================================================================ @@ -186,8 +207,9 @@ select name offset 5 limit 1; (select_statement (select_item (identifier)) + (select_offset + (number)) (select_limit - (number) (number)))) ================================================================================ @@ -200,7 +222,8 @@ select name limit all offset 5; (select_statement (select_item (identifier)) - (select_limit + (select_limit) + (select_offset (number)))) ================================================================================ @@ -213,8 +236,9 @@ select name offset 5 limit all; (select_statement (select_item (identifier)) - (select_limit - (number)))) + (select_offset + (number)) + (select_limit))) ================================================================================ with cte @@ -241,3 +265,19 @@ select * from foo; (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/grammar.js b/grammar.js index 5aa1ed5..c7686db 100644 --- a/grammar.js +++ b/grammar.js @@ -47,6 +47,7 @@ module.exports = grammar({ $.create_function_statement, $.create_table_statement, $.create_schema_statement, + $.create_type_statement, $.select_statement, $.insert_statement, $.delete_statement, @@ -58,6 +59,13 @@ module.exports = grammar({ $.do_block, ), + 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): update, values _with_query_statement: $ => choice( $.select_statement, @@ -384,13 +392,37 @@ module.exports = grammar({ $._statement, $.assign_statement, $.return_statement, + $.raise_statement, $.if_statement, + $.for_statement, $.execute_statement, $.perform_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($.identifier), + $.string, + optional(seq(",", commaSep($._value_expression))) + ), + if_statement: $ => seq( kw("if"), $._value_expression, kw("then"), repeat1($._plpgsql_statement), repeat(seq( @@ -405,11 +437,13 @@ module.exports = grammar({ kw("execute"), $._value_expression, optional($.into), - optional(seq(kw("using"), commaSep1($._value_expression))), + optional($.execute_using), ), + execute_using: $ => seq(kw("using"), commaSep1($._value_expression)), assign_statement: $ => seq($.identifier, "=", $._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)), @@ -429,7 +463,8 @@ module.exports = grammar({ optional($.select_group_by), optional($.select_having), optional($.select_order_by), - optional($.select_limit), + optional($._select_limit_offset), + optional($.into), )), with_query: $ => seq(kw("with"), commaSep1($.with_query_item)), @@ -440,14 +475,22 @@ module.exports = grammar({ 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: $ => choice( - seq(kw("limit"), $._value_expression, kw("offset"), $._value_expression), - seq(kw("limit"), kw("all"), kw("offset"), $._value_expression), - seq(kw("offset"), $._value_expression, kw("limit"), kw("all")), - seq(kw("offset"), $._value_expression, kw("limit"), $._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"))) ), select_group_by: $ => seq(kw("group"), kw("by"), commaSep1($._value_expression)), select_order_by: $ => seq(kw("order"), kw("by"), commaSep1($.order_by_item)), @@ -460,7 +503,7 @@ module.exports = grammar({ optional($.identifier) ), select_from: $ => seq(kw("from"), commaSep1($.from_item)), - from_item: $ => seq( + from_item: $ => prec.left(seq( // TODO(chrde): https://www.postgresql.org/docs/current/sql-select.html choice( $.from_select, @@ -468,7 +511,7 @@ module.exports = grammar({ $.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( @@ -480,11 +523,11 @@ module.exports = grammar({ )), ), - join_item: $ => choice( - seq(kw("natural"), $.join_type, $.from_table), - seq($.join_type, $.from_table, $.join_condition), - seq(kw("cross"), kw("join"), $.from_table) - ), + 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) @@ -579,10 +622,12 @@ module.exports = grammar({ if_exists: $ => seq(kw("if"), kw("exists")), as: $ => seq(kw("as"), $.identifier), - _type: $ => choice( - $.predefined_types, - $.identifier, - seq($._type, "[", "]"), + _type: $ => seq( + choice($.predefined_types, $.identifier), + optional(choice( + repeat1(seq("[", "]")), + kw("%rowtype"), + kw("%type"))) ), // predefined_type: @@ -639,8 +684,9 @@ module.exports = grammar({ )), _value_expression: $ => choice( - $.string, $.number, + $.dollar_quote_string, + $.string, $.true, $.false, $.null, @@ -650,9 +696,24 @@ module.exports = grammar({ $.function_call, $.op_expression, $.time_expression, + // TODO(chrde): this one feels a bit hacky? perhaps move to identifier regexp + seq($.identifier, ".", $.star), $.identifier, ), + // TODO(chrde): it does not handle nested dollar quotes... perhaps move to an external scanner? + dollar_quote_string: $ => seq( + "$", $._identifier, "$", + /(([^$]+)|(%\d+\$s)|(\$\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), ), @@ -700,6 +761,9 @@ module.exports = grammar({ star: $ => "*", any: $ => /.*/, number: $ => /\d+/, - identifier: $ => /[a-zA-Z0-9_]+[.a-zA-Z0-9_]*/, + 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 } }); diff --git a/src/grammar.json b/src/grammar.json index 69dcc7f..aa73d39 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -45,6 +45,10 @@ "type": "SYMBOL", "name": "create_schema_statement" }, + { + "type": "SYMBOL", + "name": "create_type_statement" + }, { "type": "SYMBOL", "name": "select_statement" @@ -83,6 +87,149 @@ } ] }, + "create_type_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[cC][rR][eE][aA][tT][eE]" + }, + "named": false, + "value": "create" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[tT][yY][pP][eE]" + }, + "named": false, + "value": "type" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[aA][sS]" + }, + "named": false, + "value": "as" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][nN][uU][mM]" + }, + "named": false, + "value": "enum" + }, + { + "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": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[aA][sS]" + }, + "named": false, + "value": "as" + }, + { + "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": [ @@ -4110,6 +4257,18 @@ "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" @@ -4126,6 +4285,373 @@ } ] }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[fF][oO][rR]" + }, + "named": false, + "value": "for" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[iI][nN]" + }, + "named": false, + "value": "in" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[rR][eE][vV][eE][rR][sS][eE]" + }, + "named": false, + "value": "reverse" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[bB][yY]" + }, + "named": false, + "value": "by" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "select_statement" + }, + { + "type": "SYMBOL", + "name": "execute_statement" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[lL][oO][oO][pP]" + }, + "named": false, + "value": "loop" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_plpgsql_statement" + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[lL][oO][oO][pP]" + }, + "named": false, + "value": "loop" + } + ] + }, + "raise_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[rR][aA][iI][sS][eE]" + }, + "named": false, + "value": "raise" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "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" + } + ] + } + ] + }, + "if_statement": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[iI][fF]" + }, + "named": false, + "value": "if" + }, + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + }, + "named": false, + "value": "then" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_plpgsql_statement" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][iI][fF]" + }, + "named": false, + "value": "elsif" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE][iI][fF]" + }, + "named": false, + "value": "elseif" + } + ] + }, + { + "type": "SYMBOL", + "name": "_value_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[tT][hH][eE][nN]" + }, + "named": false, + "value": "then" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_plpgsql_statement" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][lL][sS][eE]" + }, + "named": false, + "value": "else" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_plpgsql_statement" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[eE][nN][dD]" + }, + "named": false, + "value": "end" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[iI][fF]" + }, + "named": false, + "value": "if" + } + ] + }, "execute_statement": { "type": "SEQ", "members": [ @@ -4158,43 +4684,8 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[uU][sS][iI][nN][gG]" - }, - "named": false, - "value": "using" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_value_expression" - } - ] - } - } - ] - } - ] + "type": "SYMBOL", + "name": "execute_using" }, { "type": "BLANK" @@ -4203,6 +4694,45 @@ } ] }, + "execute_using": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[uU][sS][iI][nN][gG]" + }, + "named": false, + "value": "using" + }, + { + "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": [ @@ -4253,6 +4783,24 @@ } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[qQ][uU][eE][rR][yY]" + }, + "named": false, + "value": "query" + }, + { + "type": "SYMBOL", + "name": "execute_statement" + } + ] + }, { "type": "SYMBOL", "name": "_value_expression" @@ -4463,7 +5011,19 @@ "members": [ { "type": "SYMBOL", - "name": "select_limit" + "name": "_select_limit_offset" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "into" }, { "type": "BLANK" @@ -4661,37 +5221,27 @@ } ] }, - "select_limit": { + "_select_limit_offset": { "type": "CHOICE", "members": [ { "type": "SEQ", "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[lL][iI][mM][iI][tT]" - }, - "named": false, - "value": "limit" - }, { "type": "SYMBOL", - "name": "_value_expression" + "name": "select_limit" }, { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[oO][fF][fF][sS][eE][tT]" - }, - "named": false, - "value": "offset" - }, - { - "type": "SYMBOL", - "name": "_value_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_offset" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -4699,14 +5249,40 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[lL][iI][mM][iI][tT]" - }, - "named": false, - "value": "limit" + "type": "SYMBOL", + "name": "select_offset" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "select_limit" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "select_limit": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[lL][iI][mM][iI][tT]" + }, + "named": false, + "value": "limit" + }, + { + "type": "CHOICE", + "members": [ { "type": "ALIAS", "content": { @@ -4716,85 +5292,58 @@ "named": false, "value": "all" }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[oO][fF][fF][sS][eE][tT]" - }, - "named": false, - "value": "offset" - }, { "type": "SYMBOL", "name": "_value_expression" } ] + } + ] + }, + "select_offset": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[oO][fF][fF][sS][eE][tT]" + }, + "named": false, + "value": "offset" }, { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[oO][fF][fF][sS][eE][tT]" - }, - "named": false, - "value": "offset" - }, - { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[lL][iI][mM][iI][tT]" - }, - "named": false, - "value": "limit" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[aA][lL][lL]" - }, - "named": false, - "value": "all" - } - ] + "type": "SYMBOL", + "name": "_value_expression" }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[oO][fF][fF][sS][eE][tT]" - }, - "named": false, - "value": "offset" + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[rR][oO][wW]" + }, + "named": false, + "value": "row" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[rR][oO][wW][sS]" + }, + "named": false, + "value": "rows" + } + ] }, { - "type": "SYMBOL", - "name": "_value_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[lL][iI][mM][iI][tT]" - }, - "named": false, - "value": "limit" - }, - { - "type": "SYMBOL", - "name": "_value_expression" + "type": "BLANK" } ] } @@ -5022,33 +5571,37 @@ ] }, "from_item": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { + "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": "from_select" - }, - { - "type": "SYMBOL", - "name": "from_table" - }, - { - "type": "SYMBOL", - "name": "from_function" + "name": "join_item" } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "join_item" } - } - ] + ] + } }, "from_select": { "type": "SEQ", @@ -5218,75 +5771,79 @@ ] }, "join_item": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[nN][aA][tT][uU][rR][aA][lL]" + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[nN][aA][tT][uU][rR][aA][lL]" + }, + "named": false, + "value": "natural" }, - "named": false, - "value": "natural" - }, - { - "type": "SYMBOL", - "name": "join_type" - }, - { - "type": "SYMBOL", - "name": "from_table" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "join_type" - }, - { - "type": "SYMBOL", - "name": "from_table" - }, - { - "type": "SYMBOL", - "name": "join_condition" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[cC][rR][oO][sS][sS]" + { + "type": "SYMBOL", + "name": "join_type" }, - "named": false, - "value": "cross" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[jJ][oO][iI][nN]" + { + "type": "SYMBOL", + "name": "from_item" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "join_type" }, - "named": false, - "value": "join" - }, - { - "type": "SYMBOL", - "name": "from_table" - } - ] - } - ] + { + "type": "SYMBOL", + "name": "from_item" + }, + { + "type": "SYMBOL", + "name": "join_condition" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[cC][rR][oO][sS][sS]" + }, + "named": false, + "value": "cross" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[jJ][oO][iI][nN]" + }, + "named": false, + "value": "join" + }, + { + "type": "SYMBOL", + "name": "from_item" + } + ] + } + ] + } }, "join_condition": { "type": "CHOICE", @@ -6079,30 +6636,65 @@ ] }, "_type": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "predefined_types" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "predefined_types" }, { - "type": "STRING", - "value": "[" + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[%%][rR][oO][wW][tT][yY][pP][eE]" + }, + "named": false, + "value": "%rowtype" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "[%%][tT][yY][pP][eE]" + }, + "named": false, + "value": "%type" + } + ] }, { - "type": "STRING", - "value": "]" + "type": "BLANK" } ] } @@ -6257,11 +6849,15 @@ "members": [ { "type": "SYMBOL", - "name": "string" + "name": "number" }, { "type": "SYMBOL", - "name": "number" + "name": "dollar_quote_string" + }, + { + "type": "SYMBOL", + "name": "string" }, { "type": "SYMBOL", @@ -6325,12 +6921,62 @@ "type": "SYMBOL", "name": "time_expression" }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "star" + } + ] + }, { "type": "SYMBOL", "name": "identifier" } ] }, + "dollar_quote_string": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "PATTERN", + "value": "(([^$]+)|(%\\d+\\$s)|(\\$\\d+))+" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "STRING", + "value": "$" + } + ] + }, "time_expression": { "type": "CHOICE", "members": [ @@ -6807,8 +7453,12 @@ "value": "\\d+" }, "identifier": { + "type": "SYMBOL", + "name": "_identifier" + }, + "_identifier": { "type": "PATTERN", - "value": "[a-zA-Z0-9_]+[.a-zA-Z0-9_]*" + "value": "[a-zA-Z0-9_]+(\\.?[a-zA-Z0-9_]+)*" } }, "extras": [ diff --git a/src/node-types.json b/src/node-types.json index f759bdd..cc963ef 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4,13 +4,17 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ { "type": "alter_column_type", "named": true }, + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -66,6 +70,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -303,6 +311,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -413,6 +425,10 @@ "type": "create_trigger_statement", "named": true }, + { + "type": "create_type_statement", + "named": true + }, { "type": "delete_statement", "named": true @@ -425,10 +441,18 @@ "type": "execute_statement", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "grant_statement", "named": true }, + { + "type": "if_statement", + "named": true + }, { "type": "insert_statement", "named": true @@ -441,6 +465,10 @@ "type": "psql_statement", "named": true }, + { + "type": "raise_statement", + "named": true + }, { "type": "return_statement", "named": true @@ -480,13 +508,17 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ { "type": "constraint_foreign_key", "named": true }, + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -547,6 +579,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -851,6 +887,29 @@ ] } }, + { + "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, @@ -946,6 +1005,11 @@ ] } }, + { + "type": "dollar_quote_string", + "named": true, + "fields": {} + }, { "type": "execute_statement", "named": true, @@ -954,6 +1018,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, + { + "type": "execute_using", + "named": true + }, { "type": "false", "named": true @@ -1005,6 +1077,65 @@ ] } }, + { + "type": "execute_using", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "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": "false", "named": true, @@ -1030,6 +1161,145 @@ "named": true, "fields": {} }, + { + "type": "for_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "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": "dollar_quote_string", + "named": true + }, + { + "type": "execute_statement", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_call", + "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": "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": "from_function", "named": true, @@ -1118,6 +1388,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1181,6 +1455,14 @@ "type": ")", "named": false }, + { + "type": ".", + "named": false + }, + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1377,6 +1659,11 @@ ] } }, + { + "type": "identifier", + "named": true, + "fields": {} + }, { "type": "if_exists", "named": true, @@ -1387,6 +1674,145 @@ "named": true, "fields": {} }, + { + "type": "if_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "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": "dollar_quote_string", + "named": true + }, + { + "type": "execute_statement", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_call", + "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": "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": "index_col", "named": true, @@ -1395,6 +1821,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1518,9 +1948,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1664,6 +2098,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1720,7 +2158,7 @@ "required": true, "types": [ { - "type": "from_table", + "type": "from_item", "named": true }, { @@ -1774,6 +2212,10 @@ "type": "comparison_op", "named": true }, + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1864,6 +2306,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -1985,6 +2431,65 @@ ] } }, + { + "type": "raise_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "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, @@ -2005,9 +2510,17 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, + { + "type": "execute_statement", + "named": true + }, { "type": "false", "named": true @@ -2108,6 +2621,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2160,9 +2677,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2218,6 +2739,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2269,10 +2794,73 @@ "type": "select_limit", "named": true, "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "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": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2367,6 +2955,10 @@ "type": "select_limit", "named": true }, + { + "type": "select_offset", + "named": true + }, { "type": "select_order_by", "named": true @@ -2528,6 +3120,10 @@ "type": "create_trigger_statement", "named": true }, + { + "type": "create_type_statement", + "named": true + }, { "type": "delete_statement", "named": true @@ -2623,6 +3219,10 @@ "type": "constraint_foreign_key", "named": true }, + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2683,6 +3283,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2735,9 +3339,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2844,9 +3452,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2912,6 +3524,14 @@ "multiple": true, "required": true, "types": [ + { + "type": "%rowtype", + "named": false + }, + { + "type": "%type", + "named": false + }, { "type": "[", "named": false @@ -2940,6 +3560,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -2996,9 +3620,13 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "dollar_quote_string", + "named": true + }, { "type": "false", "named": true @@ -3100,6 +3728,14 @@ "type": "%", "named": false }, + { + "type": "%rowtype", + "named": false + }, + { + "type": "%type", + "named": false + }, { "type": "'", "named": false @@ -3128,6 +3764,14 @@ "type": "-", "named": false }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, { "type": "/", "named": false @@ -3320,10 +3964,26 @@ "type": "each", "named": false }, + { + "type": "else", + "named": false + }, + { + "type": "elseif", + "named": false + }, + { + "type": "elsif", + "named": false + }, { "type": "end", "named": false }, + { + "type": "enum", + "named": false + }, { "type": "execute", "named": false @@ -3376,10 +4036,6 @@ "type": "having", "named": false }, - { - "type": "identifier", - "named": true - }, { "type": "if", "named": false @@ -3452,6 +4108,10 @@ "type": "limit", "named": false }, + { + "type": "loop", + "named": false + }, { "type": "materialized", "named": false @@ -3548,6 +4208,10 @@ "type": "query", "named": false }, + { + "type": "raise", + "named": false + }, { "type": "references", "named": false @@ -3576,6 +4240,10 @@ "type": "returns", "named": false }, + { + "type": "reverse", + "named": false + }, { "type": "right", "named": false @@ -3588,6 +4256,10 @@ "type": "row", "named": false }, + { + "type": "rows", + "named": false + }, { "type": "schema", "named": false @@ -3648,6 +4320,10 @@ "type": "temporary", "named": false }, + { + "type": "then", + "named": false + }, { "type": "time", "named": false diff --git a/src/parser.c b/src/parser.c index a855ef8..833013e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1155 -#define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 315 +#define STATE_COUNT 1528 +#define LARGE_STATE_COUNT 3 +#define SYMBOL_COUNT 341 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 161 +#define TOKEN_COUNT 175 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 15 @@ -26,331 +26,361 @@ enum { anon_sym_SEMI = 1, - aux_sym_insert_statement_token1 = 2, - aux_sym_insert_statement_token2 = 3, - aux_sym_insert_items_token1 = 4, - aux_sym_insert_items_token2 = 5, + aux_sym_create_type_statement_token1 = 2, + aux_sym_create_type_statement_token2 = 3, + aux_sym_create_type_statement_token3 = 4, + aux_sym_create_type_statement_token4 = 5, anon_sym_LPAREN = 6, anon_sym_COMMA = 7, anon_sym_RPAREN = 8, - aux_sym_insert_conflict_token1 = 9, - aux_sym_insert_conflict_token2 = 10, - aux_sym_insert_conflict_token3 = 11, - aux_sym_insert_conflict_token4 = 12, - aux_sym_insert_conflict_token5 = 13, - aux_sym_insert_conflict_token6 = 14, - aux_sym_conflict_target_token1 = 15, - anon_sym_EQ = 16, - aux_sym_update_set_token1 = 17, - aux_sym_insert_returning_token1 = 18, - aux_sym_create_table_statement_token1 = 19, - aux_sym_create_table_statement_token2 = 20, - aux_sym_create_table_statement_token3 = 21, - aux_sym_create_schema_statement_token1 = 22, - aux_sym_schema_role_token1 = 23, - aux_sym_schema_role_token2 = 24, - aux_sym_schema_role_token3 = 25, - aux_sym_create_index_statement_token1 = 26, - aux_sym_create_index_statement_token2 = 27, - aux_sym_create_index_statement_token3 = 28, - aux_sym_index_using_token1 = 29, - aux_sym_index_col_dir_token1 = 30, - aux_sym_index_col_dir_token2 = 31, - aux_sym_index_col_nulls_token1 = 32, - aux_sym_index_col_nulls_token2 = 33, - aux_sym_index_col_nulls_token3 = 34, - aux_sym_index_includes_token1 = 35, - aux_sym_delete_statement_token1 = 36, - aux_sym_delete_statement_token2 = 37, - aux_sym_delete_statement_token3 = 38, - aux_sym_alter_table_statement_token1 = 39, - aux_sym_alter_table_action_token1 = 40, - aux_sym_alter_table_action_token2 = 41, - aux_sym_alter_table_action_token3 = 42, - aux_sym_alter_column_action_token1 = 43, - aux_sym_alter_column_action_token2 = 44, - aux_sym_alter_column_action_token3 = 45, - aux_sym_alter_column_action_token4 = 46, - aux_sym_constraint_when_token1 = 47, - aux_sym_constraint_when_token2 = 48, - aux_sym_constraint_when_token3 = 49, - aux_sym_constraint_when_token4 = 50, - aux_sym_table_constraint_ty_token1 = 51, - aux_sym_table_constraint_ty_token2 = 52, - aux_sym_table_constraint_ty_token3 = 53, - aux_sym_table_constraint_ty_token4 = 54, - aux_sym_constraint_foreign_key_token1 = 55, - aux_sym_fk_ref_action_token1 = 56, - aux_sym_fk_ref_action_token2 = 57, - aux_sym_fk_ref_action_token3 = 58, - aux_sym_fk_ref_action_token4 = 59, - aux_sym_alter_table_rename_column_token1 = 60, - aux_sym_alter_table_rename_column_token2 = 61, - aux_sym_grant_statement_token1 = 62, - aux_sym_grant_roles_token1 = 63, - aux_sym_grant_roles_token2 = 64, - aux_sym_grant_privileges_token1 = 65, - anon_sym_privileges = 66, - aux_sym_grant_targets_token1 = 67, - aux_sym_grant_targets_token2 = 68, - aux_sym_grant_targets_token3 = 69, - aux_sym_grant_targets_token4 = 70, - aux_sym_grant_targets_token5 = 71, - aux_sym_grant_targets_token6 = 72, - aux_sym_grant_targets_token7 = 73, - aux_sym_grant_targets_token8 = 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_return_statement_token1 = 98, - aux_sym_return_statement_token2 = 99, - aux_sym_perform_statement_token1 = 100, - aux_sym_select_statement_token1 = 101, - aux_sym_with_query_item_token1 = 102, - aux_sym_into_token1 = 103, - aux_sym_select_having_token1 = 104, - aux_sym_select_limit_token1 = 105, - aux_sym_select_limit_token2 = 106, - aux_sym_select_order_by_token1 = 107, - aux_sym_join_item_token1 = 108, - aux_sym_join_item_token2 = 109, - aux_sym_join_item_token3 = 110, - aux_sym_join_type_token1 = 111, - aux_sym_join_type_token2 = 112, - aux_sym_join_type_token3 = 113, - aux_sym_join_type_token4 = 114, - aux_sym_join_type_token5 = 115, - aux_sym_create_function_statement_token1 = 116, - aux_sym_function_return_token1 = 117, - aux_sym_return_setof_token1 = 118, - aux_sym_function_volatility_token1 = 119, - aux_sym_function_volatility_token2 = 120, - aux_sym_function_volatility_token3 = 121, - aux_sym_body_token1 = 122, - aux_sym_body_token2 = 123, - anon_sym_DOLLAR = 124, - aux_sym_declarations_token1 = 125, - anon_sym_COLON_EQ = 126, - aux_sym_where_filter_token1 = 127, - aux_sym_or_replace_token1 = 128, - aux_sym_temporary_token1 = 129, - aux_sym_temporary_token2 = 130, - aux_sym_if_not_exists_token1 = 131, - aux_sym_if_not_exists_token2 = 132, - anon_sym_LBRACK = 133, - anon_sym_RBRACK = 134, - aux_sym_predefined_types_token1 = 135, - anon_sym_SQUOTE = 136, - aux_sym_string_token1 = 137, - aux_sym_string_token2 = 138, - sym_comment = 139, - aux_sym_time_expression_token1 = 140, - aux_sym_time_expression_token2 = 141, - aux_sym_time_expression_token3 = 142, - anon_sym_STAR = 143, - anon_sym_SLASH = 144, - anon_sym_PERCENT = 145, - anon_sym_DASH = 146, - anon_sym_PLUS = 147, - anon_sym_LT = 148, - anon_sym_GT = 149, - anon_sym_LT_EQ = 150, - anon_sym_GT_EQ = 151, - anon_sym_LT_GT = 152, - anon_sym_BANG_EQ = 153, - anon_sym_PIPE_PIPE = 154, - sym_cast = 155, - aux_sym_and_token1 = 156, - aux_sym_true_token1 = 157, - aux_sym_false_token1 = 158, - sym_number = 159, - sym_identifier = 160, - sym_source_file = 161, - sym__statement = 162, - sym__with_query_statement = 163, - sym_insert_statement = 164, - sym_insert_items = 165, - sym_insert_item = 166, - sym_insert_conflict = 167, - sym_conflict_target = 168, - sym_update_set = 169, - sym_update_value = 170, - sym_insert_returning = 171, - sym_create_table_statement = 172, - sym_create_table_item = 173, - sym_create_schema_statement = 174, - sym_schema_role = 175, - sym_create_index_statement = 176, - sym_index_using = 177, - sym_index_col = 178, - sym_index_col_dir = 179, - sym_index_col_nulls = 180, - sym_index_includes = 181, - sym_delete_statement = 182, - sym_delete_using = 183, - sym_alter_table_statement = 184, - sym_alter_table_change = 185, - sym_alter_table_action = 186, - sym_alter_column_action = 187, - sym_table_constraint = 188, - sym_constraint_when = 189, - sym_table_constraint_ty = 190, - sym_constraint_foreign_key = 191, - sym_fk_action = 192, - sym_fk_ref_action = 193, - sym_alter_column_type = 194, - sym_alter_table_fk_ref_action = 195, - sym_table_column_item = 196, - sym_column_constraint = 197, - sym_column_constraint_ty = 198, - sym_alter_table_rename_column = 199, - sym_alter_table_rename_constraint = 200, - sym_alter_table_rename_table = 201, - sym_alter_table_change_schema = 202, - sym_grant_statement = 203, - sym_grant_roles = 204, - sym_grant_privileges = 205, - sym_grant_targets = 206, - sym_grant_function = 207, - sym_psql_statement = 208, - sym_create_sequence_statement = 209, - sym_sequence_increment = 210, - sym_sequence_min = 211, - sym_sequence_max = 212, - sym_sequence_start = 213, - sym_sequence_cache = 214, - sym_sequence_cycle = 215, - sym_sequence_owned = 216, - sym_create_trigger_statement = 217, - sym_trigger_when = 218, - sym_trigger_event = 219, - sym_trigger_scope = 220, - sym_trigger_exec = 221, - sym_trigger_cond = 222, - sym__plpgsql_statement = 223, - sym_execute_statement = 224, - sym_assign_statement = 225, - sym_return_statement = 226, - sym_perform_statement = 227, - sym_do_block = 228, - sym_select_statement = 229, - sym_with_query = 230, - sym_with_query_item = 231, - sym_into = 232, - sym_select_having = 233, - sym_select_limit = 234, - sym_select_group_by = 235, - sym_select_order_by = 236, - sym_order_by_item = 237, - sym_order_by_direction = 238, - sym_select_where = 239, - sym_select_item = 240, - sym_select_from = 241, - sym_from_item = 242, - sym_from_select = 243, - sym_from_table = 244, - sym_from_function = 245, - sym_join_item = 246, - sym_join_condition = 247, - sym_join_type = 248, - sym_create_function_statement = 249, - sym_function_return = 250, - sym_return_setof = 251, - sym_return_table = 252, - sym_function_volatility = 253, - sym_block = 254, - sym_body = 255, - sym_dollar_quote = 256, - sym_declarations = 257, - sym_var_definition = 258, - sym_function_signature = 259, - sym_function_parameters = 260, - sym_var_declaration = 261, - sym_where_filter = 262, - sym_or_replace = 263, - sym_temporary = 264, - sym_if_not_exists = 265, - sym_if_exists = 266, - sym_as = 267, - sym__type = 268, - sym_predefined_types = 269, - sym_precision = 270, - sym_string = 271, - sym__value_expression = 272, - sym_time_expression = 273, - sym_function_call = 274, - sym_op_expression = 275, - sym__list_of_identifiers = 276, - sym_comparison_op = 277, - sym_other_op = 278, - sym_minus = 279, - sym_plus = 280, - sym_not = 281, - sym_and = 282, - sym_or = 283, - sym_true = 284, - sym_false = 285, - sym_null = 286, - sym_star = 287, - aux_sym_source_file_repeat1 = 288, - aux_sym_insert_items_repeat1 = 289, - aux_sym_insert_conflict_repeat1 = 290, - aux_sym_conflict_target_repeat1 = 291, - aux_sym_update_set_repeat1 = 292, - aux_sym_insert_returning_repeat1 = 293, - aux_sym_create_table_statement_repeat1 = 294, - aux_sym_create_index_statement_repeat1 = 295, - aux_sym_delete_using_repeat1 = 296, - aux_sym_alter_table_change_repeat1 = 297, - aux_sym_constraint_foreign_key_repeat1 = 298, - aux_sym_table_column_item_repeat1 = 299, - aux_sym_grant_roles_repeat1 = 300, - aux_sym_grant_privileges_repeat1 = 301, - aux_sym_grant_targets_repeat1 = 302, - aux_sym_grant_function_repeat1 = 303, - aux_sym_psql_statement_repeat1 = 304, - aux_sym_create_sequence_statement_repeat1 = 305, - aux_sym_trigger_event_repeat1 = 306, - aux_sym_with_query_repeat1 = 307, - aux_sym_select_order_by_repeat1 = 308, - aux_sym_from_item_repeat1 = 309, - aux_sym_return_table_repeat1 = 310, - aux_sym_block_repeat1 = 311, - aux_sym_body_repeat1 = 312, - aux_sym_declarations_repeat1 = 313, - aux_sym_string_repeat1 = 314, + aux_sym_insert_statement_token1 = 9, + aux_sym_insert_statement_token2 = 10, + aux_sym_insert_items_token1 = 11, + aux_sym_insert_items_token2 = 12, + aux_sym_insert_conflict_token1 = 13, + aux_sym_insert_conflict_token2 = 14, + aux_sym_insert_conflict_token3 = 15, + aux_sym_insert_conflict_token4 = 16, + aux_sym_insert_conflict_token5 = 17, + aux_sym_insert_conflict_token6 = 18, + aux_sym_conflict_target_token1 = 19, + anon_sym_EQ = 20, + aux_sym_update_set_token1 = 21, + aux_sym_insert_returning_token1 = 22, + aux_sym_create_table_statement_token1 = 23, + aux_sym_create_table_statement_token2 = 24, + aux_sym_create_schema_statement_token1 = 25, + aux_sym_schema_role_token1 = 26, + aux_sym_schema_role_token2 = 27, + aux_sym_schema_role_token3 = 28, + aux_sym_create_index_statement_token1 = 29, + aux_sym_create_index_statement_token2 = 30, + aux_sym_create_index_statement_token3 = 31, + aux_sym_index_using_token1 = 32, + aux_sym_index_col_dir_token1 = 33, + aux_sym_index_col_dir_token2 = 34, + aux_sym_index_col_nulls_token1 = 35, + aux_sym_index_col_nulls_token2 = 36, + aux_sym_index_col_nulls_token3 = 37, + aux_sym_index_includes_token1 = 38, + aux_sym_delete_statement_token1 = 39, + aux_sym_delete_statement_token2 = 40, + aux_sym_alter_table_statement_token1 = 41, + aux_sym_alter_table_action_token1 = 42, + aux_sym_alter_table_action_token2 = 43, + aux_sym_alter_table_action_token3 = 44, + aux_sym_alter_column_action_token1 = 45, + aux_sym_alter_column_action_token2 = 46, + aux_sym_alter_column_action_token3 = 47, + aux_sym_constraint_when_token1 = 48, + aux_sym_constraint_when_token2 = 49, + aux_sym_constraint_when_token3 = 50, + aux_sym_constraint_when_token4 = 51, + aux_sym_table_constraint_ty_token1 = 52, + aux_sym_table_constraint_ty_token2 = 53, + aux_sym_table_constraint_ty_token3 = 54, + aux_sym_table_constraint_ty_token4 = 55, + aux_sym_constraint_foreign_key_token1 = 56, + aux_sym_fk_ref_action_token1 = 57, + aux_sym_fk_ref_action_token2 = 58, + aux_sym_fk_ref_action_token3 = 59, + aux_sym_fk_ref_action_token4 = 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, + anon_sym_privileges = 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, + aux_sym_grant_targets_token8 = 75, + anon_sym_BSLASH = 76, + aux_sym_psql_statement_token1 = 77, + aux_sym_sequence_increment_token1 = 78, + aux_sym_sequence_increment_token2 = 79, + aux_sym_sequence_min_token1 = 80, + aux_sym_sequence_max_token1 = 81, + aux_sym_sequence_start_token1 = 82, + aux_sym_sequence_start_token2 = 83, + aux_sym_sequence_cache_token1 = 84, + aux_sym_sequence_cycle_token1 = 85, + aux_sym_sequence_owned_token1 = 86, + aux_sym_sequence_owned_token2 = 87, + aux_sym_create_trigger_statement_token1 = 88, + aux_sym_trigger_when_token1 = 89, + aux_sym_trigger_when_token2 = 90, + aux_sym_trigger_when_token3 = 91, + aux_sym_trigger_event_token1 = 92, + aux_sym_trigger_event_token2 = 93, + aux_sym_trigger_scope_token1 = 94, + aux_sym_trigger_scope_token2 = 95, + aux_sym_trigger_scope_token3 = 96, + aux_sym_trigger_exec_token1 = 97, + aux_sym_trigger_cond_token1 = 98, + aux_sym_for_statement_token1 = 99, + anon_sym_DOT_DOT = 100, + aux_sym_for_statement_token2 = 101, + aux_sym_for_statement_token3 = 102, + aux_sym_raise_statement_token1 = 103, + aux_sym_if_statement_token1 = 104, + aux_sym_if_statement_token2 = 105, + aux_sym_if_statement_token3 = 106, + aux_sym_if_statement_token4 = 107, + aux_sym_if_statement_token5 = 108, + aux_sym_return_statement_token1 = 109, + aux_sym_return_statement_token2 = 110, + aux_sym_perform_statement_token1 = 111, + aux_sym_select_statement_token1 = 112, + aux_sym_with_query_item_token1 = 113, + aux_sym_into_token1 = 114, + aux_sym_select_having_token1 = 115, + aux_sym_select_limit_token1 = 116, + aux_sym_select_offset_token1 = 117, + aux_sym_select_offset_token2 = 118, + aux_sym_select_order_by_token1 = 119, + aux_sym_join_item_token1 = 120, + aux_sym_join_item_token2 = 121, + aux_sym_join_item_token3 = 122, + aux_sym_join_type_token1 = 123, + aux_sym_join_type_token2 = 124, + aux_sym_join_type_token3 = 125, + aux_sym_join_type_token4 = 126, + aux_sym_join_type_token5 = 127, + aux_sym_create_function_statement_token1 = 128, + aux_sym_function_return_token1 = 129, + aux_sym_return_setof_token1 = 130, + aux_sym_function_volatility_token1 = 131, + aux_sym_function_volatility_token2 = 132, + aux_sym_function_volatility_token3 = 133, + aux_sym_body_token1 = 134, + anon_sym_DOLLAR = 135, + aux_sym_declarations_token1 = 136, + anon_sym_COLON_EQ = 137, + aux_sym_where_filter_token1 = 138, + aux_sym_or_replace_token1 = 139, + aux_sym_temporary_token1 = 140, + aux_sym_temporary_token2 = 141, + aux_sym_if_not_exists_token1 = 142, + anon_sym_LBRACK = 143, + anon_sym_RBRACK = 144, + aux_sym__type_token1 = 145, + aux_sym__type_token2 = 146, + aux_sym_predefined_types_token1 = 147, + anon_sym_SQUOTE = 148, + aux_sym_string_token1 = 149, + aux_sym_string_token2 = 150, + sym_comment = 151, + anon_sym_DOT = 152, + aux_sym_dollar_quote_string_token1 = 153, + aux_sym_time_expression_token1 = 154, + aux_sym_time_expression_token2 = 155, + aux_sym_time_expression_token3 = 156, + anon_sym_STAR = 157, + anon_sym_SLASH = 158, + anon_sym_PERCENT = 159, + anon_sym_DASH = 160, + anon_sym_PLUS = 161, + anon_sym_LT = 162, + anon_sym_GT = 163, + anon_sym_LT_EQ = 164, + anon_sym_GT_EQ = 165, + anon_sym_LT_GT = 166, + anon_sym_BANG_EQ = 167, + anon_sym_PIPE_PIPE = 168, + sym_cast = 169, + aux_sym_and_token1 = 170, + aux_sym_true_token1 = 171, + aux_sym_false_token1 = 172, + sym_number = 173, + sym__identifier = 174, + sym_source_file = 175, + sym__statement = 176, + sym_create_type_statement = 177, + sym__with_query_statement = 178, + sym_insert_statement = 179, + sym_insert_items = 180, + sym_insert_item = 181, + sym_insert_conflict = 182, + sym_conflict_target = 183, + sym_update_set = 184, + sym_update_value = 185, + sym_insert_returning = 186, + sym_create_table_statement = 187, + sym_create_table_item = 188, + sym_create_schema_statement = 189, + sym_schema_role = 190, + sym_create_index_statement = 191, + sym_index_using = 192, + sym_index_col = 193, + sym_index_col_dir = 194, + sym_index_col_nulls = 195, + sym_index_includes = 196, + sym_delete_statement = 197, + sym_delete_using = 198, + sym_alter_table_statement = 199, + sym_alter_table_change = 200, + sym_alter_table_action = 201, + sym_alter_column_action = 202, + sym_table_constraint = 203, + sym_constraint_when = 204, + sym_table_constraint_ty = 205, + sym_constraint_foreign_key = 206, + sym_fk_action = 207, + sym_fk_ref_action = 208, + sym_alter_column_type = 209, + sym_alter_table_fk_ref_action = 210, + sym_table_column_item = 211, + sym_column_constraint = 212, + sym_column_constraint_ty = 213, + sym_alter_table_rename_column = 214, + sym_alter_table_rename_constraint = 215, + sym_alter_table_rename_table = 216, + sym_alter_table_change_schema = 217, + sym_grant_statement = 218, + sym_grant_roles = 219, + sym_grant_privileges = 220, + sym_grant_targets = 221, + sym_grant_function = 222, + sym_psql_statement = 223, + sym_create_sequence_statement = 224, + sym_sequence_increment = 225, + sym_sequence_min = 226, + sym_sequence_max = 227, + sym_sequence_start = 228, + sym_sequence_cache = 229, + sym_sequence_cycle = 230, + sym_sequence_owned = 231, + sym_create_trigger_statement = 232, + sym_trigger_when = 233, + sym_trigger_event = 234, + sym_trigger_scope = 235, + sym_trigger_exec = 236, + sym_trigger_cond = 237, + sym__plpgsql_statement = 238, + sym_for_statement = 239, + sym_raise_statement = 240, + sym_if_statement = 241, + sym_execute_statement = 242, + sym_execute_using = 243, + sym_assign_statement = 244, + sym_return_statement = 245, + sym_perform_statement = 246, + sym_do_block = 247, + sym_select_statement = 248, + sym_with_query = 249, + sym_with_query_item = 250, + sym_into = 251, + sym_select_having = 252, + sym__select_limit_offset = 253, + sym_select_limit = 254, + sym_select_offset = 255, + sym_select_group_by = 256, + sym_select_order_by = 257, + sym_order_by_item = 258, + sym_order_by_direction = 259, + sym_select_where = 260, + sym_select_item = 261, + sym_select_from = 262, + sym_from_item = 263, + sym_from_select = 264, + sym_from_table = 265, + sym_from_function = 266, + sym_join_item = 267, + sym_join_condition = 268, + sym_join_type = 269, + sym_create_function_statement = 270, + sym_function_return = 271, + sym_return_setof = 272, + sym_return_table = 273, + sym_function_volatility = 274, + sym_block = 275, + sym_body = 276, + sym_dollar_quote = 277, + sym_declarations = 278, + sym_var_definition = 279, + sym_function_signature = 280, + sym_function_parameters = 281, + sym_var_declaration = 282, + sym_where_filter = 283, + sym_or_replace = 284, + sym_temporary = 285, + sym_if_not_exists = 286, + sym_if_exists = 287, + sym_as = 288, + sym__type = 289, + sym_predefined_types = 290, + sym_precision = 291, + sym_string = 292, + sym__value_expression = 293, + sym_dollar_quote_string = 294, + sym_time_expression = 295, + sym_function_call = 296, + sym_op_expression = 297, + sym__list_of_identifiers = 298, + sym_comparison_op = 299, + sym_other_op = 300, + sym_minus = 301, + sym_plus = 302, + sym_not = 303, + sym_and = 304, + sym_or = 305, + sym_true = 306, + sym_false = 307, + sym_null = 308, + sym_star = 309, + sym_identifier = 310, + aux_sym_source_file_repeat1 = 311, + aux_sym_create_type_statement_repeat1 = 312, + aux_sym_create_type_statement_repeat2 = 313, + aux_sym_insert_items_repeat1 = 314, + aux_sym_insert_conflict_repeat1 = 315, + aux_sym_conflict_target_repeat1 = 316, + aux_sym_update_set_repeat1 = 317, + aux_sym_insert_returning_repeat1 = 318, + aux_sym_create_table_statement_repeat1 = 319, + aux_sym_create_index_statement_repeat1 = 320, + aux_sym_delete_using_repeat1 = 321, + aux_sym_alter_table_change_repeat1 = 322, + aux_sym_constraint_foreign_key_repeat1 = 323, + aux_sym_table_column_item_repeat1 = 324, + aux_sym_grant_roles_repeat1 = 325, + aux_sym_grant_privileges_repeat1 = 326, + aux_sym_grant_targets_repeat1 = 327, + aux_sym_grant_function_repeat1 = 328, + aux_sym_psql_statement_repeat1 = 329, + aux_sym_create_sequence_statement_repeat1 = 330, + aux_sym_trigger_event_repeat1 = 331, + aux_sym_for_statement_repeat1 = 332, + aux_sym_if_statement_repeat1 = 333, + aux_sym_with_query_repeat1 = 334, + aux_sym_select_order_by_repeat1 = 335, + aux_sym_from_item_repeat1 = 336, + aux_sym_block_repeat1 = 337, + aux_sym_declarations_repeat1 = 338, + aux_sym__type_repeat1 = 339, + aux_sym_string_repeat1 = 340, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [anon_sym_SEMI] = ";", + [aux_sym_create_type_statement_token1] = "create", + [aux_sym_create_type_statement_token2] = "type", + [aux_sym_create_type_statement_token3] = "as", + [aux_sym_create_type_statement_token4] = "enum", + [anon_sym_LPAREN] = "(", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", [aux_sym_insert_statement_token1] = "insert", [aux_sym_insert_statement_token2] = "into", [aux_sym_insert_items_token1] = "default", [aux_sym_insert_items_token2] = "values", - [anon_sym_LPAREN] = "(", - [anon_sym_COMMA] = ",", - [anon_sym_RPAREN] = ")", [aux_sym_insert_conflict_token1] = "on", [aux_sym_insert_conflict_token2] = "conflict", [aux_sym_insert_conflict_token3] = "do", @@ -361,9 +391,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ] = "=", [aux_sym_update_set_token1] = "row", [aux_sym_insert_returning_token1] = "returning", - [aux_sym_create_table_statement_token1] = "create", - [aux_sym_create_table_statement_token2] = "unlogged", - [aux_sym_create_table_statement_token3] = "table", + [aux_sym_create_table_statement_token1] = "unlogged", + [aux_sym_create_table_statement_token2] = "table", [aux_sym_create_schema_statement_token1] = "schema", [aux_sym_schema_role_token1] = "authorization", [aux_sym_schema_role_token2] = "current_user", @@ -380,15 +409,13 @@ static const char * const ts_symbol_names[] = { [aux_sym_index_includes_token1] = "include", [aux_sym_delete_statement_token1] = "delete", [aux_sym_delete_statement_token2] = "from", - [aux_sym_delete_statement_token3] = "as", [aux_sym_alter_table_statement_token1] = "alter", [aux_sym_alter_table_action_token1] = "add", [aux_sym_alter_table_action_token2] = "column", [aux_sym_alter_table_action_token3] = "drop", [aux_sym_alter_column_action_token1] = "not", [aux_sym_alter_column_action_token2] = "null", - [aux_sym_alter_column_action_token3] = "type", - [aux_sym_alter_column_action_token4] = "data", + [aux_sym_alter_column_action_token3] = "data", [aux_sym_constraint_when_token1] = "deferrable", [aux_sym_constraint_when_token2] = "initially", [aux_sym_constraint_when_token3] = "immediate", @@ -440,6 +467,16 @@ static const char * const ts_symbol_names[] = { [aux_sym_trigger_scope_token3] = "statement", [aux_sym_trigger_exec_token1] = "execute", [aux_sym_trigger_cond_token1] = "when", + [aux_sym_for_statement_token1] = "reverse", + [anon_sym_DOT_DOT] = "..", + [aux_sym_for_statement_token2] = "loop", + [aux_sym_for_statement_token3] = "end", + [aux_sym_raise_statement_token1] = "raise", + [aux_sym_if_statement_token1] = "if", + [aux_sym_if_statement_token2] = "then", + [aux_sym_if_statement_token3] = "elsif", + [aux_sym_if_statement_token4] = "elseif", + [aux_sym_if_statement_token5] = "else", [aux_sym_return_statement_token1] = "return", [aux_sym_return_statement_token2] = "query", [aux_sym_perform_statement_token1] = "perform", @@ -448,7 +485,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_into_token1] = "strict", [aux_sym_select_having_token1] = "having", [aux_sym_select_limit_token1] = "limit", - [aux_sym_select_limit_token2] = "offset", + [aux_sym_select_offset_token1] = "offset", + [aux_sym_select_offset_token2] = "rows", [aux_sym_select_order_by_token1] = "order", [aux_sym_join_item_token1] = "natural", [aux_sym_join_item_token2] = "cross", @@ -465,7 +503,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_function_volatility_token2] = "stable", [aux_sym_function_volatility_token3] = "volatile", [aux_sym_body_token1] = "begin", - [aux_sym_body_token2] = "end", [anon_sym_DOLLAR] = "$", [aux_sym_declarations_token1] = "declare", [anon_sym_COLON_EQ] = ":=", @@ -473,15 +510,18 @@ static const char * const ts_symbol_names[] = { [aux_sym_or_replace_token1] = "replace", [aux_sym_temporary_token1] = "temp", [aux_sym_temporary_token2] = "temporary", - [aux_sym_if_not_exists_token1] = "if", - [aux_sym_if_not_exists_token2] = "exists", + [aux_sym_if_not_exists_token1] = "exists", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", + [aux_sym__type_token1] = "%rowtype", + [aux_sym__type_token2] = "%type", [aux_sym_predefined_types_token1] = "numeric", [anon_sym_SQUOTE] = "'", [aux_sym_string_token1] = "string_token1", [aux_sym_string_token2] = "string_token2", [sym_comment] = "comment", + [anon_sym_DOT] = ".", + [aux_sym_dollar_quote_string_token1] = "dollar_quote_string_token1", [aux_sym_time_expression_token1] = "at", [aux_sym_time_expression_token2] = "time", [aux_sym_time_expression_token3] = "zone", @@ -502,9 +542,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_true_token1] = "true", [aux_sym_false_token1] = "false", [sym_number] = "number", - [sym_identifier] = "identifier", + [sym__identifier] = "_identifier", [sym_source_file] = "source_file", [sym__statement] = "_statement", + [sym_create_type_statement] = "create_type_statement", [sym__with_query_statement] = "_with_query_statement", [sym_insert_statement] = "insert_statement", [sym_insert_items] = "insert_items", @@ -566,7 +607,11 @@ static const char * const ts_symbol_names[] = { [sym_trigger_exec] = "trigger_exec", [sym_trigger_cond] = "trigger_cond", [sym__plpgsql_statement] = "_plpgsql_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", @@ -576,7 +621,9 @@ static const char * const ts_symbol_names[] = { [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", @@ -615,6 +662,7 @@ static const char * const ts_symbol_names[] = { [sym_precision] = "precision", [sym_string] = "string", [sym__value_expression] = "_value_expression", + [sym_dollar_quote_string] = "dollar_quote_string", [sym_time_expression] = "time_expression", [sym_function_call] = "function_call", [sym_op_expression] = "op_expression", @@ -630,7 +678,10 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [sym_null] = "null", [sym_star] = "star", + [sym_identifier] = "identifier", [aux_sym_source_file_repeat1] = "source_file_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_conflict_repeat1] = "insert_conflict_repeat1", [aux_sym_conflict_target_repeat1] = "conflict_target_repeat1", @@ -649,26 +700,31 @@ static const char * const ts_symbol_names[] = { [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_return_table_repeat1] = "return_table_repeat1", [aux_sym_block_repeat1] = "block_repeat1", - [aux_sym_body_repeat1] = "body_repeat1", [aux_sym_declarations_repeat1] = "declarations_repeat1", + [aux_sym__type_repeat1] = "_type_repeat1", [aux_sym_string_repeat1] = "string_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [anon_sym_SEMI] = anon_sym_SEMI, + [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_create_type_statement_token3] = aux_sym_create_type_statement_token3, + [aux_sym_create_type_statement_token4] = aux_sym_create_type_statement_token4, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, [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, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_RPAREN] = anon_sym_RPAREN, [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, @@ -681,7 +737,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_insert_returning_token1] = aux_sym_insert_returning_token1, [aux_sym_create_table_statement_token1] = aux_sym_create_table_statement_token1, [aux_sym_create_table_statement_token2] = aux_sym_create_table_statement_token2, - [aux_sym_create_table_statement_token3] = aux_sym_create_table_statement_token3, [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, @@ -698,7 +753,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_index_includes_token1] = aux_sym_index_includes_token1, [aux_sym_delete_statement_token1] = aux_sym_delete_statement_token1, [aux_sym_delete_statement_token2] = aux_sym_delete_statement_token2, - [aux_sym_delete_statement_token3] = aux_sym_delete_statement_token3, [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, @@ -706,7 +760,6 @@ static const TSSymbol ts_symbol_map[] = { [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_alter_column_action_token4] = aux_sym_alter_column_action_token4, [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, @@ -758,6 +811,16 @@ static const TSSymbol ts_symbol_map[] = { [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_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, [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, @@ -766,7 +829,8 @@ static const TSSymbol ts_symbol_map[] = { [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_limit_token2] = aux_sym_select_limit_token2, + [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, @@ -783,7 +847,6 @@ static const TSSymbol ts_symbol_map[] = { [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, - [aux_sym_body_token2] = aux_sym_body_token2, [anon_sym_DOLLAR] = anon_sym_DOLLAR, [aux_sym_declarations_token1] = aux_sym_declarations_token1, [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, @@ -792,14 +855,17 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_temporary_token1] = aux_sym_temporary_token1, [aux_sym_temporary_token2] = aux_sym_temporary_token2, [aux_sym_if_not_exists_token1] = aux_sym_if_not_exists_token1, - [aux_sym_if_not_exists_token2] = aux_sym_if_not_exists_token2, [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_types_token1] = aux_sym_predefined_types_token1, [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_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, @@ -820,9 +886,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_true_token1] = aux_sym_true_token1, [aux_sym_false_token1] = aux_sym_false_token1, [sym_number] = sym_number, - [sym_identifier] = sym_identifier, + [sym__identifier] = sym__identifier, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, + [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, @@ -884,7 +951,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_trigger_exec] = sym_trigger_exec, [sym_trigger_cond] = sym_trigger_cond, [sym__plpgsql_statement] = sym__plpgsql_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, @@ -894,7 +965,9 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -933,6 +1006,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_precision] = sym_precision, [sym_string] = sym_string, [sym__value_expression] = sym__value_expression, + [sym_dollar_quote_string] = sym_dollar_quote_string, [sym_time_expression] = sym_time_expression, [sym_function_call] = sym_function_call, [sym_op_expression] = sym_op_expression, @@ -948,7 +1022,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [sym_null] = sym_null, [sym_star] = sym_star, + [sym_identifier] = sym_identifier, [aux_sym_source_file_repeat1] = aux_sym_source_file_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_conflict_repeat1] = aux_sym_insert_conflict_repeat1, [aux_sym_conflict_target_repeat1] = aux_sym_conflict_target_repeat1, @@ -967,13 +1044,14 @@ static const TSSymbol ts_symbol_map[] = { [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_return_table_repeat1] = aux_sym_return_table_repeat1, [aux_sym_block_repeat1] = aux_sym_block_repeat1, - [aux_sym_body_repeat1] = aux_sym_body_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, }; @@ -986,6 +1064,34 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_create_type_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_create_type_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_create_type_statement_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_create_type_statement_token4] = { + .visible = true, + .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_insert_statement_token1] = { .visible = true, .named = false, @@ -1002,18 +1108,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .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_insert_conflict_token1] = { .visible = true, .named = false, @@ -1062,10 +1156,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_create_table_statement_token3] = { - .visible = true, - .named = false, - }, [aux_sym_create_schema_statement_token1] = { .visible = true, .named = false, @@ -1130,10 +1220,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_delete_statement_token3] = { - .visible = true, - .named = false, - }, [aux_sym_alter_table_statement_token1] = { .visible = true, .named = false, @@ -1162,10 +1248,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_alter_column_action_token4] = { - .visible = true, - .named = false, - }, [aux_sym_constraint_when_token1] = { .visible = true, .named = false, @@ -1370,6 +1452,46 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_for_statement_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [aux_sym_for_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_for_statement_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_raise_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token3] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token4] = { + .visible = true, + .named = false, + }, + [aux_sym_if_statement_token5] = { + .visible = true, + .named = false, + }, [aux_sym_return_statement_token1] = { .visible = true, .named = false, @@ -1402,7 +1524,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_select_limit_token2] = { + [aux_sym_select_offset_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_select_offset_token2] = { .visible = true, .named = false, }, @@ -1470,10 +1596,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_body_token2] = { - .visible = true, - .named = false, - }, [anon_sym_DOLLAR] = { .visible = true, .named = false, @@ -1506,10 +1628,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_if_not_exists_token2] = { - .visible = true, - .named = false, - }, [anon_sym_LBRACK] = { .visible = true, .named = false, @@ -1518,6 +1636,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym__type_token1] = { + .visible = true, + .named = false, + }, + [aux_sym__type_token2] = { + .visible = true, + .named = false, + }, [aux_sym_predefined_types_token1] = { .visible = true, .named = false, @@ -1538,6 +1664,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [aux_sym_dollar_quote_string_token1] = { + .visible = false, + .named = false, + }, [aux_sym_time_expression_token1] = { .visible = true, .named = false, @@ -1618,8 +1752,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_identifier] = { - .visible = true, + [sym__identifier] = { + .visible = false, .named = true, }, [sym_source_file] = { @@ -1630,6 +1764,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_create_type_statement] = { + .visible = true, + .named = true, + }, [sym__with_query_statement] = { .visible = false, .named = true, @@ -1874,10 +2012,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .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, @@ -1914,10 +2068,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -2070,6 +2232,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_dollar_quote_string] = { + .visible = true, + .named = true, + }, [sym_time_expression] = { .visible = true, .named = true, @@ -2130,10 +2296,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_identifier] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_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, @@ -2206,6 +2384,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -2218,19 +2404,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_return_table_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_block_repeat1] = { .visible = false, .named = false, }, - [aux_sym_body_repeat1] = { + [aux_sym_declarations_repeat1] = { .visible = false, .named = false, }, - [aux_sym_declarations_repeat1] = { + [aux_sym__type_repeat1] = { .visible = false, .named = false, }, @@ -2285,75 +2467,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(618); - if (lookahead == '!') ADVANCE(66); - if (lookahead == '$') ADVANCE(803); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '\'') ADVANCE(820); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(65); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == 'P') ADVANCE(220); - if (lookahead == '[') ADVANCE(815); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == ']') ADVANCE(816); - if (lookahead == 'p') ADVANCE(68); - if (lookahead == '|') ADVANCE(78); + if (eof) ADVANCE(700); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '\'') ADVANCE(922); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(938); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == 'P') ADVANCE(253); + if (lookahead == '[') ADVANCE(915); + if (lookahead == '\\') ADVANCE(814); + if (lookahead == ']') ADVANCE(916); + if (lookahead == 'p') ADVANCE(84); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(138); + lookahead == 'a') ADVANCE(162); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(180); + lookahead == 'b') ADVANCE(206); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(79); + lookahead == 'c') ADVANCE(96); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(94); + lookahead == 'd') ADVANCE(113); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(88); + lookahead == 'e') ADVANCE(107); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(81); + lookahead == 'f') ADVANCE(98); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(474); + lookahead == 'g') ADVANCE(537); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(82); + lookahead == 'h') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(270); + lookahead == 'i') ADVANCE(309); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(438); + lookahead == 'j') ADVANCE(491); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(181); + lookahead == 'k') ADVANCE(207); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(83); + lookahead == 'l') ADVANCE(100); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(84); + lookahead == 'm') ADVANCE(101); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(96); + lookahead == 'n') ADVANCE(115); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(274); + lookahead == 'o') ADVANCE(314); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(580); + lookahead == 'q') ADVANCE(652); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(183); + lookahead == 'r') ADVANCE(110); if (lookahead == 'S' || - lookahead == 's') ADVANCE(139); + lookahead == 's') ADVANCE(163); if (lookahead == 'T' || - lookahead == 't') ADVANCE(109); + lookahead == 't') ADVANCE(131); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(397); + lookahead == 'u') ADVANCE(447); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(90); + lookahead == 'v') ADVANCE(109); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(303); + lookahead == 'w') ADVANCE(346); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(455); + lookahead == 'z') ADVANCE(514); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2362,63 +2545,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(975); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(445); + if (lookahead == ' ') ADVANCE(503); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(938); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '[') ADVANCE(915); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(409); + lookahead == 'a') ADVANCE(460); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(686); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(302); + lookahead == 'c') ADVANCE(345); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(225); + lookahead == 'd') ADVANCE(114); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(479); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(486); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(82); + lookahead == 'f') ADVANCE(675); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(412); + lookahead == 'i') ADVANCE(440); if (lookahead == 'J' || - lookahead == 'j') ADVANCE(438); + lookahead == 'j') ADVANCE(491); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(182); + lookahead == 'l') ADVANCE(128); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(150); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(97); + lookahead == 'n') ADVANCE(117); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(273); + lookahead == 'o') ADVANCE(315); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(485); + lookahead == 'p') ADVANCE(548); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); + lookahead == 'r') ADVANCE(249); if (lookahead == 'S' || - lookahead == 's') ADVANCE(268); + lookahead == 's') ADVANCE(305); if (lookahead == 'T' || - lookahead == 't') ADVANCE(129); + lookahead == 't') ADVANCE(151); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(422); + lookahead == 'u') ADVANCE(474); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(89); + lookahead == 'v') ADVANCE(499); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(309); + lookahead == 'w') ADVANCE(353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2429,39 +2614,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(2) END_STATE(); case 3: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1015); + lookahead == 'a') ADVANCE(460); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(126); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(283); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(685); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); + lookahead == 'f') ADVANCE(502); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(481); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); + lookahead == 'l') ADVANCE(358); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(495); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(935); + lookahead == 'o') ADVANCE(315); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); + lookahead == 'r') ADVANCE(250); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(294); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2470,43 +2662,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(3) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1015); + lookahead == 'a') ADVANCE(461); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(345); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(264); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); + lookahead == 'f') ADVANCE(542); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); + lookahead == 'g') ADVANCE(551); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); + lookahead == 'h') ADVANCE(99); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(464); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(491); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); + lookahead == 'l') ADVANCE(208); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(117); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(937); + lookahead == 'o') ADVANCE(313); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(548); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(248); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(284); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(492); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(474); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(108); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(354); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2515,33 +2724,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(4) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1015); + lookahead == 'a') ADVANCE(1152); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1064); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1033); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2553,27 +2771,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '(') ADVANCE(627); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1015); + lookahead == 'a') ADVANCE(1152); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1064); + lookahead == 'o') ADVANCE(1066); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2585,41 +2817,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1016); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); + lookahead == 'a') ADVANCE(1152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); + lookahead == 'i') ADVANCE(1139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(935); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'o') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2631,39 +2853,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1016); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); + lookahead == 'a') ADVANCE(1152); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(937); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'o') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2675,29 +2886,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(937); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1016); + lookahead == 'a') ADVANCE(1152); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1089); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1064); + lookahead == 'o') ADVANCE(1066); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2709,26 +2930,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(64); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '|') ADVANCE(78); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1016); + lookahead == 'a') ADVANCE(1153); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); if (lookahead == 'O' || lookahead == 'o') ADVANCE(1064); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1033); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2740,17 +2976,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 11: - if (lookahead == '$') ADVANCE(803); - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1153); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1066); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2760,14 +3018,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(11) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 12: - if (lookahead == '\'') ADVANCE(820); - if (lookahead == '-') ADVANCE(824); - if (lookahead == '/') ADVANCE(823); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1153); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2775,38 +3050,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(825); - if (lookahead != 0) ADVANCE(822); + lookahead == 65279) SKIP(12) + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(855); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1153); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(934); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'o') ADVANCE(1202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2815,38 +3082,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(13) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 14: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '|') ADVANCE(95); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1153); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(855); + lookahead == 'f') ADVANCE(1197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); + lookahead == 'g') ADVANCE(1208); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(1139); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); + lookahead == 'l') ADVANCE(1089); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(936); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); + lookahead == 'o') ADVANCE(1066); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2855,26 +3124,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(14) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(856); + lookahead == 'f') ADVANCE(978); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); + lookahead == 'n') ADVANCE(1174); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1063); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1033); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); + lookahead == 't') ADVANCE(1198); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2883,27 +3167,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(15) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(906); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(856); + lookahead == 'f') ADVANCE(978); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); + lookahead == 'n') ADVANCE(1174); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); + lookahead == 't') ADVANCE(1198); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2912,29 +3208,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(16) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 17: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(856); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(914); + lookahead == 'n') ADVANCE(1174); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(967); + lookahead == 't') ADVANCE(1198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2943,26 +3237,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(17) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 18: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(987); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1039); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(856); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); + lookahead == 'n') ADVANCE(1174); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); + lookahead == 't') ADVANCE(1198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2971,26 +3267,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(18) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if (('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 19: - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(856); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1040); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1153); + lookahead == 'n') ADVANCE(1174); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1040); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1061); + lookahead == 't') ADVANCE(1198); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2999,42 +3299,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(19) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 20: - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1008); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(909); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(934); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3044,41 +3322,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(20) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 21: - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); + lookahead == 'a') ADVANCE(1122); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(909); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(936); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(961); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'n') ADVANCE(1174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3087,36 +3350,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(21) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1301); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1008); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(910); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); + lookahead == 'n') ADVANCE(1174); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); + lookahead == 'r') ADVANCE(1028); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1040); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1198); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3125,40 +3385,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(22) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(512); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(80); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(227); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(978); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(423); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(91); + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1089); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(441); + lookahead == 'n') ADVANCE(1174); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(606); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(260); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(222); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(89); + lookahead == 'o') ADVANCE(1065); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1198); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(320); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3167,35 +3424,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(23) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 24: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '/') ADVANCE(45); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1008); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(909); + lookahead == 'f') ADVANCE(979); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(934); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'n') ADVANCE(1174); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1295); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1198); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3204,39 +3453,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(24) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 25: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(909); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(936); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(961); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead == '-') ADVANCE(941); + if (lookahead == '/') ADVANCE(939); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3244,34 +3470,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(25) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + lookahead == 65279) ADVANCE(940); + if (lookahead != 0) ADVANCE(944); END_STATE(); case 26: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '%') ADVANCE(556); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ':') ADVANCE(82); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '[') ADVANCE(915); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1078); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1150); + lookahead == 'c') ADVANCE(344); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(267); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1008); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1045); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(910); + lookahead == 'i') ADVANCE(446); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); + lookahead == 'n') ADVANCE(512); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(548); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(904); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'r') ADVANCE(271); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(474); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3280,33 +3505,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(26) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); END_STATE(); case 27: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); + if (lookahead == '%') ADVANCE(556); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ':') ADVANCE(82); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '[') ADVANCE(915); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(934); + lookahead == 'i') ADVANCE(1139); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); + lookahead == 'r') ADVANCE(1033); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1243); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3316,30 +3534,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(27) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 28: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1060); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(857); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(957); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(936); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + if (lookahead == '%') ADVANCE(556); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == '[') ADVANCE(915); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1281); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3351,16 +3558,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 29: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + if (lookahead == '\'') ADVANCE(922); + if (lookahead == '-') ADVANCE(926); + if (lookahead == '/') ADVANCE(925); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3368,20 +3571,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(29) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + lookahead == 65279) ADVANCE(927); + if (lookahead != 0) ADVANCE(924); END_STATE(); case 30: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '[') ADVANCE(815); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1042); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1139); + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1063); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1032); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3391,25 +3614,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(30) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 31: - if (lookahead == ')') ADVANCE(629); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(526); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(247); + lookahead == 'a') ADVANCE(1234); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(408); + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1042); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(454); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(462); + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3418,22 +3657,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(31) + if (('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 32: - if (lookahead == ')') ADVANCE(629); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); + lookahead == 'a') ADVANCE(1234); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1043); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1101); + lookahead == 'r') ADVANCE(1032); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3445,21 +3698,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 33: - if (lookahead == ')') ADVANCE(629); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == ';') ADVANCE(619); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1041); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(905); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1101); + lookahead == 'r') ADVANCE(1094); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(951); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3469,22 +3738,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(33) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 34: - if (lookahead == ')') ADVANCE(629); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(577); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(954); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1056); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1090); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1022); + lookahead == 'c') ADVANCE(125); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(267); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(475); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(105); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(494); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(681); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(285); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(108); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(365); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3493,17 +3775,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); END_STATE(); case 35: - if (lookahead == ')') ADVANCE(629); - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(906); + if (lookahead == '(') ADVANCE(708); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1159); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1043); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1140); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1243); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3513,49 +3809,182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(35) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 36: - if (lookahead == '*') ADVANCE(38); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1042); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1063); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1032); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(36) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 37: - if (lookahead == '*') ADVANCE(37); - if (lookahead == '/') ADVANCE(826); - if (lookahead != 0) ADVANCE(38); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1042); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(37) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 38: - if (lookahead == '*') ADVANCE(37); - if (lookahead != 0) ADVANCE(38); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1043); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1032); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(38) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 39: - if (lookahead == '-') ADVANCE(827); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1063); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1033); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(39) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 40: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(986); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1079); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(912); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1018); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1069); + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1030); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(917); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(933); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(914); + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(967); + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3565,16 +3994,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(40) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 41: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(731); + if (lookahead == ')') ADVANCE(710); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || @@ -3583,17 +4017,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 42: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1005); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == ';') ADVANCE(701); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1033); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1101); + lookahead == 'u') ADVANCE(1243); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3603,15 +4041,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(42) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 43: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1094); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1086); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1192); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1228); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3621,25 +4066,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(43) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 44: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(987); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1142); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1081); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1054); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(881); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(858); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1039); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3649,119 +4085,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(44) if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 45: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(987); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(45) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == '*') ADVANCE(49); END_STATE(); case 46: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1147); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(46) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == '*') ADVANCE(46); + if (lookahead == '/') ADVANCE(928); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 47: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1147); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(47) - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == '*') ADVANCE(46); + if (lookahead == 's') ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(948); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 48: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(915); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(916); - 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(1162); + if (lookahead == '*') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(948); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 49: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(953); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1056); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1090); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1022); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(49) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == '*') ADVANCE(46); + if (lookahead != 0) ADVANCE(49); END_STATE(); case 50: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1038); + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); + lookahead == 'i') ADVANCE(1143); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1041); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3773,15 +4149,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 51: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1038); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1039); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1197); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(980); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1139); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1089); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1065); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1083); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3793,35 +4180,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 52: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1048); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(52) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == '-') ADVANCE(936); END_STATE(); case 53: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == '\\') ADVANCE(814); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1121); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1051); + lookahead == 'c') ADVANCE(1216); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1037); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1119); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1181); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1207); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1005); + lookahead == 'i') ADVANCE(1067); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1046); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(983); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1040); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3831,21 +4220,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(53) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 54: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == '\\') ADVANCE(814); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1121); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1145); + lookahead == 'c') ADVANCE(1216); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1037); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1150); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1181); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1070); + lookahead == 'g') ADVANCE(1207); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1067); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1148); + lookahead == 'p') ADVANCE(1046); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(983); if (lookahead == 'S' || - lookahead == 's') ADVANCE(929); + lookahead == 's') ADVANCE(1040); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3855,17 +4259,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(54) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 55: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == '\\') ADVANCE(814); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1121); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1145); + lookahead == 'c') ADVANCE(1216); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1037); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1301); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1181); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1207); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1067); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1046); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(983); if (lookahead == 'S' || - lookahead == 's') ADVANCE(929); + lookahead == 's') ADVANCE(1040); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3875,20 +4298,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(55) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 56: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1142); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1081); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(815); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || @@ -3897,15 +4316,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 57: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1005); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1234); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3915,15 +4332,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(57) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 58: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(938); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1122); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1283); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1219); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1190); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1005); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(981); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3933,15 +4360,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(58) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 59: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1055); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1122); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3951,17 +4378,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(59) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 60: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1005); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1101); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1287); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3971,15 +4398,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(60) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 61: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1005); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1287); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3989,15 +4416,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(61) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 62: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1129); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1044); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1045); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4009,15 +4438,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 63: - if (lookahead == '-') ADVANCE(39); - if (lookahead == '/') ADVANCE(36); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(927); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(858); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1085); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1192); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1228); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1156); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4029,3527 +4464,3205 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 64: - if (lookahead == ':') ADVANCE(844); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1172); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(64) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 65: - if (lookahead == ':') ADVANCE(844); - if (lookahead == '=') ADVANCE(806); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1172); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1173); + 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(1306); END_STATE(); case 66: - if (lookahead == '=') ADVANCE(842); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1184); + 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(1306); END_STATE(); case 67: - if (lookahead == 'I') ADVANCE(388); - if (lookahead == 'i') ADVANCE(77); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1292); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1159); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1180); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1043); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(992); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(151); + lookahead == 'o') ADVANCE(1140); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1094); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1243); + 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(1306); END_STATE(); case 68: - if (lookahead == 'R') ADVANCE(318); - if (lookahead == 'r') ADVANCE(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(478); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(131); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1288); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1208); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1290); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1059); + 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(1306); END_STATE(); case 69: - if (lookahead == '_') ADVANCE(584); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1288); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1059); + 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(1306); END_STATE(); case 70: - if (lookahead == '_') ADVANCE(600); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1188); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1140); + 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(1306); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(73); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1283); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1219); + 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(1306); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(72) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 73: - if (lookahead == 'g') ADVANCE(72); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1068); + 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(1306); END_STATE(); case 74: - if (lookahead == 'i') ADVANCE(75); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(513); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(522); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(74) END_STATE(); case 75: - if (lookahead == 'l') ADVANCE(71); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1191); + 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(1306); END_STATE(); case 76: - if (lookahead == 's') ADVANCE(716); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1140); + 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(1306); END_STATE(); case 77: - if (lookahead == 'v') ADVANCE(74); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(106); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1271); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(77) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 78: - if (lookahead == '|') ADVANCE(843); + if (lookahead == '-') ADVANCE(52); + if (lookahead == '/') ADVANCE(45); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1057); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(981); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(78) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 79: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(161); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(224); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(349); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(221); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(481); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(148); + if (lookahead == ':') ADVANCE(967); END_STATE(); case 80: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(161); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(148); + if (lookahead == ':') ADVANCE(967); + if (lookahead == '=') ADVANCE(908); END_STATE(); case 81: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(350); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(503); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(465); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(446); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(353); + if (lookahead == '=') ADVANCE(965); END_STATE(); case 82: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(604); + if (lookahead == '=') ADVANCE(908); END_STATE(); case 83: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(411); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(278); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(386); + if (lookahead == 'I') ADVANCE(436); + if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(176); END_STATE(); case 84: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(575); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(437); + if (lookahead == 'R') ADVANCE(364); + if (lookahead == 'r') ADVANCE(83); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(541); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(154); END_STATE(); case 85: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(134); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(330); + if (lookahead == '_') ADVANCE(656); END_STATE(); case 86: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(687); + if (lookahead == '_') ADVANCE(672); END_STATE(); case 87: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(649); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 88: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(146); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(169); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(230); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 89: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(379); + if (lookahead == 'g') ADVANCE(88); END_STATE(); case 90: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(379); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(352); + if (lookahead == 'i') ADVANCE(91); END_STATE(); case 91: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(608); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(437); + if (lookahead == 'l') ADVANCE(87); END_STATE(); case 92: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(421); + if (lookahead == 's') ADVANCE(801); END_STATE(); case 93: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(421); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(581); + if (lookahead == 's') ADVANCE(944); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(943); END_STATE(); case 94: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(554); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(162); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(633); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(442); + if (lookahead == 'v') ADVANCE(90); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(127); END_STATE(); case 95: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(554); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(286); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(633); + if (lookahead == '|') ADVANCE(966); END_STATE(); case 96: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(555); + lookahead == 'a') ADVANCE(186); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(258); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(701); + lookahead == 'o') ADVANCE(397); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(254); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(357); + lookahead == 'u') ADVANCE(544); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(173); END_STATE(); case 97: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(555); + lookahead == 'a') ADVANCE(186); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(258); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(533); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(356); + lookahead == 'o') ADVANCE(484); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(254); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(173); END_STATE(); case 98: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(583); + lookahead == 'a') ADVANCE(398); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(566); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(528); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(504); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(402); END_STATE(); case 99: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(583); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(494); + lookahead == 'a') ADVANCE(677); END_STATE(); case 100: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(583); + lookahead == 'a') ADVANCE(463); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(498); + lookahead == 'e') ADVANCE(320); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(434); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(500); END_STATE(); case 101: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(176); + lookahead == 'a') ADVANCE(645); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(490); END_STATE(); case 102: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(363); + lookahead == 'a') ADVANCE(158); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(379); END_STATE(); case 103: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(348); + lookahead == 'a') ADVANCE(771); END_STATE(); case 104: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(174); + lookahead == 'a') ADVANCE(736); END_STATE(); case 105: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(410); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(278); + lookahead == 'a') ADVANCE(684); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(386); + lookahead == 'i') ADVANCE(490); END_STATE(); case 106: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(477); + lookahead == 'a') ADVANCE(157); END_STATE(); case 107: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(480); + lookahead == 'a') ADVANCE(171); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(586); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(195); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(263); END_STATE(); case 108: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(490); + lookahead == 'a') ADVANCE(426); END_STATE(); case 109: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(132); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(387); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(391); + lookahead == 'a') ADVANCE(426); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(706); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(314); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(463); + lookahead == 'o') ADVANCE(399); END_STATE(); case 110: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(132); + lookahead == 'a') ADVANCE(382); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(387); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(315); + lookahead == 'e') ADVANCE(324); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(335); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(667); END_STATE(); case 111: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(563); + lookahead == 'a') ADVANCE(472); END_STATE(); case 112: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(157); + lookahead == 'a') ADVANCE(472); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(653); END_STATE(); case 113: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(361); + lookahead == 'a') ADVANCE(622); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(187); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(721); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(497); END_STATE(); case 114: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(394); + lookahead == 'a') ADVANCE(622); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(329); END_STATE(); case 115: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(297); + lookahead == 'a') ADVANCE(624); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(785); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(405); END_STATE(); case 116: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(560); + lookahead == 'a') ADVANCE(624); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(786); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(404); END_STATE(); case 117: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(565); + lookahead == 'a') ADVANCE(624); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(601); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(404); END_STATE(); case 118: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(500); + lookahead == 'a') ADVANCE(654); END_STATE(); case 119: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(342); + lookahead == 'a') ADVANCE(654); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(558); END_STATE(); case 120: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(567); + lookahead == 'a') ADVANCE(654); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(570); END_STATE(); case 121: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(568); + lookahead == 'a') ADVANCE(202); END_STATE(); case 122: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(380); + lookahead == 'a') ADVANCE(396); END_STATE(); case 123: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(135); + lookahead == 'a') ADVANCE(200); END_STATE(); case 124: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(381); + lookahead == 'a') ADVANCE(411); END_STATE(); case 125: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); + lookahead == 'a') ADVANCE(185); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(173); END_STATE(); case 126: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(171); + lookahead == 'a') ADVANCE(587); END_STATE(); case 127: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(574); + lookahead == 'a') ADVANCE(540); END_STATE(); case 128: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(133); + lookahead == 'a') ADVANCE(462); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(320); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(434); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(500); END_STATE(); case 129: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(137); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(706); + lookahead == 'a') ADVANCE(543); END_STATE(); case 130: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(578); + lookahead == 'a') ADVANCE(554); END_STATE(); case 131: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(378); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(155); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(435); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(259); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(437); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(791); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(360); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(523); END_STATE(); case 132: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(366); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(155); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(435); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(259); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(791); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(361); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(523); END_STATE(); case 133: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(368); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(633); END_STATE(); case 134: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(368); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(540); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(181); END_STATE(); case 135: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(370); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(409); END_STATE(); case 136: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(371); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(443); END_STATE(); case 137: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(372); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(340); END_STATE(); case 138: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(552); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(167); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(569); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(345); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(674); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(828); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(628); END_STATE(); case 139: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(304); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(375); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(85); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(563); END_STATE(); case 140: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(304); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(374); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(635); END_STATE(); case 141: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(344); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(389); END_STATE(); case 142: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(665); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(637); END_STATE(); case 143: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(710); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(638); END_STATE(); case 144: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(817); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(632); END_STATE(); case 145: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(664); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(427); END_STATE(); case 146: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(299); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(159); END_STATE(); case 147: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(602); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(570); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(428); END_STATE(); case 148: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(365); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(160); END_STATE(); case 149: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(101); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(160); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(197); END_STATE(); case 150: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(598); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(644); END_STATE(); case 151: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(229); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(161); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(259); END_STATE(); case 152: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(359); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(556); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(236); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(252); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(440); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(156); END_STATE(); case 153: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(542); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(650); END_STATE(); case 154: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(543); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(425); END_STATE(); case 155: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(546); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(414); END_STATE(); case 156: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(547); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(416); END_STATE(); case 157: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(207); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(416); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(609); END_STATE(); case 158: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(212); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(416); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(609); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(301); END_STATE(); case 159: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(235); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(418); END_STATE(); case 160: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(243); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(419); END_STATE(); case 161: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(305); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(149); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(420); END_STATE(); case 162: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(358); + lookahead == 'c') ADVANCE(623); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(193); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(99); + lookahead == 'f') ADVANCE(639); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(256); + lookahead == 'l') ADVANCE(393); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(194); if (lookahead == 'S' || - lookahead == 's') ADVANCE(142); + lookahead == 's') ADVANCE(705); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(951); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(621); END_STATE(); case 163: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(493); + lookahead == 'c') ADVANCE(347); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(423); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(102); END_STATE(); case 164: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(120); + lookahead == 'c') ADVANCE(347); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(424); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(106); END_STATE(); case 165: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(577); + lookahead == 'c') ADVANCE(392); END_STATE(); case 166: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(579); + lookahead == 'c') ADVANCE(752); END_STATE(); case 167: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(678); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(795); END_STATE(); case 168: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(845); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(919); END_STATE(); case 169: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(410); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(801); + lookahead == 'd') ADVANCE(255); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(292); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(293); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(493); END_STATE(); case 170: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(741); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(751); END_STATE(); case 171: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(691); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(342); END_STATE(); case 172: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(646); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(674); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(429); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(641); END_STATE(); case 173: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(767); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(412); END_STATE(); case 174: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(121); + END_STATE(); + case 175: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(671); + END_STATE(); + case 176: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(260); + END_STATE(); + case 177: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(611); + END_STATE(); + case 178: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(612); + END_STATE(); + case 179: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(615); + END_STATE(); + case 180: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(616); + END_STATE(); + case 181: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(232); + END_STATE(); + case 182: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(238); + END_STATE(); + case 183: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(274); + END_STATE(); + case 184: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(280); + END_STATE(); + case 185: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(348); + END_STATE(); + case 186: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(348); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(174); + END_STATE(); + case 187: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(407); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(119); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(299); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(166); + END_STATE(); + case 188: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(576); + END_STATE(); + case 189: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(142); + END_STATE(); + case 190: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(649); + END_STATE(); + case 191: + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(651); + END_STATE(); + case 192: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(193); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(639); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(194); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(705); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(951); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(621); + END_STATE(); + case 193: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(763); + END_STATE(); + case 194: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(968); + END_STATE(); + case 195: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(849); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(431); + END_STATE(); + case 196: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(825); + END_STATE(); + case 197: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(775); + END_STATE(); + case 198: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(733); + END_STATE(); + case 199: + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(870); + END_STATE(); + case 200: if (lookahead == 'D' || lookahead == 'd') ADVANCE(1); END_STATE(); - case 175: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(343); - END_STATE(); - case 176: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(203); - END_STATE(); - case 177: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(206); - END_STATE(); - case 178: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(599); - END_STATE(); - case 179: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(117); - END_STATE(); - case 180: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(277); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(733); - END_STATE(); - case 181: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(609); - END_STATE(); - case 182: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(278); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(386); - END_STATE(); - case 183: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(282); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(597); - END_STATE(); - case 184: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); - END_STATE(); - case 185: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(607); - END_STATE(); - case 186: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(742); - END_STATE(); - case 187: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(830); - END_STATE(); - case 188: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(847); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(164); - END_STATE(); - case 189: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(686); - END_STATE(); - case 190: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(831); - END_STATE(); - case 191: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(739); - END_STATE(); - case 192: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(740); - END_STATE(); - case 193: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(849); - END_STATE(); - case 194: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(647); - END_STATE(); - case 195: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(807); - END_STATE(); - case 196: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(745); - END_STATE(); - case 197: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(644); - END_STATE(); - case 198: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(670); - END_STATE(); - case 199: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(705); - END_STATE(); - case 200: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(797); - END_STATE(); case 201: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(657); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(391); END_STATE(); case 202: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(636); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(229); END_STATE(); case 203: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(704); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(247); END_STATE(); case 204: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(804); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(670); END_STATE(); case 205: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(756); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(140); END_STATE(); case 206: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(669); + lookahead == 'e') ADVANCE(318); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(817); END_STATE(); case 207: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(809); + lookahead == 'e') ADVANCE(687); END_STATE(); case 208: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(728); + lookahead == 'e') ADVANCE(320); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(434); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(500); END_STATE(); case 209: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(793); + lookahead == 'e') ADVANCE(451); END_STATE(); case 210: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(735); + lookahead == 'e') ADVANCE(861); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(310); END_STATE(); case 211: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(734); + lookahead == 'e') ADVANCE(826); END_STATE(); case 212: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(722); + lookahead == 'e') ADVANCE(953); END_STATE(); case 213: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(748); + lookahead == 'e') ADVANCE(970); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(189); END_STATE(); case 214: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(798); + lookahead == 'e') ADVANCE(704); END_STATE(); case 215: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(726); + lookahead == 'e') ADVANCE(954); END_STATE(); case 216: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(690); + lookahead == 'e') ADVANCE(823); END_STATE(); case 217: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(796); + lookahead == 'e') ADVANCE(824); END_STATE(); case 218: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(688); + lookahead == 'e') ADVANCE(972); END_STATE(); case 219: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(283); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); + lookahead == 'e') ADVANCE(851); END_STATE(); case 220: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(478); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(318); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(131); + lookahead == 'e') ADVANCE(734); END_STATE(); case 221: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(111); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(521); + lookahead == 'e') ADVANCE(909); END_STATE(); case 222: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(377); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(108); + lookahead == 'e') ADVANCE(829); END_STATE(); case 223: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); + lookahead == 'e') ADVANCE(702); END_STATE(); case 224: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(141); + lookahead == 'e') ADVANCE(757); END_STATE(); case 225: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(285); + lookahead == 'e') ADVANCE(790); END_STATE(); case 226: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(170); + lookahead == 'e') ADVANCE(901); END_STATE(); case 227: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(279); + lookahead == 'e') ADVANCE(744); END_STATE(); case 228: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(475); + lookahead == 'e') ADVANCE(724); END_STATE(); case 229: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(178); + lookahead == 'e') ADVANCE(789); END_STATE(); case 230: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(524); + lookahead == 'e') ADVANCE(906); END_STATE(); case 231: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(515); + lookahead == 'e') ADVANCE(841); END_STATE(); case 232: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(466); + lookahead == 'e') ADVANCE(911); END_STATE(); case 233: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(467); + lookahead == 'e') ADVANCE(844); END_STATE(); case 234: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(153); + lookahead == 'e') ADVANCE(812); END_STATE(); case 235: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(516); + lookahead == 'e') ADVANCE(897); END_STATE(); case 236: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(468); + lookahead == 'e') ADVANCE(819); END_STATE(); case 237: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(172); + lookahead == 'e') ADVANCE(818); END_STATE(); case 238: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(431); + lookahead == 'e') ADVANCE(806); END_STATE(); case 239: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(517); + lookahead == 'e') ADVANCE(832); END_STATE(); case 240: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(504); + lookahead == 'e') ADVANCE(902); END_STATE(); case 241: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(173); + lookahead == 'e') ADVANCE(810); END_STATE(); case 242: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(322); + lookahead == 'e') ADVANCE(774); END_STATE(); case 243: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(519); + lookahead == 'e') ADVANCE(900); END_STATE(); case 244: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(506); + lookahead == 'e') ADVANCE(772); END_STATE(); case 245: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(469); + lookahead == 'e') ADVANCE(328); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(721); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(497); END_STATE(); case 246: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(470); + lookahead == 'e') ADVANCE(325); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(335); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(679); END_STATE(); case 247: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(522); + lookahead == 'e') ADVANCE(756); END_STATE(); case 248: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(541); + lookahead == 'e') ADVANCE(326); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(335); END_STATE(); case 249: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(471); + lookahead == 'e') ADVANCE(326); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(335); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(679); END_STATE(); case 250: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(472); + lookahead == 'e') ADVANCE(590); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(680); END_STATE(); case 251: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(473); + lookahead == 'e') ADVANCE(918); END_STATE(); case 252: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(499); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(255); + lookahead == 'e') ADVANCE(917); END_STATE(); case 253: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(424); + lookahead == 'e') ADVANCE(541); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(364); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(154); END_STATE(); case 254: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(393); + lookahead == 'e') ADVANCE(133); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); END_STATE(); case 255: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(104); + lookahead == 'e') ADVANCE(683); END_STATE(); case 256: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(564); + lookahead == 'e') ADVANCE(201); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(631); END_STATE(); case 257: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(425); + lookahead == 'e') ADVANCE(196); END_STATE(); case 258: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(395); + lookahead == 'e') ADVANCE(165); END_STATE(); case 259: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(507); + lookahead == 'e') ADVANCE(449); END_STATE(); case 260: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(523); + lookahead == 'e') ADVANCE(204); END_STATE(); case 261: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(426); + lookahead == 'e') ADVANCE(538); END_STATE(); case 262: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(427); + lookahead == 'e') ADVANCE(175); END_STATE(); case 263: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(496); + lookahead == 'e') ADVANCE(175); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(591); END_STATE(); case 264: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(284); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); + lookahead == 'e') ADVANCE(327); END_STATE(); case 265: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(276); + lookahead == 'e') ADVANCE(529); END_STATE(); case 266: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(433); + lookahead == 'e') ADVANCE(580); END_STATE(); case 267: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(434); + lookahead == 'e') ADVANCE(321); END_STATE(); case 268: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(376); + lookahead == 'e') ADVANCE(530); END_STATE(); case 269: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(396); + lookahead == 'e') ADVANCE(198); END_STATE(); case 270: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(812); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(383); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(721); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(177); END_STATE(); case 271: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(747); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(323); END_STATE(); case 272: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(569); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(572); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(145); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(828); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(545); END_STATE(); case 273: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(280); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(630); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(752); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(199); END_STATE(); case 274: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(280); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(630); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(752); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(576); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(415); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(581); END_STATE(); case 275: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(280); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(630); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(749); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(582); END_STATE(); case 276: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(457); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(568); END_STATE(); case 277: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(457); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(321); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(369); END_STATE(); case 278: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(535); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(483); END_STATE(); case 279: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(98); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(531); END_STATE(); case 280: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(528); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(584); END_STATE(); case 281: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(451); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(532); END_STATE(); case 282: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(259); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(114); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(362); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(571); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(588); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(571); END_STATE(); case 283: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(259); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(591); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(588); END_STATE(); case 284: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(259); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(593); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(422); END_STATE(); case 285: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(422); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(130); END_STATE(); case 286: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(100); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(256); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(142); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(569); END_STATE(); case 287: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(662); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(610); END_STATE(); case 288: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(770); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(533); END_STATE(); case 289: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(642); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(534); END_STATE(); case 290: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(635); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(450); END_STATE(); case 291: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(298); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(535); END_STATE(); case 292: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(306); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(536); END_STATE(); case 293: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(296); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(562); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(298); END_STATE(); case 294: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(586); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(602); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(144); END_STATE(); case 295: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(407); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(317); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(817); END_STATE(); case 296: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(237); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(476); END_STATE(); case 297: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(209); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(442); END_STATE(); case 298: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(249); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(123); END_STATE(); case 299: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(754); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(634); END_STATE(); case 300: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(737); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(477); END_STATE(); case 301: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(224); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(430); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(221); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(444); END_STATE(); case 302: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(224); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(430); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(439); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(478); END_STATE(); case 303: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(184); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(480); END_STATE(); case 304: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(254); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(560); END_STATE(); case 305: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(191); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(527); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(152); END_STATE(); case 306: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(539); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(485); END_STATE(); case 307: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(452); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(486); END_STATE(); case 308: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(338); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(445); END_STATE(); case 309: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(263); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(853); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(430); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(805); END_STATE(); case 310: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(464); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(856); END_STATE(); case 311: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(464); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(456); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(858); END_STATE(); case 312: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(616); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(831); END_STATE(); case 313: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(615); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(718); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(836); END_STATE(); case 314: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(291); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(718); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(836); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(188); + lookahead == 'u') ADVANCE(647); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(467); END_STATE(); case 315: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(291); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(417); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(718); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(833); END_STATE(); case 316: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(398); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(322); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(718); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(833); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(467); END_STATE(); case 317: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(388); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(516); END_STATE(); case 318: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(388); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(151); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(516); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(367); END_STATE(); case 319: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(413); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(509); END_STATE(); case 320: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(604); END_STATE(); case 321: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(400); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(118); END_STATE(); case 322: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(295); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(594); END_STATE(); case 323: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(143); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(282); END_STATE(); case 324: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(102); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(282); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(136); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(408); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(642); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(660); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(286); END_STATE(); case 325: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(144); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(282); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(136); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(642); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(663); END_STATE(); case 326: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(538); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(282); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(664); END_STATE(); case 327: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(113); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(120); END_STATE(); case 328: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(447); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(120); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(299); END_STATE(); case 329: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(414); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(120); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(166); END_STATE(); case 330: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(154); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(749); END_STATE(); case 331: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(873); + END_STATE(); + case 332: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(731); + END_STATE(); + case 333: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(723); + END_STATE(); + case 334: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(341); + END_STATE(); + case 335: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(349); + END_STATE(); + case 336: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(339); + END_STATE(); + case 337: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(658); + END_STATE(); + case 338: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(459); + END_STATE(); + case 339: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(269); + END_STATE(); + case 340: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(235); + END_STATE(); + case 341: + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(288); + END_STATE(); + case 342: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(839); + END_STATE(); + case 343: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(821); + END_STATE(); + case 344: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(258); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(484); + END_STATE(); + case 345: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(258); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(484); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(496); + END_STATE(); + case 346: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(209); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(625); + END_STATE(); + case 347: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(297); + END_STATE(); + case 348: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(216); + END_STATE(); + case 349: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(608); + END_STATE(); + case 350: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(510); + END_STATE(); + case 351: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(290); + END_STATE(); + case 352: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(377); + END_STATE(); + case 353: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(304); + END_STATE(); + case 354: + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(304); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(625); + END_STATE(); + case 355: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(526); + END_STATE(); + case 356: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(526); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(515); + END_STATE(); + case 357: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(696); + END_STATE(); + case 358: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(434); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(500); + END_STATE(); + case 359: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(695); + END_STATE(); + case 360: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(334); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(213); + END_STATE(); + case 361: + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(334); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(469); + END_STATE(); + case 362: if (lookahead == 'I' || lookahead == 'i') ADVANCE(448); END_STATE(); - case 332: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(429); - END_STATE(); - case 333: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(416); - END_STATE(); - case 334: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(416); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(794); - END_STATE(); - case 335: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(155); - END_STATE(); - case 336: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(449); - END_STATE(); - case 337: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(369); - END_STATE(); - case 338: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(418); - END_STATE(); - case 339: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(156); - END_STATE(); - case 340: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(450); - END_STATE(); - case 341: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(453); - END_STATE(); - case 342: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(428); - END_STATE(); - case 343: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(121); - END_STATE(); - case 344: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(692); - END_STATE(); - case 345: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(714); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(233); - END_STATE(); - case 346: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(791); - END_STATE(); - case 347: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(684); - END_STATE(); - case 348: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(778); - END_STATE(); - case 349: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(582); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(147); - END_STATE(); - case 350: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(527); - END_STATE(); - case 351: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(612); - END_STATE(); - case 352: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(116); - END_STATE(); - case 353: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(346); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(165); - END_STATE(); - case 354: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(346); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(166); - END_STATE(); - case 355: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(614); - END_STATE(); - case 356: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(347); - END_STATE(); - case 357: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(347); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(244); - END_STATE(); - case 358: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(118); - END_STATE(); - case 359: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(596); - END_STATE(); - case 360: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(596); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(258); - END_STATE(); - case 361: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); - END_STATE(); - case 362: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(112); - END_STATE(); case 363: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(351); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(436); END_STATE(); case 364: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(520); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(436); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(176); END_STATE(); case 365: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(192); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(625); END_STATE(); case 366: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(194); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(465); END_STATE(); case 367: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(545); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(452); END_STATE(); case 368: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(200); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(466); END_STATE(); case 369: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(214); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(338); END_STATE(); case 370: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(217); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(167); END_STATE(); case 371: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(218); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(168); END_STATE(); case 372: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(239); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(607); END_STATE(); case 373: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(364); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(135); END_STATE(); case 374: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(234); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(589); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(124); END_STATE(); case 375: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(234); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(589); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(532); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(637); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(468); END_STATE(); case 376: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(234); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(601); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(468); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(898); END_STATE(); case 377: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(234); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(637); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(470); END_STATE(); case 378: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(323); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(505); END_STATE(); case 379: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(590); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(178); END_STATE(); case 380: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(594); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(506); END_STATE(); case 381: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(595); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(482); END_STATE(); case 382: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(335); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(595); END_STATE(); case 383: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(223); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(179); END_STATE(); case 384: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(672); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(640); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(292); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(493); END_STATE(); case 385: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(763); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(507); END_STATE(); case 386: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(326); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(417); END_STATE(); case 387: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(460); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(180); END_STATE(); case 388: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(106); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(508); END_STATE(); case 389: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(402); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(479); END_STATE(); case 390: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(392); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(152); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(511); END_STATE(); case 391: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(187); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(143); END_STATE(); case 392: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(587); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(776); END_STATE(); case 393: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(87); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(799); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(268); END_STATE(); case 394: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(199); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(895); END_STATE(); case 395: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(257); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(769); END_STATE(); case 396: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(261); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(882); END_STATE(); case 397: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(655); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(311); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(179); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(319); + lookahead == 'n') ADVANCE(172); END_STATE(); case 398: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(782); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(593); END_STATE(); case 399: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(758); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(195); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(138); END_STATE(); case 400: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(799); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(691); END_STATE(); case 401: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(702); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(394); END_STATE(); case 402: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(679); - END_STATE(); - case 403: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(759); - END_STATE(); - case 404: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(724); - END_STATE(); - case 405: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(651); - END_STATE(); - case 406: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(334); - END_STATE(); - case 407: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(697); - END_STATE(); - case 408: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(720); - END_STATE(); - case 409: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(828); - END_STATE(); - case 410: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); - END_STATE(); - case 411: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(534); - END_STATE(); - case 412: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(432); - END_STATE(); - case 413: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(287); - END_STATE(); - case 414: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(288); - END_STATE(); - case 415: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(226); - END_STATE(); - case 416: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(289); - END_STATE(); - case 417: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(164); - END_STATE(); - case 418: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(290); - END_STATE(); - case 419: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(518); - END_STATE(); - case 420: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(394); if (lookahead == 'N' || lookahead == 'n') ADVANCE(190); END_STATE(); - case 421: + case 403: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(394); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + lookahead == 'n') ADVANCE(191); + END_STATE(); + case 404: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(395); + END_STATE(); + case 405: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(395); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(276); + END_STATE(); + case 406: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(692); + END_STATE(); + case 407: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(139); + END_STATE(); + case 408: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(134); + END_STATE(); + case 409: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(359); + END_STATE(); + case 410: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(669); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(308); + END_STATE(); + case 411: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(406); + END_STATE(); + case 412: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(217); + END_STATE(); + case 413: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(585); + END_STATE(); + case 414: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(220); + END_STATE(); + case 415: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(614); + END_STATE(); + case 416: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(226); + END_STATE(); + case 417: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(240); + END_STATE(); + case 418: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(243); + END_STATE(); + case 419: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(244); + END_STATE(); + case 420: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(275); + END_STATE(); + case 421: + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(413); END_STATE(); case 422: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(310); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(319); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(270); END_STATE(); case 423: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(163); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(270); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(668); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(600); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(725); END_STATE(); case 424: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(544); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(270); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(668); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(725); END_STATE(); case 425: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(548); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(370); END_STATE(); case 426: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(549); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(661); END_STATE(); case 427: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(562); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(665); END_STATE(); case 428: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(550); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(666); END_STATE(); case 429: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(208); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(383); END_STATE(); case 430: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(529); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(256); END_STATE(); case 431: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(158); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(707); END_STATE(); case 432: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(236); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(440); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(759); END_STATE(); case 433: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(159); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(866); END_STATE(); case 434: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(160); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(372); END_STATE(); case 435: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(520); + END_STATE(); + case 436: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(127); + END_STATE(); + case 437: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(212); + END_STATE(); + case 438: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(659); + END_STATE(); + case 439: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(438); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(169); + END_STATE(); + case 440: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(438); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(384); + END_STATE(); + case 441: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(454); + END_STATE(); + case 442: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(104); + END_STATE(); + case 443: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(225); + END_STATE(); + case 444: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(300); + END_STATE(); + case 445: + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(303); + END_STATE(); + case 446: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(805); + END_STATE(); + case 447: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(356); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(205); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(366); + END_STATE(); + case 448: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(886); + END_STATE(); + case 449: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(855); + END_STATE(); + case 450: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(843); + END_STATE(); + case 451: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(843); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(221); + END_STATE(); + case 452: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(903); + END_STATE(); + case 453: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(787); + END_STATE(); + case 454: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(764); + END_STATE(); + case 455: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(862); + END_STATE(); + case 456: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(808); + END_STATE(); + case 457: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(738); + END_STATE(); + case 458: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(376); + END_STATE(); + case 459: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(781); + END_STATE(); + case 460: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(194); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(170); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(951); + END_STATE(); + case 461: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(194); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(951); + END_STATE(); + case 462: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(337); + END_STATE(); + case 463: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(337); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(603); + END_STATE(); + case 464: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(488); + END_STATE(); + case 465: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(330); + END_STATE(); + case 466: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(331); + END_STATE(); + case 467: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(257); + END_STATE(); + case 468: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(332); + END_STATE(); + case 469: + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(189); + END_STATE(); + case 470: if (lookahead == 'N' || lookahead == 'n') ADVANCE(333); END_STATE(); - case 436: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(70); - END_STATE(); - case 437: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(605); - END_STATE(); - case 438: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(316); - END_STATE(); - case 439: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(521); - END_STATE(); - case 440: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(622); - END_STATE(); - case 441: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(700); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(373); - END_STATE(); - case 442: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(459); - END_STATE(); - case 443: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(581); - END_STATE(); - case 444: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(352); - END_STATE(); - case 445: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(271); - END_STATE(); - case 446: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(384); - END_STATE(); - case 447: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(401); - END_STATE(); - case 448: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(436); - END_STATE(); - case 449: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(404); - END_STATE(); - case 450: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(405); - END_STATE(); - case 451: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(482); - END_STATE(); - case 452: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(483); - END_STATE(); - case 453: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(419); - END_STATE(); - case 454: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(558); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(373); - END_STATE(); - case 455: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(420); - END_STATE(); - case 456: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(293); - END_STATE(); - case 457: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(497); - END_STATE(); - case 458: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(502); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(353); - END_STATE(); - case 459: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(681); - END_STATE(); - case 460: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(810); - END_STATE(); - case 461: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(712); - END_STATE(); - case 462: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(179); - END_STATE(); - case 463: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(189); - END_STATE(); - case 464: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(592); - END_STATE(); - case 465: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(753); - END_STATE(); - case 466: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(746); - END_STATE(); - case 467: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(676); - END_STATE(); - case 468: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(784); - END_STATE(); - case 469: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(776); - END_STATE(); - case 470: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(788); - END_STATE(); case 471: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(744); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(215); END_STATE(); case 472: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(653); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(606); END_STATE(); case 473: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(655); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(583); END_STATE(); case 474: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(93); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(355); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(366); END_STATE(); case 475: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(188); END_STATE(); case 476: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(126); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(613); END_STATE(); case 477: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(611); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(617); END_STATE(); case 478: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(281); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(630); END_STATE(); case 479: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(446); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(354); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(618); END_STATE(); case 480: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(613); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(620); END_STATE(); case 481: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(488); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(629); END_STATE(); case 482: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(385); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(234); END_STATE(); case 483: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(312); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(182); END_STATE(); case 484: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(403); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(597); END_STATE(); case 485: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(317); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(183); END_STATE(); case 486: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(443); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(184); END_STATE(); case 487: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(103); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(375); END_STATE(); case 488: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(253); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(292); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(493); END_STATE(); case 489: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(119); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(86); END_STATE(); case 490: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(540); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(678); END_STATE(); case 491: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(406); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(362); END_STATE(); case 492: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(92); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(791); END_STATE(); case 493: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(258); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(713); END_STATE(); case 494: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(476); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(784); END_STATE(); case 495: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(435); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(784); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(421); END_STATE(); case 496: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(195); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(589); END_STATE(); case 497: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(196); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(518); END_STATE(); case 498: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(511); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(653); END_STATE(); case 499: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(551); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(399); END_STATE(); case 500: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(204); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(519); END_STATE(); case 501: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(215); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(682); END_STATE(); case 502: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(242); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(528); END_STATE(); case 503: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(525); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(312); END_STATE(); case 504: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(327); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(432); END_STATE(); case 505: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(107); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(453); END_STATE(); case 506: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(325); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(489); END_STATE(); case 507: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(266); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(456); END_STATE(); case 508: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(339); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(457); END_STATE(); case 509: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(262); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(546); END_STATE(); case 510: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(509); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(547); END_STATE(); case 511: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(125); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(473); END_STATE(); case 512: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(674); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(601); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(404); END_STATE(); case 513: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(780); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(626); END_STATE(); case 514: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(814); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(471); END_STATE(); case 515: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(626); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(336); END_STATE(); case 516: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(699); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(561); END_STATE(); case 517: + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(565); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(402); + END_STATE(); + case 518: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(766); + END_STATE(); + case 519: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(847); + END_STATE(); + case 520: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(912); + END_STATE(); + case 521: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(797); + END_STATE(); + case 522: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(205); + END_STATE(); + case 523: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(214); + END_STATE(); + case 524: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(251); + END_STATE(); + case 525: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(252); + END_STATE(); + case 526: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(662); + END_STATE(); + case 527: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(673); + END_STATE(); + case 528: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(837); + END_STATE(); + case 529: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(830); + END_STATE(); + case 530: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(761); + END_STATE(); + case 531: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(880); + END_STATE(); + case 532: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(892); + END_STATE(); + case 533: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(828); + END_STATE(); + case 534: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(740); + END_STATE(); + case 535: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(742); + END_STATE(); + case 536: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(888); + END_STATE(); + case 537: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(112); + END_STATE(); + case 538: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(688); + END_STATE(); + case 539: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(149); + END_STATE(); + case 540: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(689); + END_STATE(); + case 541: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(319); + END_STATE(); + case 542: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(504); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(401); + END_STATE(); + case 543: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(690); + END_STATE(); + case 544: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(553); + END_STATE(); + case 545: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(373); + END_STATE(); + case 546: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(433); + END_STATE(); + case 547: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(357); + END_STATE(); + case 548: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(363); + END_STATE(); + case 549: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(455); + END_STATE(); + case 550: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(122); + END_STATE(); + case 551: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(498); + END_STATE(); + case 552: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(141); + END_STATE(); + case 553: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(296); + END_STATE(); + case 554: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(609); + END_STATE(); + case 555: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(111); + END_STATE(); + case 556: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(501); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(693); + END_STATE(); + case 557: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(458); + END_STATE(); + case 558: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(539); + END_STATE(); + case 559: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(487); + END_STATE(); + case 560: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(221); + END_STATE(); + case 561: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(222); + END_STATE(); + case 562: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(619); + END_STATE(); + case 563: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(230); + END_STATE(); + case 564: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(241); + END_STATE(); + case 565: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(277); + END_STATE(); + case 566: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(592); + END_STATE(); + case 567: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(129); + END_STATE(); + case 568: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(371); + END_STATE(); + case 569: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(596); + END_STATE(); + case 570: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(575); + END_STATE(); + case 571: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(306); + END_STATE(); + case 572: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(387); + END_STATE(); + case 573: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(302); + END_STATE(); + case 574: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(573); + END_STATE(); + case 575: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(148); + END_STATE(); + case 576: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(308); + END_STATE(); + case 577: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(705); + END_STATE(); + case 578: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(884); + END_STATE(); + case 579: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(914); + END_STATE(); + case 580: if (lookahead == 'S' || lookahead == 's') ADVANCE(717); END_STATE(); - case 518: + case 581: if (lookahead == 'S' || - lookahead == 's') ADVANCE(719); + lookahead == 's') ADVANCE(783); END_STATE(); - case 519: + case 582: if (lookahead == 'S' || - lookahead == 's') ADVANCE(718); + lookahead == 's') ADVANCE(802); END_STATE(); - case 520: + case 583: if (lookahead == 'S' || - lookahead == 's') ADVANCE(666); + lookahead == 's') ADVANCE(804); END_STATE(); - case 521: + case 584: if (lookahead == 'S' || - lookahead == 's') ADVANCE(513); + lookahead == 's') ADVANCE(803); END_STATE(); - case 522: + case 585: if (lookahead == 'S' || - lookahead == 's') ADVANCE(142); + lookahead == 's') ADVANCE(753); END_STATE(); - case 523: + case 586: if (lookahead == 'S' || - lookahead == 's') ADVANCE(571); + lookahead == 's') ADVANCE(210); END_STATE(); - case 524: + case 587: if (lookahead == 'S' || - lookahead == 's') ADVANCE(559); + lookahead == 's') ADVANCE(174); END_STATE(); - case 525: + case 588: if (lookahead == 'S' || - lookahead == 's') ADVANCE(536); + lookahead == 's') ADVANCE(166); END_STATE(); - case 526: + case 589: if (lookahead == 'S' || - lookahead == 's') ADVANCE(145); + lookahead == 's') ADVANCE(578); END_STATE(); - case 527: + case 590: if (lookahead == 'S' || - lookahead == 's') ADVANCE(193); + lookahead == 's') ADVANCE(642); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(664); END_STATE(); - case 528: + case 591: if (lookahead == 'S' || - lookahead == 's') ADVANCE(248); + lookahead == 's') ADVANCE(627); END_STATE(); - case 529: + case 592: if (lookahead == 'S' || - lookahead == 's') ADVANCE(570); + lookahead == 's') ADVANCE(605); END_STATE(); - case 530: + case 593: if (lookahead == 'S' || - lookahead == 's') ADVANCE(250); + lookahead == 's') ADVANCE(218); END_STATE(); - case 531: + case 594: if (lookahead == 'S' || - lookahead == 's') ADVANCE(251); + lookahead == 's') ADVANCE(287); END_STATE(); - case 532: + case 595: if (lookahead == 'S' || - lookahead == 's') ADVANCE(331); + lookahead == 's') ADVANCE(219); END_STATE(); - case 533: + case 596: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(233); + END_STATE(); + case 597: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(641); + END_STATE(); + case 598: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(289); + END_STATE(); + case 599: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(291); + END_STATE(); + case 600: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(380); + END_STATE(); + case 601: if (lookahead == 'T' || - lookahead == 't') ADVANCE(682); + lookahead == 't') ADVANCE(767); END_STATE(); - case 534: + case 602: if (lookahead == 'T' || - lookahead == 't') ADVANCE(668); + lookahead == 't') ADVANCE(725); END_STATE(); - case 535: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(786); - END_STATE(); - case 536: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(667); - END_STATE(); - case 537: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(708); - END_STATE(); - case 538: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(772); - END_STATE(); - case 539: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(789); - END_STATE(); - case 540: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(736); - END_STATE(); - case 541: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(774); - END_STATE(); - case 542: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(765); - END_STATE(); - case 543: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(768); - END_STATE(); - case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(69); - END_STATE(); - case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(624); - END_STATE(); - case 546: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(632); - END_STATE(); - case 547: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(703); - END_STATE(); - case 548: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(732); - END_STATE(); - case 549: + case 603: if (lookahead == 'T' || lookahead == 't') ADVANCE(755); END_STATE(); - case 550: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(638); - END_STATE(); - case 551: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(620); - END_STATE(); - case 552: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(328); - END_STATE(); - case 553: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(307); - END_STATE(); - case 554: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(86); - END_STATE(); - case 555: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(585); - END_STATE(); - case 556: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(324); - END_STATE(); - case 557: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(300); - END_STATE(); - case 558: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(308); - END_STATE(); - case 559: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(514); - END_STATE(); - case 560: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(337); - END_STATE(); - case 561: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(123); - END_STATE(); - case 562: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(355); - END_STATE(); - case 563: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(197); - END_STATE(); - case 564: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(198); - END_STATE(); - case 565: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(202); - END_STATE(); - case 566: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(205); - END_STATE(); - case 567: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(213); - END_STATE(); - case 568: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(216); - END_STATE(); - case 569: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(232); - END_STATE(); - case 570: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(489); - END_STATE(); - case 571: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(508); - END_STATE(); - case 572: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(233); - END_STATE(); - case 573: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(332); - END_STATE(); - case 574: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(240); - END_STATE(); - case 575: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(240); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(603); - END_STATE(); - case 576: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(246); - END_STATE(); - case 577: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(336); - END_STATE(); - case 578: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(340); - END_STATE(); - case 579: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(341); - END_STATE(); - case 580: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(228); - END_STATE(); - case 581: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(461); - END_STATE(); - case 582: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(389); - END_STATE(); - case 583: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(367); - END_STATE(); - case 584: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(530); - END_STATE(); - case 585: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(487); - END_STATE(); - case 586: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(115); - END_STATE(); - case 587: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); - END_STATE(); - case 588: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(484); - END_STATE(); - case 589: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(238); - END_STATE(); - case 590: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(231); - END_STATE(); - case 591: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(491); - END_STATE(); - case 592: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(201); - END_STATE(); - case 593: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(495); - END_STATE(); - case 594: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(210); - END_STATE(); - case 595: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(211); - END_STATE(); - case 596: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(177); - END_STATE(); - case 597: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(573); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(641); - END_STATE(); - case 598: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(566); - END_STATE(); - case 599: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(501); - END_STATE(); - case 600: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(531); - END_STATE(); - case 601: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(267); - END_STATE(); - case 602: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(510); - END_STATE(); - case 603: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(122); - END_STATE(); case 604: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(329); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(890); END_STATE(); case 605: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(124); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(754); END_STATE(); case 606: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(415); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(793); END_STATE(); case 607: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(659); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(875); END_STATE(); case 608: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(603); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(893); END_STATE(); case 609: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(696); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(820); END_STATE(); case 610: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(761); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(877); END_STATE(); case 611: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(694); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(868); END_STATE(); case 612: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(689); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(871); END_STATE(); case 613: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(811); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(85); END_STATE(); case 614: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(660); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(715); END_STATE(); case 615: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(241); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(720); END_STATE(); case 616: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(130); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(788); END_STATE(); case 617: - if (eof) ADVANCE(618); - if (lookahead == '!') ADVANCE(66); - if (lookahead == '$') ADVANCE(803); - if (lookahead == '%') ADVANCE(834); - if (lookahead == '\'') ADVANCE(819); - if (lookahead == '(') ADVANCE(627); - if (lookahead == ')') ADVANCE(629); - if (lookahead == '*') ADVANCE(832); - if (lookahead == '+') ADVANCE(836); - if (lookahead == ',') ADVANCE(628); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '/') ADVANCE(833); - if (lookahead == ':') ADVANCE(65); - if (lookahead == ';') ADVANCE(619); - if (lookahead == '<') ADVANCE(837); - if (lookahead == '=') ADVANCE(640); - if (lookahead == '>') ADVANCE(838); - if (lookahead == '[') ADVANCE(815); - if (lookahead == '\\') ADVANCE(730); - if (lookahead == '|') ADVANCE(78); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(272); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(265); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(301); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(95); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(458); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(492); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(390); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(438); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(105); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(127); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(97); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(275); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(485); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(219); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(140); if (lookahead == 'T' || - lookahead == 't') ADVANCE(110); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(397); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(444); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(617) + lookahead == 't') ADVANCE(840); END_STATE(); case 618: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(726); END_STATE(); case 619: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(711); END_STATE(); case 620: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(816); END_STATE(); case 621: - ACCEPT_TOKEN(aux_sym_insert_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(350); END_STATE(); case 622: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(103); END_STATE(); case 623: - ACCEPT_TOKEN(aux_sym_insert_statement_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(378); END_STATE(); case 624: - ACCEPT_TOKEN(aux_sym_insert_items_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(657); END_STATE(); case 625: - ACCEPT_TOKEN(aux_sym_insert_items_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(343); END_STATE(); case 626: - ACCEPT_TOKEN(aux_sym_insert_items_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(352); END_STATE(); case 627: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(579); END_STATE(); case 628: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(386); END_STATE(); case 629: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(493); END_STATE(); case 630: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(400); END_STATE(); case 631: - ACCEPT_TOKEN(aux_sym_insert_conflict_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(146); END_STATE(); case 632: - ACCEPT_TOKEN(aux_sym_insert_conflict_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(301); END_STATE(); case 633: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(223); END_STATE(); case 634: - ACCEPT_TOKEN(aux_sym_insert_conflict_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(224); END_STATE(); case 635: - ACCEPT_TOKEN(aux_sym_insert_conflict_token4); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(228); END_STATE(); case 636: - ACCEPT_TOKEN(aux_sym_insert_conflict_token5); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(231); END_STATE(); case 637: - ACCEPT_TOKEN(aux_sym_insert_conflict_token6); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(239); END_STATE(); case 638: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(242); END_STATE(); case 639: - ACCEPT_TOKEN(aux_sym_conflict_target_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(265); END_STATE(); case 640: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(374); END_STATE(); case 641: - ACCEPT_TOKEN(aux_sym_update_set_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(552); END_STATE(); case 642: - ACCEPT_TOKEN(aux_sym_insert_returning_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(572); END_STATE(); case 643: - ACCEPT_TOKEN(aux_sym_insert_returning_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(268); END_STATE(); case 644: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(272); END_STATE(); case 645: - ACCEPT_TOKEN(aux_sym_create_table_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(272); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(676); END_STATE(); case 646: - ACCEPT_TOKEN(aux_sym_create_table_statement_token2); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(381); END_STATE(); case 647: - ACCEPT_TOKEN(aux_sym_create_table_statement_token3); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(281); END_STATE(); case 648: - ACCEPT_TOKEN(aux_sym_create_table_statement_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(694); END_STATE(); case 649: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(385); END_STATE(); case 650: - ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(388); END_STATE(); case 651: - ACCEPT_TOKEN(aux_sym_schema_role_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(390); END_STATE(); case 652: - ACCEPT_TOKEN(aux_sym_schema_role_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(261); END_STATE(); case 653: - ACCEPT_TOKEN(aux_sym_schema_role_token2); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(521); END_STATE(); case 654: - ACCEPT_TOKEN(aux_sym_schema_role_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(415); END_STATE(); case 655: - ACCEPT_TOKEN(aux_sym_schema_role_token3); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(441); END_STATE(); case 656: - ACCEPT_TOKEN(aux_sym_schema_role_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(598); END_STATE(); case 657: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(550); END_STATE(); case 658: - ACCEPT_TOKEN(aux_sym_create_index_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(137); END_STATE(); case 659: - ACCEPT_TOKEN(aux_sym_create_index_statement_token2); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(631); END_STATE(); case 660: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(549); END_STATE(); case 661: - ACCEPT_TOKEN(aux_sym_create_index_statement_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(266); END_STATE(); case 662: - ACCEPT_TOKEN(aux_sym_index_using_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(227); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_index_using_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(557); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym_index_col_dir_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(559); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_index_col_dir_token2); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(236); END_STATE(); case 666: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(237); END_STATE(); case 667: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(646); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(730); END_STATE(); case 668: - ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(278); END_STATE(); case 669: - ACCEPT_TOKEN(aux_sym_index_includes_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(203); END_STATE(); case 670: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(564); END_STATE(); case 671: - ACCEPT_TOKEN(aux_sym_delete_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(636); END_STATE(); case 672: - ACCEPT_TOKEN(aux_sym_delete_statement_token2); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(599); END_STATE(); case 673: - ACCEPT_TOKEN(aux_sym_delete_statement_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(307); END_STATE(); case 674: - ACCEPT_TOKEN(aux_sym_delete_statement_token3); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(574); END_STATE(); case 675: - ACCEPT_TOKEN(aux_sym_delete_statement_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(403); END_STATE(); case 676: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(145); END_STATE(); case 677: - ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(368); END_STATE(); case 678: - ACCEPT_TOKEN(aux_sym_alter_table_action_token1); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(147); END_STATE(); case 679: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(730); END_STATE(); case 680: - ACCEPT_TOKEN(aux_sym_alter_table_action_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(729); END_STATE(); case 681: - ACCEPT_TOKEN(aux_sym_alter_table_action_token3); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(467); END_STATE(); case 682: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(648); END_STATE(); case 683: - ACCEPT_TOKEN(aux_sym_alter_column_action_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(746); END_STATE(); case 684: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(676); END_STATE(); case 685: - ACCEPT_TOKEN(aux_sym_alter_column_action_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(262); END_STATE(); case 686: - ACCEPT_TOKEN(aux_sym_alter_column_action_token3); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(817); END_STATE(); case 687: - ACCEPT_TOKEN(aux_sym_alter_column_action_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(780); END_STATE(); case 688: - ACCEPT_TOKEN(aux_sym_constraint_when_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(864); END_STATE(); case 689: - ACCEPT_TOKEN(aux_sym_constraint_when_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(778); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_constraint_when_token3); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(913); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_constraint_when_token4); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(747); END_STATE(); case 692: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(773); END_STATE(); case 693: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(524); END_STATE(); case 694: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(525); END_STATE(); case 695: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(273); END_STATE(); case 696: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(153); END_STATE(); case 697: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(943); END_STATE(); case 698: - ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); - if (lookahead == '.') ADVANCE(1163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 699: - ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); - END_STATE(); - case 700: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - END_STATE(); - case 701: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(186); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(682); - END_STATE(); - case 702: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); - END_STATE(); - case 703: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token3); - END_STATE(); - case 704: - ACCEPT_TOKEN(aux_sym_fk_ref_action_token4); - END_STATE(); - case 705: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); - END_STATE(); - case 706: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); - END_STATE(); - case 707: - ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 708: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - END_STATE(); - case 709: - ACCEPT_TOKEN(aux_sym_grant_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 710: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); - END_STATE(); - case 711: - ACCEPT_TOKEN(aux_sym_grant_roles_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 712: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - END_STATE(); - case 713: - ACCEPT_TOKEN(aux_sym_grant_roles_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 714: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - END_STATE(); - case 715: - ACCEPT_TOKEN(aux_sym_grant_privileges_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 716: - ACCEPT_TOKEN(anon_sym_privileges); - END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_grant_targets_token1); - END_STATE(); - case 718: - ACCEPT_TOKEN(aux_sym_grant_targets_token2); - END_STATE(); - case 719: - ACCEPT_TOKEN(aux_sym_grant_targets_token3); - END_STATE(); - case 720: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); - END_STATE(); - case 721: - ACCEPT_TOKEN(aux_sym_grant_targets_token4); + if (eof) ADVANCE(700); + if (lookahead == '!') ADVANCE(81); + if (lookahead == '$') ADVANCE(905); + if (lookahead == '%') ADVANCE(957); + if (lookahead == '\'') ADVANCE(921); + if (lookahead == '(') ADVANCE(708); + if (lookahead == ')') ADVANCE(710); + if (lookahead == '*') ADVANCE(955); + if (lookahead == '+') ADVANCE(959); + if (lookahead == ',') ADVANCE(709); + if (lookahead == '-') ADVANCE(958); + if (lookahead == '.') ADVANCE(938); + if (lookahead == '/') ADVANCE(956); + if (lookahead == ':') ADVANCE(79); + if (lookahead == ';') ADVANCE(701); + if (lookahead == '<') ADVANCE(960); + if (lookahead == '=') ADVANCE(728); + if (lookahead == '>') ADVANCE(961); + if (lookahead == '\\') ADVANCE(814); + if (lookahead == '|') ADVANCE(95); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(192); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(295); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(360); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(185); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(556); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(236); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(440); - END_STATE(); - case 722: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - END_STATE(); - case 723: - ACCEPT_TOKEN(aux_sym_grant_targets_token5); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 724: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - END_STATE(); - case 725: - ACCEPT_TOKEN(aux_sym_grant_targets_token6); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym_grant_targets_token7); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym_grant_targets_token8); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym_grant_targets_token8); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 730: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym_psql_statement_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(731); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym_sequence_increment_token1); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym_sequence_increment_token2); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym_sequence_min_token1); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym_sequence_max_token1); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym_sequence_start_token1); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym_sequence_start_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym_sequence_cache_token1); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym_sequence_owned_token1); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym_sequence_owned_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym_trigger_when_token1); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_trigger_when_token2); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_trigger_when_token3); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_trigger_event_token1); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_trigger_event_token2); + lookahead == 'c') ADVANCE(97); if (lookahead == 'D' || lookahead == 'd') ADVANCE(245); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym_trigger_scope_token1); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym_trigger_scope_token2); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_trigger_scope_token3); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_trigger_exec_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_trigger_cond_token1); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym_return_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym_return_statement_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym_perform_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym_select_statement_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_with_query_item_token1); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_into_token1); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_into_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_select_having_token1); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_select_having_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_select_limit_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_select_limit_token2); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_select_limit_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_select_order_by_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_join_item_token1); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_join_item_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_join_item_token2); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_join_item_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_join_item_token3); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_join_item_token3); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_join_type_token1); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_join_type_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym_join_type_token2); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym_join_type_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym_join_type_token3); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym_join_type_token4); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym_join_type_token4); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym_join_type_token5); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym_join_type_token5); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym_create_function_statement_token1); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym_function_return_token1); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym_return_setof_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym_function_volatility_token1); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym_function_volatility_token2); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym_function_volatility_token3); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym_body_token1); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym_body_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym_body_token2); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym_body_token2); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 803: - ACCEPT_TOKEN(anon_sym_DOLLAR); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym_declarations_token1); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym_declarations_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 806: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym_where_filter_token1); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym_where_filter_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym_or_replace_token1); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym_temporary_token1); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(517); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(555); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(439); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(491); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(208); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(105); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(116); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(505); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym_temporary_token2); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym_if_not_exists_token1); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym_if_not_exists_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym_if_not_exists_token2); - END_STATE(); - case 815: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 816: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym_predefined_types_token1); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym_predefined_types_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 819: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 820: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(821); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym_string_token1); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym_string_token2); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(38); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(827); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '-') ADVANCE(824); - if (lookahead == '/') ADVANCE(823); + lookahead == 'o') ADVANCE(316); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(548); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(246); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(164); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(132); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(447); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(109); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(354); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -7557,3265 +7670,4703 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(825); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(822); + lookahead == 65279) SKIP(699) + END_STATE(); + case 700: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 701: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 702: + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + END_STATE(); + case 703: + ACCEPT_TOKEN(aux_sym_create_type_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 704: + ACCEPT_TOKEN(aux_sym_create_type_statement_token2); + END_STATE(); + case 705: + ACCEPT_TOKEN(aux_sym_create_type_statement_token3); + END_STATE(); + case 706: + ACCEPT_TOKEN(aux_sym_create_type_statement_token3); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 707: + ACCEPT_TOKEN(aux_sym_create_type_statement_token4); + END_STATE(); + case 708: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 711: + ACCEPT_TOKEN(aux_sym_insert_statement_token1); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym_insert_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym_insert_statement_token2); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym_insert_statement_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym_insert_items_token1); + END_STATE(); + case 716: + ACCEPT_TOKEN(aux_sym_insert_items_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 717: + ACCEPT_TOKEN(aux_sym_insert_items_token2); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + END_STATE(); + case 719: + ACCEPT_TOKEN(aux_sym_insert_conflict_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 720: + ACCEPT_TOKEN(aux_sym_insert_conflict_token2); + END_STATE(); + case 721: + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + END_STATE(); + case 722: + ACCEPT_TOKEN(aux_sym_insert_conflict_token3); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 723: + ACCEPT_TOKEN(aux_sym_insert_conflict_token4); + END_STATE(); + case 724: + ACCEPT_TOKEN(aux_sym_insert_conflict_token5); + END_STATE(); + case 725: + ACCEPT_TOKEN(aux_sym_insert_conflict_token6); + END_STATE(); + case 726: + ACCEPT_TOKEN(aux_sym_conflict_target_token1); + END_STATE(); + case 727: + ACCEPT_TOKEN(aux_sym_conflict_target_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 728: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 729: + ACCEPT_TOKEN(aux_sym_update_set_token1); + END_STATE(); + case 730: + ACCEPT_TOKEN(aux_sym_update_set_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(879); + END_STATE(); + case 731: + ACCEPT_TOKEN(aux_sym_insert_returning_token1); + END_STATE(); + case 732: + ACCEPT_TOKEN(aux_sym_insert_returning_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 733: + ACCEPT_TOKEN(aux_sym_create_table_statement_token1); + END_STATE(); + case 734: + ACCEPT_TOKEN(aux_sym_create_table_statement_token2); + END_STATE(); + case 735: + ACCEPT_TOKEN(aux_sym_create_table_statement_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 736: + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + END_STATE(); + case 737: + ACCEPT_TOKEN(aux_sym_create_schema_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 738: + ACCEPT_TOKEN(aux_sym_schema_role_token1); + END_STATE(); + case 739: + ACCEPT_TOKEN(aux_sym_schema_role_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 740: + ACCEPT_TOKEN(aux_sym_schema_role_token2); + END_STATE(); + case 741: + ACCEPT_TOKEN(aux_sym_schema_role_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 742: + ACCEPT_TOKEN(aux_sym_schema_role_token3); + END_STATE(); + case 743: + ACCEPT_TOKEN(aux_sym_schema_role_token3); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 744: + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + END_STATE(); + case 745: + ACCEPT_TOKEN(aux_sym_create_index_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 746: + ACCEPT_TOKEN(aux_sym_create_index_statement_token2); + END_STATE(); + case 747: + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + END_STATE(); + case 748: + ACCEPT_TOKEN(aux_sym_create_index_statement_token3); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 749: + ACCEPT_TOKEN(aux_sym_index_using_token1); + END_STATE(); + case 750: + ACCEPT_TOKEN(aux_sym_index_using_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 751: + ACCEPT_TOKEN(aux_sym_index_col_dir_token1); + END_STATE(); + case 752: + ACCEPT_TOKEN(aux_sym_index_col_dir_token2); + END_STATE(); + case 753: + ACCEPT_TOKEN(aux_sym_index_col_nulls_token1); + END_STATE(); + case 754: + ACCEPT_TOKEN(aux_sym_index_col_nulls_token2); + END_STATE(); + case 755: + ACCEPT_TOKEN(aux_sym_index_col_nulls_token3); + END_STATE(); + case 756: + ACCEPT_TOKEN(aux_sym_index_includes_token1); + END_STATE(); + case 757: + ACCEPT_TOKEN(aux_sym_delete_statement_token1); + END_STATE(); + case 758: + ACCEPT_TOKEN(aux_sym_delete_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 759: + ACCEPT_TOKEN(aux_sym_delete_statement_token2); + END_STATE(); + case 760: + ACCEPT_TOKEN(aux_sym_delete_statement_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 761: + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + END_STATE(); + case 762: + ACCEPT_TOKEN(aux_sym_alter_table_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 763: + ACCEPT_TOKEN(aux_sym_alter_table_action_token1); + END_STATE(); + case 764: + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + END_STATE(); + case 765: + ACCEPT_TOKEN(aux_sym_alter_table_action_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 766: + ACCEPT_TOKEN(aux_sym_alter_table_action_token3); + END_STATE(); + case 767: + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + END_STATE(); + case 768: + ACCEPT_TOKEN(aux_sym_alter_column_action_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 769: + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + END_STATE(); + case 770: + ACCEPT_TOKEN(aux_sym_alter_column_action_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 771: + ACCEPT_TOKEN(aux_sym_alter_column_action_token3); + END_STATE(); + case 772: + ACCEPT_TOKEN(aux_sym_constraint_when_token1); + END_STATE(); + case 773: + ACCEPT_TOKEN(aux_sym_constraint_when_token2); + END_STATE(); + case 774: + ACCEPT_TOKEN(aux_sym_constraint_when_token3); + END_STATE(); + case 775: + ACCEPT_TOKEN(aux_sym_constraint_when_token4); + END_STATE(); + case 776: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + END_STATE(); + case 777: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 778: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + END_STATE(); + case 779: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 780: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token3); + END_STATE(); + case 781: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + END_STATE(); + case 782: + ACCEPT_TOKEN(aux_sym_table_constraint_ty_token4); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 783: + ACCEPT_TOKEN(aux_sym_constraint_foreign_key_token1); + END_STATE(); + case 784: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + END_STATE(); + case 785: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(211); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(767); + END_STATE(); + case 786: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(767); + END_STATE(); + case 787: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token2); + END_STATE(); + case 788: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token3); + END_STATE(); + case 789: + ACCEPT_TOKEN(aux_sym_fk_ref_action_token4); + END_STATE(); + case 790: + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token1); + END_STATE(); + case 791: + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + END_STATE(); + case 792: + ACCEPT_TOKEN(aux_sym_alter_table_rename_column_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 793: + ACCEPT_TOKEN(aux_sym_grant_statement_token1); + END_STATE(); + case 794: + ACCEPT_TOKEN(aux_sym_grant_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 795: + ACCEPT_TOKEN(aux_sym_grant_roles_token1); + END_STATE(); + case 796: + ACCEPT_TOKEN(aux_sym_grant_roles_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 797: + ACCEPT_TOKEN(aux_sym_grant_roles_token2); + END_STATE(); + case 798: + ACCEPT_TOKEN(aux_sym_grant_roles_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 799: + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + END_STATE(); + case 800: + ACCEPT_TOKEN(aux_sym_grant_privileges_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 801: + ACCEPT_TOKEN(anon_sym_privileges); + END_STATE(); + case 802: + ACCEPT_TOKEN(aux_sym_grant_targets_token1); + END_STATE(); + case 803: + ACCEPT_TOKEN(aux_sym_grant_targets_token2); + END_STATE(); + case 804: + ACCEPT_TOKEN(aux_sym_grant_targets_token3); + END_STATE(); + case 805: + ACCEPT_TOKEN(aux_sym_grant_targets_token4); + END_STATE(); + case 806: + ACCEPT_TOKEN(aux_sym_grant_targets_token5); + END_STATE(); + case 807: + ACCEPT_TOKEN(aux_sym_grant_targets_token5); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 808: + ACCEPT_TOKEN(aux_sym_grant_targets_token6); + END_STATE(); + case 809: + ACCEPT_TOKEN(aux_sym_grant_targets_token6); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 810: + ACCEPT_TOKEN(aux_sym_grant_targets_token7); + END_STATE(); + case 811: + ACCEPT_TOKEN(aux_sym_grant_targets_token7); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 812: + ACCEPT_TOKEN(aux_sym_grant_targets_token8); + END_STATE(); + case 813: + ACCEPT_TOKEN(aux_sym_grant_targets_token8); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 814: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 815: + ACCEPT_TOKEN(aux_sym_psql_statement_token1); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(815); + END_STATE(); + case 816: + ACCEPT_TOKEN(aux_sym_sequence_increment_token1); + END_STATE(); + case 817: + ACCEPT_TOKEN(aux_sym_sequence_increment_token2); + END_STATE(); + case 818: + ACCEPT_TOKEN(aux_sym_sequence_min_token1); + END_STATE(); + case 819: + ACCEPT_TOKEN(aux_sym_sequence_max_token1); + END_STATE(); + case 820: + ACCEPT_TOKEN(aux_sym_sequence_start_token1); + END_STATE(); + case 821: + ACCEPT_TOKEN(aux_sym_sequence_start_token2); + END_STATE(); + case 822: + ACCEPT_TOKEN(aux_sym_sequence_start_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 823: + ACCEPT_TOKEN(aux_sym_sequence_cache_token1); + END_STATE(); + case 824: + ACCEPT_TOKEN(aux_sym_sequence_cycle_token1); + END_STATE(); + case 825: + ACCEPT_TOKEN(aux_sym_sequence_owned_token1); END_STATE(); case 826: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); END_STATE(); case 827: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(827); + ACCEPT_TOKEN(aux_sym_sequence_owned_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_time_expression_token1); + ACCEPT_TOKEN(aux_sym_create_trigger_statement_token1); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_time_expression_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_trigger_when_token1); END_STATE(); case 830: - ACCEPT_TOKEN(aux_sym_time_expression_token2); + ACCEPT_TOKEN(aux_sym_trigger_when_token2); END_STATE(); case 831: - ACCEPT_TOKEN(aux_sym_time_expression_token3); + ACCEPT_TOKEN(aux_sym_trigger_when_token3); END_STATE(); case 832: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(aux_sym_trigger_event_token1); END_STATE(); case 833: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(38); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); END_STATE(); case 834: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1035); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 835: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(827); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 836: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(aux_sym_trigger_event_token2); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(279); END_STATE(); case 837: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(839); - if (lookahead == '>') ADVANCE(841); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); END_STATE(); case 838: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(840); + ACCEPT_TOKEN(aux_sym_trigger_scope_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 839: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym_trigger_scope_token2); END_STATE(); case 840: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym_trigger_scope_token3); END_STATE(); case 841: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); END_STATE(); case 842: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym_trigger_exec_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 843: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(aux_sym_trigger_cond_token1); END_STATE(); case 844: - ACCEPT_TOKEN(sym_cast); + ACCEPT_TOKEN(aux_sym_for_statement_token1); END_STATE(); case 845: - ACCEPT_TOKEN(aux_sym_and_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 846: - ACCEPT_TOKEN(aux_sym_and_token1); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 847: - ACCEPT_TOKEN(aux_sym_true_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token2); END_STATE(); case 848: - ACCEPT_TOKEN(aux_sym_true_token1); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(aux_sym_for_statement_token2); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 849: - ACCEPT_TOKEN(aux_sym_false_token1); + ACCEPT_TOKEN(aux_sym_for_statement_token3); END_STATE(); case 850: - ACCEPT_TOKEN(aux_sym_false_token1); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(aux_sym_for_statement_token3); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 851: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); END_STATE(); case 852: - ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(852); + ACCEPT_TOKEN(aux_sym_raise_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 853: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == '_') ADVANCE(1154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_if_statement_token1); END_STATE(); case 854: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == '_') ADVANCE(1155); + ACCEPT_TOKEN(aux_sym_if_statement_token1); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 855: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(979); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1041); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); case 856: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(979); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_if_statement_token3); END_STATE(); case 857: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1157); + ACCEPT_TOKEN(aux_sym_if_statement_token3); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 858: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(870); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_if_statement_token4); END_STATE(); case 859: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(650); + ACCEPT_TOKEN(aux_sym_if_statement_token4); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 860: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1149); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1070); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 861: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1123); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_if_statement_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(311); END_STATE(); case 862: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(975); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_return_statement_token1); END_STATE(); case 863: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(983); + ACCEPT_TOKEN(aux_sym_return_statement_token1); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 864: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1072); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_return_statement_token2); END_STATE(); case 865: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1023); + ACCEPT_TOKEN(aux_sym_return_statement_token2); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 866: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1133); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); END_STATE(); case 867: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1088); + ACCEPT_TOKEN(aux_sym_perform_statement_token1); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 868: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(aux_sym_select_statement_token1); + END_STATE(); + case 869: + ACCEPT_TOKEN(aux_sym_select_statement_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 870: + ACCEPT_TOKEN(aux_sym_with_query_item_token1); + END_STATE(); + case 871: + ACCEPT_TOKEN(aux_sym_into_token1); + END_STATE(); + case 872: + ACCEPT_TOKEN(aux_sym_into_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 873: + ACCEPT_TOKEN(aux_sym_select_having_token1); + END_STATE(); + case 874: + ACCEPT_TOKEN(aux_sym_select_having_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 875: + ACCEPT_TOKEN(aux_sym_select_limit_token1); + END_STATE(); + case 876: + ACCEPT_TOKEN(aux_sym_select_limit_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 877: + ACCEPT_TOKEN(aux_sym_select_offset_token1); + END_STATE(); + case 878: + ACCEPT_TOKEN(aux_sym_select_offset_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 879: + ACCEPT_TOKEN(aux_sym_select_offset_token2); + END_STATE(); + case 880: + ACCEPT_TOKEN(aux_sym_select_order_by_token1); + END_STATE(); + case 881: + ACCEPT_TOKEN(aux_sym_select_order_by_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 882: + ACCEPT_TOKEN(aux_sym_join_item_token1); + END_STATE(); + case 883: + ACCEPT_TOKEN(aux_sym_join_item_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 884: + ACCEPT_TOKEN(aux_sym_join_item_token2); + END_STATE(); + case 885: + ACCEPT_TOKEN(aux_sym_join_item_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 886: + ACCEPT_TOKEN(aux_sym_join_item_token3); + END_STATE(); + case 887: + ACCEPT_TOKEN(aux_sym_join_item_token3); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 888: + ACCEPT_TOKEN(aux_sym_join_type_token1); + END_STATE(); + case 889: + ACCEPT_TOKEN(aux_sym_join_type_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 890: + ACCEPT_TOKEN(aux_sym_join_type_token2); + END_STATE(); + case 891: + ACCEPT_TOKEN(aux_sym_join_type_token2); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 892: + ACCEPT_TOKEN(aux_sym_join_type_token3); + END_STATE(); + case 893: + ACCEPT_TOKEN(aux_sym_join_type_token4); + END_STATE(); + case 894: + ACCEPT_TOKEN(aux_sym_join_type_token4); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 895: + ACCEPT_TOKEN(aux_sym_join_type_token5); + END_STATE(); + case 896: + ACCEPT_TOKEN(aux_sym_join_type_token5); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 897: + ACCEPT_TOKEN(aux_sym_create_function_statement_token1); + END_STATE(); + case 898: + ACCEPT_TOKEN(aux_sym_function_return_token1); + END_STATE(); + case 899: + ACCEPT_TOKEN(aux_sym_return_setof_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 900: + ACCEPT_TOKEN(aux_sym_function_volatility_token1); + END_STATE(); + case 901: + ACCEPT_TOKEN(aux_sym_function_volatility_token2); + END_STATE(); + case 902: + ACCEPT_TOKEN(aux_sym_function_volatility_token3); + END_STATE(); + case 903: + ACCEPT_TOKEN(aux_sym_body_token1); + END_STATE(); + case 904: + ACCEPT_TOKEN(aux_sym_body_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 905: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 906: + ACCEPT_TOKEN(aux_sym_declarations_token1); + END_STATE(); + case 907: + ACCEPT_TOKEN(aux_sym_declarations_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 908: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 909: + ACCEPT_TOKEN(aux_sym_where_filter_token1); + END_STATE(); + case 910: + ACCEPT_TOKEN(aux_sym_where_filter_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 911: + ACCEPT_TOKEN(aux_sym_or_replace_token1); + END_STATE(); + case 912: + ACCEPT_TOKEN(aux_sym_temporary_token1); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(567); + END_STATE(); + case 913: + ACCEPT_TOKEN(aux_sym_temporary_token2); + END_STATE(); + case 914: + ACCEPT_TOKEN(aux_sym_if_not_exists_token1); + END_STATE(); + case 915: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 916: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 917: + ACCEPT_TOKEN(aux_sym__type_token1); + END_STATE(); + case 918: + ACCEPT_TOKEN(aux_sym__type_token2); + END_STATE(); + case 919: + ACCEPT_TOKEN(aux_sym_predefined_types_token1); + END_STATE(); + case 920: + ACCEPT_TOKEN(aux_sym_predefined_types_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 921: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 922: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(923); + END_STATE(); + case 923: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 924: + ACCEPT_TOKEN(aux_sym_string_token2); + END_STATE(); + case 925: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '*') ADVANCE(49); + END_STATE(); + case 926: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '-') ADVANCE(936); + END_STATE(); + case 927: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '-') ADVANCE(926); + if (lookahead == '/') ADVANCE(925); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(927); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(924); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(944); + if (lookahead == '$') ADVANCE(935); + if (lookahead == '%') ADVANCE(929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(932); + if (lookahead != 0) ADVANCE(931); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(944); + if (lookahead == '$') ADVANCE(935); + if (lookahead == '%') ADVANCE(929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(930); + if (lookahead != 0) ADVANCE(931); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(944); + if (lookahead == '$') ADVANCE(935); + if (lookahead == '%') ADVANCE(929); + if (lookahead != 0) ADVANCE(931); + END_STATE(); + case 932: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(944); + if (lookahead == '$') ADVANCE(934); + if (lookahead == '%') ADVANCE(929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(932); + if (lookahead != 0) ADVANCE(931); + END_STATE(); + case 933: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 934: + ACCEPT_TOKEN(sym_comment); + if (lookahead == 's') ADVANCE(931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(930); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(936); + END_STATE(); + case 935: + ACCEPT_TOKEN(sym_comment); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(930); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(936); + END_STATE(); + case 936: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(936); + END_STATE(); + case 937: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 938: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(846); + END_STATE(); + case 939: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead == '*') ADVANCE(949); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 940: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead == '-') ADVANCE(941); + if (lookahead == '/') ADVANCE(939); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(940); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 941: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead == '-') ADVANCE(931); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 942: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 943: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(943); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 944: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(697); + if (lookahead == '%') ADVANCE(942); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 945: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(93); + if (lookahead == '%') ADVANCE(942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (lookahead != 0) ADVANCE(944); + END_STATE(); + case 946: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(48); + if (lookahead == '%') ADVANCE(947); + if (lookahead == '*') ADVANCE(946); + if (lookahead == '/') ADVANCE(933); + if (lookahead != 0) ADVANCE(949); + END_STATE(); + case 947: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(48); + if (lookahead == '%') ADVANCE(947); + if (lookahead == '*') ADVANCE(946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(950); + if (lookahead != 0) ADVANCE(949); + END_STATE(); + case 948: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(48); + if (lookahead == '%') ADVANCE(947); + if (lookahead == '*') ADVANCE(946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(948); + if (lookahead != 0) ADVANCE(949); + END_STATE(); + case 949: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(48); + if (lookahead == '%') ADVANCE(947); + if (lookahead == '*') ADVANCE(946); + if (lookahead != 0) ADVANCE(949); + END_STATE(); + case 950: + ACCEPT_TOKEN(aux_sym_dollar_quote_string_token1); + if (lookahead == '$') ADVANCE(47); + if (lookahead == '%') ADVANCE(947); + if (lookahead == '*') ADVANCE(946); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(950); + if (lookahead != 0) ADVANCE(949); + END_STATE(); + case 951: + ACCEPT_TOKEN(aux_sym_time_expression_token1); + END_STATE(); + case 952: + ACCEPT_TOKEN(aux_sym_time_expression_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 953: + ACCEPT_TOKEN(aux_sym_time_expression_token2); + END_STATE(); + case 954: + ACCEPT_TOKEN(aux_sym_time_expression_token3); + END_STATE(); + case 955: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 956: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(49); + END_STATE(); + case 957: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 958: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(936); + END_STATE(); + case 959: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 960: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(962); + if (lookahead == '>') ADVANCE(964); + END_STATE(); + case 961: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(963); + END_STATE(); + case 962: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 963: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 964: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 965: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 966: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_cast); + END_STATE(); + case 968: + ACCEPT_TOKEN(aux_sym_and_token1); + END_STATE(); + case 969: + ACCEPT_TOKEN(aux_sym_and_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 970: + ACCEPT_TOKEN(aux_sym_true_token1); + END_STATE(); + case 971: + ACCEPT_TOKEN(aux_sym_true_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 972: + ACCEPT_TOKEN(aux_sym_false_token1); + END_STATE(); + case 973: + ACCEPT_TOKEN(aux_sym_false_token1); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 974: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(974); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(975); + END_STATE(); + case 976: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == '_') ADVANCE(1296); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 977: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == '_') ADVANCE(1297); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1131); + lookahead == 'a') ADVANCE(1113); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1175); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 869: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(993); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 870: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(995); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 871: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(978); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 872: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(818); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 873: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 874: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1151); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 875: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(992); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 876: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1111); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 877: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 878: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(911); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 879: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1117); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 880: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(897); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 881: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(955); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1059); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 882: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1156); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 883: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(846); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 884: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(802); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 885: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1152); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 886: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(908); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 887: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 888: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 889: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(808); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 890: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(874); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 891: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(645); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 892: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(671); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 893: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(757); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 894: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(658); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 895: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(648); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 896: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 897: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 898: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 899: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 900: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(743); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 901: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(876); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 902: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1075); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 903: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(861); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 904: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(947); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 905: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1120); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 906: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(942); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 907: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 908: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1062); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 909: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(943); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(999); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 910: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(943); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 911: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(885); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 912: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(996); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(634); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 913: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1108); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 914: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(991); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 915: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(949); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 916: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 917: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1071); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 918: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1063); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 919: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(965); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 920: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1082); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 921: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1065); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 922: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1066); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 923: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1033); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 924: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1083); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 925: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1067); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 926: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1068); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 927: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1125); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 928: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1001); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 929: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1098); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 930: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 931: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1026); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 932: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 933: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1130); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 934: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(940); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 935: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(940); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(750); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 936: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(940); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 937: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(940); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(750); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 938: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(813); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 939: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(795); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 940: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 941: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1047); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 942: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(860); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 943: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1113); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 944: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(771); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 945: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(643); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 946: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 947: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(952); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 948: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1011); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 949: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(973); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 950: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(738); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 951: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(902); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 952: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1114); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 953: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(907); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(988); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 954: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(907); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1021); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 955: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(928); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 956: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1052); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 957: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(999); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 958: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1058); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 959: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1161); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 960: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 961: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(947); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 962: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1017); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 963: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 964: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1000); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 965: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(948); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 966: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(872); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 967: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 968: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 969: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1009); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 970: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1049); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 971: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1020); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 972: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 973: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1013); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 974: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1050); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 975: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 976: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(879); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 977: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1053); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 978: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(693); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 979: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1096); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1113); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 980: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(685); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 981: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(715); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(994); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 982: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(792); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 983: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(779); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1109); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 984: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(980); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1291); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 985: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1160); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1264); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 986: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1134); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1117); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 987: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(981); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1108); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 988: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1138); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1099); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1210); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 989: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1138); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1158); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 990: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(982); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1275); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 991: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(901); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1226); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 992: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(867); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1273); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 993: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(968); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 994: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1112); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 995: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(895); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 996: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(930); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 997: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(673); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(796); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 998: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(764); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 999: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(963); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1000: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(864); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1001: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(859); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1002: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1010); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1036); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1003: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(924); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1004: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1119); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1024); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1005: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1087); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1006: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(944); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1007: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(760); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(850); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1008: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1034); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(969); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1009: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(783); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1010: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(680); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1035); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1011: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(698); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(971); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1012: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(725); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(973); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1013: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(800); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(910); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1014: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(652); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(998); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1015: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(883); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(675); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(829); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(860); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1069); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1016: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(883); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(675); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(852); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1017: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(945); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1018: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(884); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(890); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(758); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1019: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(962); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(842); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1020: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(946); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(845); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1021: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1099); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(745); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1022: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(958); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1023: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(813); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1024: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1035); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(807); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1025: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1115); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(811); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1026: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1116); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1027: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(827); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1028: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(896); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1029: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(900); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1000); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1030: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1103); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1031: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(882); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(985); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1032: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(877); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1262); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1079); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1033: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(880); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1034: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(922); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1037); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(995); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1035: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(922); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1199); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1036: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(854); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1009); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1037: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1131); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(623); + lookahead == 'o') ADVANCE(722); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1038: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(988); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1039: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(707); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1073); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1040: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1106); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(984); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1041: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1074); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1134); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(997); + lookahead == 'o') ADVANCE(1177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1042: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1135); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1074); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1043: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1097); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1074); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1044: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(878); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1081); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1045: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(969); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(999); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1046: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(939); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1047: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1074); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1048: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(989); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1099); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1049: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1012); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1050: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1036); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1051: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1031); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1052: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1084); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1204); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1053: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1014); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1054: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1144); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1055: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1029); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1205); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1056: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1086); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1206); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1057: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(713); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1058: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1143); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1059: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1146); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1060: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1041); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1061: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1136); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1062: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(777); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1063: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1072); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(719); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(677); + lookahead == 'r') ADVANCE(1010); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1064: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1072); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(719); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(751); + lookahead == 'r') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1065: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1072); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1158); + lookahead == 'r') ADVANCE(1010); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1066: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1072); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(785); + lookahead == 'r') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1067: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(654); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(854); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1068: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(656); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(854); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1069: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(865); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(857); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1070: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1042); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(859); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1071: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(941); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(899); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1072: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1159); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1242); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1073: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1019); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(984); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1074: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(998); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); case 1075: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1076: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(874); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1077: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(732); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1078: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(750); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1079: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1084); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1080: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1081: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1082: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(822); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1083: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1030); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1084: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1085: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1034); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1086: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1034); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1087: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1058); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1088: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1089: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1134); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1090: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1091: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1092: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1093: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1094: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1079); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1095: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1151); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1096: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1097: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1135); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1098: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(996); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1099: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1080); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1100: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1144); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1101: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1102: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(997); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1103: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1155); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1104: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1185); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1105: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1163); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1106: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1107: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1108: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1109: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1239); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1110: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1003); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1111: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1187); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1112: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(777); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1113: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1236); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1114: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(770); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1115: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(800); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1116: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(896); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1117: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(883); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1118: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1119: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1233); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1007); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1014); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1120: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1304); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1121: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1276); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1122: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1123: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1280); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1241); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1124: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1280); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1125: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1116); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1126: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1127: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(991); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1128: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1129: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1102); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1130: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1131: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1060); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1132: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(760); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1133: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1134: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1096); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1135: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(988); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1136: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(982); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1137: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1138: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1054); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1139: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1261); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1140: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1141: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1076); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1142: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1143: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1168); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1144: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(887); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1145: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(765); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1146: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(782); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1147: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(809); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1148: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(904); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1149: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(739); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1150: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1007); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1014); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1151: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1077); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1152: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1008); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(706); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(952); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1153: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1008); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1154: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1095); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1155: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1078); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1156: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1091); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1157: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1241); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1158: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1159: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1160: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1161: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1258); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1162: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1267); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1163: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1023); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1164: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1027); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1165: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1006); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1166: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1001); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1167: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1004); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1168: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1052); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1169: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1052); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1170: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(977); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1171: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(714); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1172: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1173: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(792); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1174: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1248); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1118); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1175: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1132); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1176: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1177: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1194); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1178: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1179: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1180: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1100); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1181: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1182: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1071); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1183: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1184: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1124); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1185: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1186: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1187: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1188: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1189: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1190: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1191: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1192: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1224); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1193: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(798); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1194: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(848); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1195: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1286); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1196: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1289); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1197: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1198: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1199: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1200: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(838); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1201: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(762); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1202: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(835); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1203: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1204: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || lookahead == 'r') ADVANCE(889); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1076: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1205: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(863); + lookahead == 'r') ADVANCE(741); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1077: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1206: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1007); + lookahead == 'r') ADVANCE(743); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1078: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1207: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1043); + lookahead == 'r') ADVANCE(989); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1079: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1208: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(903); + lookahead == 'r') ADVANCE(1176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1080: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1209: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(862); + lookahead == 'r') ADVANCE(1075); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1081: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1210: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1044); + lookahead == 'r') ADVANCE(1303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1082: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1211: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1110); + lookahead == 'r') ADVANCE(1154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1083: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1212: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(966); + lookahead == 'r') ADVANCE(1133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1084: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1213: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(959); + lookahead == 'r') ADVANCE(1142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1085: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1214: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(976); + lookahead == 'r') ADVANCE(1013); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1086: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1215: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(919); + lookahead == 'r') ADVANCE(986); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1087: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1216: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(898); + lookahead == 'r') ADVANCE(1031); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1088: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1217: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(899); + lookahead == 'r') ADVANCE(1178); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1089: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1218: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(931); + lookahead == 'r') ADVANCE(987); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1090: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1219: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(964); + lookahead == 'r') ADVANCE(1179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1091: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1220: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1089); + lookahead == 'r') ADVANCE(1252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1092: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1221: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(932); + lookahead == 'r') ADVANCE(1098); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1093: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1222: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'R' || lookahead == 'r') ADVANCE(1092); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1094: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1223: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1224: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1048); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1225: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1025); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1226: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1026); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1227: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1228: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1097); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1229: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1240); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1230: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1227); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1231: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1062); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1232: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1231); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1233: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(675); + lookahead == 's') ADVANCE(1015); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1095: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1234: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(781); + lookahead == 's') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1096: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1235: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(888); + lookahead == 's') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1097: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1236: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1095); + lookahead == 's') ADVANCE(1012); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1098: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1237: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1102); + lookahead == 's') ADVANCE(1235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1099: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1238: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1128); + lookahead == 's') ADVANCE(1244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1100: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1239: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(913); + lookahead == 's') ADVANCE(1016); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1101: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1240: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(971); + lookahead == 's') ADVANCE(1020); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1102: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1241: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(974); + lookahead == 's') ADVANCE(1270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1103: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1242: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(920); + lookahead == 's') ADVANCE(1038); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1104: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1243: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(925); + lookahead == 's') ADVANCE(1103); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1105: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1244: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'S' || - lookahead == 's') ADVANCE(926); + lookahead == 's') ADVANCE(1107); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1106: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1245: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1246: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1055); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1247: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1056); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1248: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(683); + lookahead == 't') ADVANCE(768); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1107: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1249: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(773); + lookahead == 't') ADVANCE(876); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1108: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1250: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(775); + lookahead == 't') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1109: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1251: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(709); + lookahead == 't') ADVANCE(794); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1110: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1252: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(621); + lookahead == 't') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1111: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1253: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(766); + lookahead == 't') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1112: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1254: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(625); + lookahead == 't') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1113: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(787); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1114: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(790); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1115: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(639); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1116: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(853); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1117: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(769); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1118: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(950); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1119: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1037); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1120: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1121: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(956); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1122: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(970); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1123: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1255: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || lookahead == 't') ADVANCE(891); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1124: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1256: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(892); + lookahead == 't') ADVANCE(894); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1125: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1257: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1046); + lookahead == 't') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1126: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1258: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(893); + lookahead == 't') ADVANCE(976); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1127: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1259: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(985); + lookahead == 't') ADVANCE(872); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1128: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1260: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1080); + lookahead == 't') ADVANCE(1082); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1129: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1261: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1085); + lookahead == 't') ADVANCE(1171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1130: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1262: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1140); + lookahead == 't') ADVANCE(1279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1131: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1263: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1141); + lookahead == 't') ADVANCE(1088); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1132: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1264: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(972); + lookahead == 't') ADVANCE(1017); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1133: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1265: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(977); + lookahead == 't') ADVANCE(1104); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1134: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1266: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'T' || - lookahead == 't') ADVANCE(918); + lookahead == 't') ADVANCE(1018); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1135: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1267: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1268: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1182); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1269: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1019); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1270: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1271: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1272: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1273: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1274: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1275: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1276: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1047); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1277: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1057); + lookahead == 'u') ADVANCE(1193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1136: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1278: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(887); + lookahead == 'u') ADVANCE(1011); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1137: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1279: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1073); + lookahead == 'u') ADVANCE(1211); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1138: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1280: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1002); + lookahead == 'u') ADVANCE(1137); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1139: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1281: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1003); + lookahead == 'u') ADVANCE(1138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1140: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1282: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1077); + lookahead == 'u') ADVANCE(1213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1141: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1283: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1076); + lookahead == 'u') ADVANCE(1166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1142: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1284: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1032); + lookahead == 'u') ADVANCE(1215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1143: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1285: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(894); + lookahead == 'u') ADVANCE(1274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1144: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1286: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1132); + lookahead == 'u') ADVANCE(1021); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1145: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1287: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1091); + lookahead == 'u') ADVANCE(1263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1146: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1288: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(923); + lookahead == 'u') ADVANCE(1230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1147: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1289: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1121); + lookahead == 'u') ADVANCE(1053); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1148: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1290: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(869); + lookahead == 'u') ADVANCE(993); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1149: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1291: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(994); + lookahead == 'u') ADVANCE(1128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1292: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(990); + lookahead == 'u') ADVANCE(1125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1151: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1293: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1126); + lookahead == 'u') ADVANCE(1269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1294: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1087); + lookahead == 'u') ADVANCE(1225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1153: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1295: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(921); + lookahead == 'u') ADVANCE(1051); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1296: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1104); + lookahead == 'u') ADVANCE(1246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1297: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1105); + lookahead == 'u') ADVANCE(1247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1298: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1093); + lookahead == 'u') ADVANCE(1232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1299: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(960); + lookahead == 'v') ADVANCE(1093); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1300: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1050); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1301: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1014); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); + END_STATE(); + case 1302: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(762); + lookahead == 'y') ADVANCE(865); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1159: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1303: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(695); + lookahead == 'y') ADVANCE(779); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1160: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1304: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(661); + lookahead == 'y') ADVANCE(748); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); - case 1161: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1305: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(866); + lookahead == 'z') ADVANCE(990); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Y') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1162); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1306); END_STATE(); - case 1162: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(1163); + case 1306: + ACCEPT_TOKEN(sym__identifier); + if (lookahead == '.') ADVANCE(698); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1162); - END_STATE(); - case 1163: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1163); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1306); END_STATE(); default: return false; @@ -10824,1083 +12375,1083 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 617}, - [2] = {.lex_state = 617}, - [3] = {.lex_state = 617}, - [4] = {.lex_state = 617}, - [5] = {.lex_state = 617}, - [6] = {.lex_state = 617}, - [7] = {.lex_state = 617}, - [8] = {.lex_state = 617}, - [9] = {.lex_state = 617}, - [10] = {.lex_state = 617}, - [11] = {.lex_state = 617}, - [12] = {.lex_state = 617}, - [13] = {.lex_state = 617}, - [14] = {.lex_state = 13}, - [15] = {.lex_state = 617}, - [16] = {.lex_state = 617}, - [17] = {.lex_state = 617}, - [18] = {.lex_state = 617}, - [19] = {.lex_state = 13}, - [20] = {.lex_state = 617}, - [21] = {.lex_state = 617}, - [22] = {.lex_state = 617}, - [23] = {.lex_state = 617}, - [24] = {.lex_state = 14}, - [25] = {.lex_state = 14}, - [26] = {.lex_state = 2}, - [27] = {.lex_state = 2}, - [28] = {.lex_state = 2}, - [29] = {.lex_state = 2}, - [30] = {.lex_state = 2}, - [31] = {.lex_state = 2}, - [32] = {.lex_state = 2}, - [33] = {.lex_state = 2}, - [34] = {.lex_state = 2}, - [35] = {.lex_state = 2}, - [36] = {.lex_state = 2}, - [37] = {.lex_state = 7}, - [38] = {.lex_state = 7}, - [39] = {.lex_state = 7}, - [40] = {.lex_state = 2}, - [41] = {.lex_state = 7}, - [42] = {.lex_state = 2}, - [43] = {.lex_state = 7}, - [44] = {.lex_state = 7}, - [45] = {.lex_state = 7}, - [46] = {.lex_state = 2}, - [47] = {.lex_state = 7}, - [48] = {.lex_state = 2}, - [49] = {.lex_state = 40}, - [50] = {.lex_state = 2}, - [51] = {.lex_state = 7}, - [52] = {.lex_state = 40}, - [53] = {.lex_state = 2}, - [54] = {.lex_state = 7}, - [55] = {.lex_state = 2}, - [56] = {.lex_state = 2}, - [57] = {.lex_state = 2}, - [58] = {.lex_state = 40}, - [59] = {.lex_state = 2}, - [60] = {.lex_state = 8}, - [61] = {.lex_state = 8}, - [62] = {.lex_state = 8}, - [63] = {.lex_state = 8}, - [64] = {.lex_state = 8}, - [65] = {.lex_state = 8}, - [66] = {.lex_state = 8}, - [67] = {.lex_state = 8}, - [68] = {.lex_state = 8}, - [69] = {.lex_state = 8}, + [1] = {.lex_state = 699}, + [2] = {.lex_state = 699}, + [3] = {.lex_state = 2}, + [4] = {.lex_state = 2}, + [5] = {.lex_state = 2}, + [6] = {.lex_state = 2}, + [7] = {.lex_state = 2}, + [8] = {.lex_state = 2}, + [9] = {.lex_state = 2}, + [10] = {.lex_state = 2}, + [11] = {.lex_state = 2}, + [12] = {.lex_state = 2}, + [13] = {.lex_state = 2}, + [14] = {.lex_state = 2}, + [15] = {.lex_state = 2}, + [16] = {.lex_state = 2}, + [17] = {.lex_state = 2}, + [18] = {.lex_state = 2}, + [19] = {.lex_state = 2}, + [20] = {.lex_state = 2}, + [21] = {.lex_state = 2}, + [22] = {.lex_state = 2}, + [23] = {.lex_state = 2}, + [24] = {.lex_state = 15}, + [25] = {.lex_state = 15}, + [26] = {.lex_state = 53}, + [27] = {.lex_state = 16}, + [28] = {.lex_state = 16}, + [29] = {.lex_state = 53}, + [30] = {.lex_state = 53}, + [31] = {.lex_state = 23}, + [32] = {.lex_state = 23}, + [33] = {.lex_state = 54}, + [34] = {.lex_state = 54}, + [35] = {.lex_state = 54}, + [36] = {.lex_state = 54}, + [37] = {.lex_state = 54}, + [38] = {.lex_state = 54}, + [39] = {.lex_state = 54}, + [40] = {.lex_state = 54}, + [41] = {.lex_state = 54}, + [42] = {.lex_state = 54}, + [43] = {.lex_state = 54}, + [44] = {.lex_state = 54}, + [45] = {.lex_state = 54}, + [46] = {.lex_state = 54}, + [47] = {.lex_state = 54}, + [48] = {.lex_state = 54}, + [49] = {.lex_state = 54}, + [50] = {.lex_state = 54}, + [51] = {.lex_state = 54}, + [52] = {.lex_state = 55}, + [53] = {.lex_state = 55}, + [54] = {.lex_state = 55}, + [55] = {.lex_state = 55}, + [56] = {.lex_state = 4}, + [57] = {.lex_state = 4}, + [58] = {.lex_state = 4}, + [59] = {.lex_state = 4}, + [60] = {.lex_state = 4}, + [61] = {.lex_state = 4}, + [62] = {.lex_state = 4}, + [63] = {.lex_state = 4}, + [64] = {.lex_state = 4}, + [65] = {.lex_state = 4}, + [66] = {.lex_state = 4}, + [67] = {.lex_state = 4}, + [68] = {.lex_state = 4}, + [69] = {.lex_state = 10}, [70] = {.lex_state = 3}, - [71] = {.lex_state = 617}, - [72] = {.lex_state = 2}, - [73] = {.lex_state = 2}, - [74] = {.lex_state = 617}, - [75] = {.lex_state = 2}, - [76] = {.lex_state = 7}, - [77] = {.lex_state = 7}, - [78] = {.lex_state = 7}, - [79] = {.lex_state = 7}, - [80] = {.lex_state = 7}, - [81] = {.lex_state = 4}, - [82] = {.lex_state = 2}, - [83] = {.lex_state = 617}, - [84] = {.lex_state = 7}, - [85] = {.lex_state = 7}, - [86] = {.lex_state = 7}, - [87] = {.lex_state = 7}, - [88] = {.lex_state = 7}, - [89] = {.lex_state = 2}, - [90] = {.lex_state = 2}, - [91] = {.lex_state = 8}, - [92] = {.lex_state = 8}, - [93] = {.lex_state = 8}, - [94] = {.lex_state = 8}, - [95] = {.lex_state = 8}, - [96] = {.lex_state = 8}, - [97] = {.lex_state = 8}, - [98] = {.lex_state = 8}, - [99] = {.lex_state = 8}, - [100] = {.lex_state = 8}, - [101] = {.lex_state = 17}, - [102] = {.lex_state = 17}, - [103] = {.lex_state = 17}, - [104] = {.lex_state = 17}, - [105] = {.lex_state = 2}, - [106] = {.lex_state = 17}, - [107] = {.lex_state = 17}, - [108] = {.lex_state = 17}, - [109] = {.lex_state = 17}, - [110] = {.lex_state = 17}, - [111] = {.lex_state = 17}, - [112] = {.lex_state = 17}, - [113] = {.lex_state = 17}, - [114] = {.lex_state = 17}, - [115] = {.lex_state = 17}, - [116] = {.lex_state = 17}, - [117] = {.lex_state = 9}, - [118] = {.lex_state = 9}, - [119] = {.lex_state = 617}, - [120] = {.lex_state = 9}, - [121] = {.lex_state = 9}, - [122] = {.lex_state = 9}, - [123] = {.lex_state = 9}, - [124] = {.lex_state = 9}, - [125] = {.lex_state = 16}, - [126] = {.lex_state = 617}, - [127] = {.lex_state = 9}, - [128] = {.lex_state = 617}, - [129] = {.lex_state = 9}, - [130] = {.lex_state = 9}, - [131] = {.lex_state = 617}, - [132] = {.lex_state = 15}, - [133] = {.lex_state = 16}, - [134] = {.lex_state = 16}, - [135] = {.lex_state = 16}, - [136] = {.lex_state = 16}, - [137] = {.lex_state = 16}, - [138] = {.lex_state = 15}, - [139] = {.lex_state = 10}, - [140] = {.lex_state = 617}, - [141] = {.lex_state = 15}, - [142] = {.lex_state = 18}, - [143] = {.lex_state = 15}, - [144] = {.lex_state = 15}, - [145] = {.lex_state = 15}, - [146] = {.lex_state = 15}, - [147] = {.lex_state = 15}, - [148] = {.lex_state = 15}, - [149] = {.lex_state = 617}, - [150] = {.lex_state = 18}, + [71] = {.lex_state = 4}, + [72] = {.lex_state = 4}, + [73] = {.lex_state = 4}, + [74] = {.lex_state = 4}, + [75] = {.lex_state = 4}, + [76] = {.lex_state = 4}, + [77] = {.lex_state = 4}, + [78] = {.lex_state = 4}, + [79] = {.lex_state = 4}, + [80] = {.lex_state = 4}, + [81] = {.lex_state = 10}, + [82] = {.lex_state = 10}, + [83] = {.lex_state = 699}, + [84] = {.lex_state = 10}, + [85] = {.lex_state = 10}, + [86] = {.lex_state = 10}, + [87] = {.lex_state = 10}, + [88] = {.lex_state = 10}, + [89] = {.lex_state = 10}, + [90] = {.lex_state = 10}, + [91] = {.lex_state = 4}, + [92] = {.lex_state = 4}, + [93] = {.lex_state = 5}, + [94] = {.lex_state = 11}, + [95] = {.lex_state = 5}, + [96] = {.lex_state = 4}, + [97] = {.lex_state = 11}, + [98] = {.lex_state = 11}, + [99] = {.lex_state = 11}, + [100] = {.lex_state = 11}, + [101] = {.lex_state = 14}, + [102] = {.lex_state = 11}, + [103] = {.lex_state = 11}, + [104] = {.lex_state = 11}, + [105] = {.lex_state = 22}, + [106] = {.lex_state = 11}, + [107] = {.lex_state = 22}, + [108] = {.lex_state = 11}, + [109] = {.lex_state = 4}, + [110] = {.lex_state = 14}, + [111] = {.lex_state = 2}, + [112] = {.lex_state = 14}, + [113] = {.lex_state = 14}, + [114] = {.lex_state = 14}, + [115] = {.lex_state = 2}, + [116] = {.lex_state = 6}, + [117] = {.lex_state = 14}, + [118] = {.lex_state = 14}, + [119] = {.lex_state = 6}, + [120] = {.lex_state = 14}, + [121] = {.lex_state = 14}, + [122] = {.lex_state = 14}, + [123] = {.lex_state = 2}, + [124] = {.lex_state = 19}, + [125] = {.lex_state = 10}, + [126] = {.lex_state = 19}, + [127] = {.lex_state = 2}, + [128] = {.lex_state = 2}, + [129] = {.lex_state = 2}, + [130] = {.lex_state = 10}, + [131] = {.lex_state = 4}, + [132] = {.lex_state = 19}, + [133] = {.lex_state = 19}, + [134] = {.lex_state = 2}, + [135] = {.lex_state = 10}, + [136] = {.lex_state = 10}, + [137] = {.lex_state = 19}, + [138] = {.lex_state = 19}, + [139] = {.lex_state = 19}, + [140] = {.lex_state = 10}, + [141] = {.lex_state = 2}, + [142] = {.lex_state = 4}, + [143] = {.lex_state = 10}, + [144] = {.lex_state = 9}, + [145] = {.lex_state = 9}, + [146] = {.lex_state = 19}, + [147] = {.lex_state = 10}, + [148] = {.lex_state = 10}, + [149] = {.lex_state = 10}, + [150] = {.lex_state = 19}, [151] = {.lex_state = 10}, - [152] = {.lex_state = 15}, - [153] = {.lex_state = 15}, - [154] = {.lex_state = 15}, - [155] = {.lex_state = 10}, - [156] = {.lex_state = 10}, - [157] = {.lex_state = 15}, - [158] = {.lex_state = 10}, - [159] = {.lex_state = 10}, - [160] = {.lex_state = 10}, - [161] = {.lex_state = 15}, - [162] = {.lex_state = 15}, + [152] = {.lex_state = 19}, + [153] = {.lex_state = 10}, + [154] = {.lex_state = 2}, + [155] = {.lex_state = 2}, + [156] = {.lex_state = 19}, + [157] = {.lex_state = 2}, + [158] = {.lex_state = 19}, + [159] = {.lex_state = 19}, + [160] = {.lex_state = 19}, + [161] = {.lex_state = 19}, + [162] = {.lex_state = 19}, [163] = {.lex_state = 19}, - [164] = {.lex_state = 10}, - [165] = {.lex_state = 10}, - [166] = {.lex_state = 10}, - [167] = {.lex_state = 5}, - [168] = {.lex_state = 15}, - [169] = {.lex_state = 15}, - [170] = {.lex_state = 15}, - [171] = {.lex_state = 15}, - [172] = {.lex_state = 15}, - [173] = {.lex_state = 15}, - [174] = {.lex_state = 15}, - [175] = {.lex_state = 15}, - [176] = {.lex_state = 15}, - [177] = {.lex_state = 15}, - [178] = {.lex_state = 15}, - [179] = {.lex_state = 15}, - [180] = {.lex_state = 15}, - [181] = {.lex_state = 15}, - [182] = {.lex_state = 15}, - [183] = {.lex_state = 15}, - [184] = {.lex_state = 15}, - [185] = {.lex_state = 15}, - [186] = {.lex_state = 15}, - [187] = {.lex_state = 15}, - [188] = {.lex_state = 15}, - [189] = {.lex_state = 15}, - [190] = {.lex_state = 15}, - [191] = {.lex_state = 15}, - [192] = {.lex_state = 15}, - [193] = {.lex_state = 15}, - [194] = {.lex_state = 15}, - [195] = {.lex_state = 15}, - [196] = {.lex_state = 15}, - [197] = {.lex_state = 15}, - [198] = {.lex_state = 15}, - [199] = {.lex_state = 15}, - [200] = {.lex_state = 15}, - [201] = {.lex_state = 15}, - [202] = {.lex_state = 617}, - [203] = {.lex_state = 617}, - [204] = {.lex_state = 15}, - [205] = {.lex_state = 15}, - [206] = {.lex_state = 15}, - [207] = {.lex_state = 15}, - [208] = {.lex_state = 15}, - [209] = {.lex_state = 15}, - [210] = {.lex_state = 15}, - [211] = {.lex_state = 15}, - [212] = {.lex_state = 15}, - [213] = {.lex_state = 15}, - [214] = {.lex_state = 15}, - [215] = {.lex_state = 15}, - [216] = {.lex_state = 617}, - [217] = {.lex_state = 15}, - [218] = {.lex_state = 15}, - [219] = {.lex_state = 15}, - [220] = {.lex_state = 15}, - [221] = {.lex_state = 15}, - [222] = {.lex_state = 15}, - [223] = {.lex_state = 15}, - [224] = {.lex_state = 15}, - [225] = {.lex_state = 15}, - [226] = {.lex_state = 15}, - [227] = {.lex_state = 617}, - [228] = {.lex_state = 15}, - [229] = {.lex_state = 15}, - [230] = {.lex_state = 15}, - [231] = {.lex_state = 15}, - [232] = {.lex_state = 15}, - [233] = {.lex_state = 15}, - [234] = {.lex_state = 15}, - [235] = {.lex_state = 617}, - [236] = {.lex_state = 15}, - [237] = {.lex_state = 15}, - [238] = {.lex_state = 15}, - [239] = {.lex_state = 15}, - [240] = {.lex_state = 15}, - [241] = {.lex_state = 617}, - [242] = {.lex_state = 15}, - [243] = {.lex_state = 15}, - [244] = {.lex_state = 617}, - [245] = {.lex_state = 15}, - [246] = {.lex_state = 15}, - [247] = {.lex_state = 617}, - [248] = {.lex_state = 15}, - [249] = {.lex_state = 617}, - [250] = {.lex_state = 15}, - [251] = {.lex_state = 617}, - [252] = {.lex_state = 617}, - [253] = {.lex_state = 15}, - [254] = {.lex_state = 15}, - [255] = {.lex_state = 617}, - [256] = {.lex_state = 617}, - [257] = {.lex_state = 15}, - [258] = {.lex_state = 15}, - [259] = {.lex_state = 15}, - [260] = {.lex_state = 9}, - [261] = {.lex_state = 9}, - [262] = {.lex_state = 617}, - [263] = {.lex_state = 2}, - [264] = {.lex_state = 2}, - [265] = {.lex_state = 9}, - [266] = {.lex_state = 9}, - [267] = {.lex_state = 2}, - [268] = {.lex_state = 9}, - [269] = {.lex_state = 9}, - [270] = {.lex_state = 2}, - [271] = {.lex_state = 617}, - [272] = {.lex_state = 2}, - [273] = {.lex_state = 2}, - [274] = {.lex_state = 6}, - [275] = {.lex_state = 2}, - [276] = {.lex_state = 20}, - [277] = {.lex_state = 9}, - [278] = {.lex_state = 617}, - [279] = {.lex_state = 9}, - [280] = {.lex_state = 9}, - [281] = {.lex_state = 9}, - [282] = {.lex_state = 617}, - [283] = {.lex_state = 617}, - [284] = {.lex_state = 2}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 617}, - [287] = {.lex_state = 617}, - [288] = {.lex_state = 617}, - [289] = {.lex_state = 20}, - [290] = {.lex_state = 20}, - [291] = {.lex_state = 20}, - [292] = {.lex_state = 20}, - [293] = {.lex_state = 20}, - [294] = {.lex_state = 617}, - [295] = {.lex_state = 617}, - [296] = {.lex_state = 617}, - [297] = {.lex_state = 617}, - [298] = {.lex_state = 617}, - [299] = {.lex_state = 617}, - [300] = {.lex_state = 617}, - [301] = {.lex_state = 617}, - [302] = {.lex_state = 617}, - [303] = {.lex_state = 617}, - [304] = {.lex_state = 617}, - [305] = {.lex_state = 617}, - [306] = {.lex_state = 617}, - [307] = {.lex_state = 10}, - [308] = {.lex_state = 2}, - [309] = {.lex_state = 10}, - [310] = {.lex_state = 10}, - [311] = {.lex_state = 10}, - [312] = {.lex_state = 10}, - [313] = {.lex_state = 2}, - [314] = {.lex_state = 2}, - [315] = {.lex_state = 10}, - [316] = {.lex_state = 24}, - [317] = {.lex_state = 2}, - [318] = {.lex_state = 2}, - [319] = {.lex_state = 2}, - [320] = {.lex_state = 10}, - [321] = {.lex_state = 10}, - [322] = {.lex_state = 10}, - [323] = {.lex_state = 10}, - [324] = {.lex_state = 23}, - [325] = {.lex_state = 23}, - [326] = {.lex_state = 2}, - [327] = {.lex_state = 2}, - [328] = {.lex_state = 2}, - [329] = {.lex_state = 2}, - [330] = {.lex_state = 2}, - [331] = {.lex_state = 2}, - [332] = {.lex_state = 2}, - [333] = {.lex_state = 2}, - [334] = {.lex_state = 23}, - [335] = {.lex_state = 23}, - [336] = {.lex_state = 21}, - [337] = {.lex_state = 2}, - [338] = {.lex_state = 23}, - [339] = {.lex_state = 2}, - [340] = {.lex_state = 23}, - [341] = {.lex_state = 2}, - [342] = {.lex_state = 2}, - [343] = {.lex_state = 23}, - [344] = {.lex_state = 2}, - [345] = {.lex_state = 21}, - [346] = {.lex_state = 21}, - [347] = {.lex_state = 21}, - [348] = {.lex_state = 21}, - [349] = {.lex_state = 21}, - [350] = {.lex_state = 2}, - [351] = {.lex_state = 2}, - [352] = {.lex_state = 2}, - [353] = {.lex_state = 617}, - [354] = {.lex_state = 25}, - [355] = {.lex_state = 2}, - [356] = {.lex_state = 2}, - [357] = {.lex_state = 617}, - [358] = {.lex_state = 22}, - [359] = {.lex_state = 617}, - [360] = {.lex_state = 617}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 617}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 2}, - [366] = {.lex_state = 617}, - [367] = {.lex_state = 0}, - [368] = {.lex_state = 617}, - [369] = {.lex_state = 22}, - [370] = {.lex_state = 22}, - [371] = {.lex_state = 23}, - [372] = {.lex_state = 22}, - [373] = {.lex_state = 617}, - [374] = {.lex_state = 22}, - [375] = {.lex_state = 617}, - [376] = {.lex_state = 22}, - [377] = {.lex_state = 617}, - [378] = {.lex_state = 2}, - [379] = {.lex_state = 617}, - [380] = {.lex_state = 2}, - [381] = {.lex_state = 2}, - [382] = {.lex_state = 617}, - [383] = {.lex_state = 2}, - [384] = {.lex_state = 2}, - [385] = {.lex_state = 2}, - [386] = {.lex_state = 2}, - [387] = {.lex_state = 27}, - [388] = {.lex_state = 2}, - [389] = {.lex_state = 617}, - [390] = {.lex_state = 617}, - [391] = {.lex_state = 617}, - [392] = {.lex_state = 40}, - [393] = {.lex_state = 2}, - [394] = {.lex_state = 617}, - [395] = {.lex_state = 2}, - [396] = {.lex_state = 2}, - [397] = {.lex_state = 2}, - [398] = {.lex_state = 617}, - [399] = {.lex_state = 26}, - [400] = {.lex_state = 2}, - [401] = {.lex_state = 2}, - [402] = {.lex_state = 2}, - [403] = {.lex_state = 617}, - [404] = {.lex_state = 617}, - [405] = {.lex_state = 617}, - [406] = {.lex_state = 2}, - [407] = {.lex_state = 617}, - [408] = {.lex_state = 2}, - [409] = {.lex_state = 2}, - [410] = {.lex_state = 617}, - [411] = {.lex_state = 617}, - [412] = {.lex_state = 2}, - [413] = {.lex_state = 617}, - [414] = {.lex_state = 2}, - [415] = {.lex_state = 2}, - [416] = {.lex_state = 2}, - [417] = {.lex_state = 28}, - [418] = {.lex_state = 2}, - [419] = {.lex_state = 2}, - [420] = {.lex_state = 2}, - [421] = {.lex_state = 617}, - [422] = {.lex_state = 617}, - [423] = {.lex_state = 2}, - [424] = {.lex_state = 2}, - [425] = {.lex_state = 49}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 617}, - [428] = {.lex_state = 15}, - [429] = {.lex_state = 617}, - [430] = {.lex_state = 15}, - [431] = {.lex_state = 32}, - [432] = {.lex_state = 0}, - [433] = {.lex_state = 0}, - [434] = {.lex_state = 15}, - [435] = {.lex_state = 34}, - [436] = {.lex_state = 2}, - [437] = {.lex_state = 2}, - [438] = {.lex_state = 15}, - [439] = {.lex_state = 15}, - [440] = {.lex_state = 15}, - [441] = {.lex_state = 617}, - [442] = {.lex_state = 34}, - [443] = {.lex_state = 34}, - [444] = {.lex_state = 15}, - [445] = {.lex_state = 32}, - [446] = {.lex_state = 34}, - [447] = {.lex_state = 617}, - [448] = {.lex_state = 617}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 23}, - [451] = {.lex_state = 23}, - [452] = {.lex_state = 23}, - [453] = {.lex_state = 0}, - [454] = {.lex_state = 2}, - [455] = {.lex_state = 23}, - [456] = {.lex_state = 23}, - [457] = {.lex_state = 23}, - [458] = {.lex_state = 2}, - [459] = {.lex_state = 0}, - [460] = {.lex_state = 2}, - [461] = {.lex_state = 23}, - [462] = {.lex_state = 2}, - [463] = {.lex_state = 2}, - [464] = {.lex_state = 23}, - [465] = {.lex_state = 34}, - [466] = {.lex_state = 33}, - [467] = {.lex_state = 33}, - [468] = {.lex_state = 2}, - [469] = {.lex_state = 2}, - [470] = {.lex_state = 617}, - [471] = {.lex_state = 23}, - [472] = {.lex_state = 2}, - [473] = {.lex_state = 2}, - [474] = {.lex_state = 23}, - [475] = {.lex_state = 0}, - [476] = {.lex_state = 617}, - [477] = {.lex_state = 617}, - [478] = {.lex_state = 617}, - [479] = {.lex_state = 617}, - [480] = {.lex_state = 0}, - [481] = {.lex_state = 617}, - [482] = {.lex_state = 617}, - [483] = {.lex_state = 617}, - [484] = {.lex_state = 44}, - [485] = {.lex_state = 617}, - [486] = {.lex_state = 617}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 617}, - [489] = {.lex_state = 617}, - [490] = {.lex_state = 617}, - [491] = {.lex_state = 617}, - [492] = {.lex_state = 617}, - [493] = {.lex_state = 617}, - [494] = {.lex_state = 617}, - [495] = {.lex_state = 617}, - [496] = {.lex_state = 617}, - [497] = {.lex_state = 617}, - [498] = {.lex_state = 617}, - [499] = {.lex_state = 617}, - [500] = {.lex_state = 617}, - [501] = {.lex_state = 0}, - [502] = {.lex_state = 617}, - [503] = {.lex_state = 617}, - [504] = {.lex_state = 617}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 617}, - [507] = {.lex_state = 617}, - [508] = {.lex_state = 617}, - [509] = {.lex_state = 0}, - [510] = {.lex_state = 11}, - [511] = {.lex_state = 30}, - [512] = {.lex_state = 11}, - [513] = {.lex_state = 617}, - [514] = {.lex_state = 617}, - [515] = {.lex_state = 30}, - [516] = {.lex_state = 617}, - [517] = {.lex_state = 0}, - [518] = {.lex_state = 11}, - [519] = {.lex_state = 617}, - [520] = {.lex_state = 617}, - [521] = {.lex_state = 31}, - [522] = {.lex_state = 0}, - [523] = {.lex_state = 11}, - [524] = {.lex_state = 617}, - [525] = {.lex_state = 11}, - [526] = {.lex_state = 11}, - [527] = {.lex_state = 617}, - [528] = {.lex_state = 31}, - [529] = {.lex_state = 617}, - [530] = {.lex_state = 617}, - [531] = {.lex_state = 617}, - [532] = {.lex_state = 617}, - [533] = {.lex_state = 617}, - [534] = {.lex_state = 617}, - [535] = {.lex_state = 617}, - [536] = {.lex_state = 617}, - [537] = {.lex_state = 617}, - [538] = {.lex_state = 617}, - [539] = {.lex_state = 617}, - [540] = {.lex_state = 617}, - [541] = {.lex_state = 617}, - [542] = {.lex_state = 617}, - [543] = {.lex_state = 617}, - [544] = {.lex_state = 617}, - [545] = {.lex_state = 617}, - [546] = {.lex_state = 617}, - [547] = {.lex_state = 48}, - [548] = {.lex_state = 0}, - [549] = {.lex_state = 617}, - [550] = {.lex_state = 617}, - [551] = {.lex_state = 0}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 48}, - [554] = {.lex_state = 617}, - [555] = {.lex_state = 54}, - [556] = {.lex_state = 617}, - [557] = {.lex_state = 617}, - [558] = {.lex_state = 48}, - [559] = {.lex_state = 617}, - [560] = {.lex_state = 617}, - [561] = {.lex_state = 617}, - [562] = {.lex_state = 617}, - [563] = {.lex_state = 617}, - [564] = {.lex_state = 617}, - [565] = {.lex_state = 617}, - [566] = {.lex_state = 0}, - [567] = {.lex_state = 30}, - [568] = {.lex_state = 53}, - [569] = {.lex_state = 0}, - [570] = {.lex_state = 617}, - [571] = {.lex_state = 0}, - [572] = {.lex_state = 0}, - [573] = {.lex_state = 617}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 0}, - [576] = {.lex_state = 617}, - [577] = {.lex_state = 617}, - [578] = {.lex_state = 617}, - [579] = {.lex_state = 30}, - [580] = {.lex_state = 617}, - [581] = {.lex_state = 617}, - [582] = {.lex_state = 617}, - [583] = {.lex_state = 617}, - [584] = {.lex_state = 617}, - [585] = {.lex_state = 617}, - [586] = {.lex_state = 617}, - [587] = {.lex_state = 617}, - [588] = {.lex_state = 50}, - [589] = {.lex_state = 617}, - [590] = {.lex_state = 617}, - [591] = {.lex_state = 617}, - [592] = {.lex_state = 617}, - [593] = {.lex_state = 617}, - [594] = {.lex_state = 617}, - [595] = {.lex_state = 617}, - [596] = {.lex_state = 617}, - [597] = {.lex_state = 617}, - [598] = {.lex_state = 53}, - [599] = {.lex_state = 617}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 617}, - [602] = {.lex_state = 617}, - [603] = {.lex_state = 617}, - [604] = {.lex_state = 617}, - [605] = {.lex_state = 617}, - [606] = {.lex_state = 46}, - [607] = {.lex_state = 617}, - [608] = {.lex_state = 63}, - [609] = {.lex_state = 0}, - [610] = {.lex_state = 617}, - [611] = {.lex_state = 617}, - [612] = {.lex_state = 617}, - [613] = {.lex_state = 29}, - [614] = {.lex_state = 617}, - [615] = {.lex_state = 0}, - [616] = {.lex_state = 23}, - [617] = {.lex_state = 617}, - [618] = {.lex_state = 617}, - [619] = {.lex_state = 54}, - [620] = {.lex_state = 51}, - [621] = {.lex_state = 617}, - [622] = {.lex_state = 30}, - [623] = {.lex_state = 0}, - [624] = {.lex_state = 12}, - [625] = {.lex_state = 0}, - [626] = {.lex_state = 12}, - [627] = {.lex_state = 12}, - [628] = {.lex_state = 11}, - [629] = {.lex_state = 12}, - [630] = {.lex_state = 0}, - [631] = {.lex_state = 0}, - [632] = {.lex_state = 617}, - [633] = {.lex_state = 617}, - [634] = {.lex_state = 11}, - [635] = {.lex_state = 0}, - [636] = {.lex_state = 23}, - [637] = {.lex_state = 617}, - [638] = {.lex_state = 12}, - [639] = {.lex_state = 0}, - [640] = {.lex_state = 0}, - [641] = {.lex_state = 617}, - [642] = {.lex_state = 12}, - [643] = {.lex_state = 617}, - [644] = {.lex_state = 0}, - [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 12}, - [649] = {.lex_state = 57}, - [650] = {.lex_state = 23}, - [651] = {.lex_state = 617}, - [652] = {.lex_state = 12}, - [653] = {.lex_state = 0}, - [654] = {.lex_state = 617}, - [655] = {.lex_state = 617}, - [656] = {.lex_state = 12}, - [657] = {.lex_state = 617}, - [658] = {.lex_state = 617}, - [659] = {.lex_state = 617}, - [660] = {.lex_state = 58}, - [661] = {.lex_state = 12}, - [662] = {.lex_state = 30}, - [663] = {.lex_state = 12}, - [664] = {.lex_state = 0}, - [665] = {.lex_state = 617}, - [666] = {.lex_state = 0}, - [667] = {.lex_state = 617}, - [668] = {.lex_state = 12}, - [669] = {.lex_state = 42}, - [670] = {.lex_state = 12}, - [671] = {.lex_state = 0}, - [672] = {.lex_state = 617}, - [673] = {.lex_state = 617}, - [674] = {.lex_state = 35}, - [675] = {.lex_state = 57}, - [676] = {.lex_state = 30}, - [677] = {.lex_state = 617}, - [678] = {.lex_state = 56}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 30}, - [682] = {.lex_state = 0}, - [683] = {.lex_state = 0}, - [684] = {.lex_state = 11}, - [685] = {.lex_state = 0}, - [686] = {.lex_state = 0}, - [687] = {.lex_state = 0}, - [688] = {.lex_state = 0}, - [689] = {.lex_state = 60}, - [690] = {.lex_state = 0}, - [691] = {.lex_state = 45}, - [692] = {.lex_state = 0}, - [693] = {.lex_state = 0}, - [694] = {.lex_state = 58}, - [695] = {.lex_state = 0}, - [696] = {.lex_state = 11}, - [697] = {.lex_state = 58}, - [698] = {.lex_state = 11}, - [699] = {.lex_state = 0}, + [164] = {.lex_state = 19}, + [165] = {.lex_state = 2}, + [166] = {.lex_state = 19}, + [167] = {.lex_state = 11}, + [168] = {.lex_state = 699}, + [169] = {.lex_state = 18}, + [170] = {.lex_state = 11}, + [171] = {.lex_state = 11}, + [172] = {.lex_state = 11}, + [173] = {.lex_state = 11}, + [174] = {.lex_state = 11}, + [175] = {.lex_state = 11}, + [176] = {.lex_state = 11}, + [177] = {.lex_state = 11}, + [178] = {.lex_state = 11}, + [179] = {.lex_state = 11}, + [180] = {.lex_state = 4}, + [181] = {.lex_state = 18}, + [182] = {.lex_state = 14}, + [183] = {.lex_state = 14}, + [184] = {.lex_state = 14}, + [185] = {.lex_state = 14}, + [186] = {.lex_state = 14}, + [187] = {.lex_state = 14}, + [188] = {.lex_state = 14}, + [189] = {.lex_state = 17}, + [190] = {.lex_state = 14}, + [191] = {.lex_state = 14}, + [192] = {.lex_state = 18}, + [193] = {.lex_state = 14}, + [194] = {.lex_state = 18}, + [195] = {.lex_state = 14}, + [196] = {.lex_state = 18}, + [197] = {.lex_state = 18}, + [198] = {.lex_state = 17}, + [199] = {.lex_state = 17}, + [200] = {.lex_state = 17}, + [201] = {.lex_state = 17}, + [202] = {.lex_state = 12}, + [203] = {.lex_state = 17}, + [204] = {.lex_state = 17}, + [205] = {.lex_state = 17}, + [206] = {.lex_state = 24}, + [207] = {.lex_state = 17}, + [208] = {.lex_state = 17}, + [209] = {.lex_state = 17}, + [210] = {.lex_state = 699}, + [211] = {.lex_state = 699}, + [212] = {.lex_state = 17}, + [213] = {.lex_state = 17}, + [214] = {.lex_state = 699}, + [215] = {.lex_state = 21}, + [216] = {.lex_state = 17}, + [217] = {.lex_state = 17}, + [218] = {.lex_state = 17}, + [219] = {.lex_state = 17}, + [220] = {.lex_state = 17}, + [221] = {.lex_state = 17}, + [222] = {.lex_state = 17}, + [223] = {.lex_state = 17}, + [224] = {.lex_state = 17}, + [225] = {.lex_state = 17}, + [226] = {.lex_state = 17}, + [227] = {.lex_state = 17}, + [228] = {.lex_state = 12}, + [229] = {.lex_state = 17}, + [230] = {.lex_state = 17}, + [231] = {.lex_state = 17}, + [232] = {.lex_state = 17}, + [233] = {.lex_state = 17}, + [234] = {.lex_state = 17}, + [235] = {.lex_state = 17}, + [236] = {.lex_state = 17}, + [237] = {.lex_state = 12}, + [238] = {.lex_state = 17}, + [239] = {.lex_state = 12}, + [240] = {.lex_state = 12}, + [241] = {.lex_state = 12}, + [242] = {.lex_state = 17}, + [243] = {.lex_state = 12}, + [244] = {.lex_state = 17}, + [245] = {.lex_state = 12}, + [246] = {.lex_state = 12}, + [247] = {.lex_state = 17}, + [248] = {.lex_state = 17}, + [249] = {.lex_state = 17}, + [250] = {.lex_state = 17}, + [251] = {.lex_state = 17}, + [252] = {.lex_state = 17}, + [253] = {.lex_state = 17}, + [254] = {.lex_state = 17}, + [255] = {.lex_state = 17}, + [256] = {.lex_state = 17}, + [257] = {.lex_state = 17}, + [258] = {.lex_state = 17}, + [259] = {.lex_state = 17}, + [260] = {.lex_state = 17}, + [261] = {.lex_state = 17}, + [262] = {.lex_state = 17}, + [263] = {.lex_state = 17}, + [264] = {.lex_state = 17}, + [265] = {.lex_state = 17}, + [266] = {.lex_state = 17}, + [267] = {.lex_state = 17}, + [268] = {.lex_state = 17}, + [269] = {.lex_state = 17}, + [270] = {.lex_state = 17}, + [271] = {.lex_state = 17}, + [272] = {.lex_state = 17}, + [273] = {.lex_state = 17}, + [274] = {.lex_state = 17}, + [275] = {.lex_state = 17}, + [276] = {.lex_state = 17}, + [277] = {.lex_state = 17}, + [278] = {.lex_state = 17}, + [279] = {.lex_state = 17}, + [280] = {.lex_state = 17}, + [281] = {.lex_state = 17}, + [282] = {.lex_state = 17}, + [283] = {.lex_state = 17}, + [284] = {.lex_state = 12}, + [285] = {.lex_state = 17}, + [286] = {.lex_state = 17}, + [287] = {.lex_state = 17}, + [288] = {.lex_state = 17}, + [289] = {.lex_state = 17}, + [290] = {.lex_state = 17}, + [291] = {.lex_state = 17}, + [292] = {.lex_state = 17}, + [293] = {.lex_state = 17}, + [294] = {.lex_state = 17}, + [295] = {.lex_state = 17}, + [296] = {.lex_state = 17}, + [297] = {.lex_state = 17}, + [298] = {.lex_state = 699}, + [299] = {.lex_state = 17}, + [300] = {.lex_state = 17}, + [301] = {.lex_state = 17}, + [302] = {.lex_state = 17}, + [303] = {.lex_state = 17}, + [304] = {.lex_state = 17}, + [305] = {.lex_state = 17}, + [306] = {.lex_state = 17}, + [307] = {.lex_state = 17}, + [308] = {.lex_state = 17}, + [309] = {.lex_state = 17}, + [310] = {.lex_state = 17}, + [311] = {.lex_state = 17}, + [312] = {.lex_state = 17}, + [313] = {.lex_state = 17}, + [314] = {.lex_state = 17}, + [315] = {.lex_state = 17}, + [316] = {.lex_state = 17}, + [317] = {.lex_state = 17}, + [318] = {.lex_state = 17}, + [319] = {.lex_state = 17}, + [320] = {.lex_state = 17}, + [321] = {.lex_state = 17}, + [322] = {.lex_state = 17}, + [323] = {.lex_state = 17}, + [324] = {.lex_state = 17}, + [325] = {.lex_state = 699}, + [326] = {.lex_state = 17}, + [327] = {.lex_state = 17}, + [328] = {.lex_state = 17}, + [329] = {.lex_state = 17}, + [330] = {.lex_state = 17}, + [331] = {.lex_state = 17}, + [332] = {.lex_state = 17}, + [333] = {.lex_state = 17}, + [334] = {.lex_state = 17}, + [335] = {.lex_state = 17}, + [336] = {.lex_state = 17}, + [337] = {.lex_state = 7}, + [338] = {.lex_state = 7}, + [339] = {.lex_state = 13}, + [340] = {.lex_state = 13}, + [341] = {.lex_state = 13}, + [342] = {.lex_state = 13}, + [343] = {.lex_state = 699}, + [344] = {.lex_state = 699}, + [345] = {.lex_state = 13}, + [346] = {.lex_state = 699}, + [347] = {.lex_state = 13}, + [348] = {.lex_state = 13}, + [349] = {.lex_state = 4}, + [350] = {.lex_state = 4}, + [351] = {.lex_state = 13}, + [352] = {.lex_state = 13}, + [353] = {.lex_state = 4}, + [354] = {.lex_state = 13}, + [355] = {.lex_state = 4}, + [356] = {.lex_state = 30}, + [357] = {.lex_state = 699}, + [358] = {.lex_state = 699}, + [359] = {.lex_state = 699}, + [360] = {.lex_state = 699}, + [361] = {.lex_state = 699}, + [362] = {.lex_state = 699}, + [363] = {.lex_state = 699}, + [364] = {.lex_state = 699}, + [365] = {.lex_state = 699}, + [366] = {.lex_state = 8}, + [367] = {.lex_state = 699}, + [368] = {.lex_state = 699}, + [369] = {.lex_state = 4}, + [370] = {.lex_state = 699}, + [371] = {.lex_state = 699}, + [372] = {.lex_state = 4}, + [373] = {.lex_state = 8}, + [374] = {.lex_state = 699}, + [375] = {.lex_state = 699}, + [376] = {.lex_state = 12}, + [377] = {.lex_state = 4}, + [378] = {.lex_state = 4}, + [379] = {.lex_state = 699}, + [380] = {.lex_state = 4}, + [381] = {.lex_state = 4}, + [382] = {.lex_state = 12}, + [383] = {.lex_state = 699}, + [384] = {.lex_state = 699}, + [385] = {.lex_state = 4}, + [386] = {.lex_state = 4}, + [387] = {.lex_state = 4}, + [388] = {.lex_state = 4}, + [389] = {.lex_state = 30}, + [390] = {.lex_state = 4}, + [391] = {.lex_state = 12}, + [392] = {.lex_state = 699}, + [393] = {.lex_state = 12}, + [394] = {.lex_state = 4}, + [395] = {.lex_state = 4}, + [396] = {.lex_state = 699}, + [397] = {.lex_state = 4}, + [398] = {.lex_state = 30}, + [399] = {.lex_state = 12}, + [400] = {.lex_state = 12}, + [401] = {.lex_state = 12}, + [402] = {.lex_state = 12}, + [403] = {.lex_state = 4}, + [404] = {.lex_state = 12}, + [405] = {.lex_state = 699}, + [406] = {.lex_state = 12}, + [407] = {.lex_state = 12}, + [408] = {.lex_state = 4}, + [409] = {.lex_state = 699}, + [410] = {.lex_state = 699}, + [411] = {.lex_state = 699}, + [412] = {.lex_state = 699}, + [413] = {.lex_state = 699}, + [414] = {.lex_state = 36}, + [415] = {.lex_state = 699}, + [416] = {.lex_state = 699}, + [417] = {.lex_state = 4}, + [418] = {.lex_state = 699}, + [419] = {.lex_state = 4}, + [420] = {.lex_state = 4}, + [421] = {.lex_state = 699}, + [422] = {.lex_state = 699}, + [423] = {.lex_state = 4}, + [424] = {.lex_state = 4}, + [425] = {.lex_state = 699}, + [426] = {.lex_state = 699}, + [427] = {.lex_state = 699}, + [428] = {.lex_state = 699}, + [429] = {.lex_state = 699}, + [430] = {.lex_state = 699}, + [431] = {.lex_state = 4}, + [432] = {.lex_state = 699}, + [433] = {.lex_state = 4}, + [434] = {.lex_state = 699}, + [435] = {.lex_state = 31}, + [436] = {.lex_state = 699}, + [437] = {.lex_state = 699}, + [438] = {.lex_state = 699}, + [439] = {.lex_state = 699}, + [440] = {.lex_state = 30}, + [441] = {.lex_state = 30}, + [442] = {.lex_state = 4}, + [443] = {.lex_state = 30}, + [444] = {.lex_state = 699}, + [445] = {.lex_state = 4}, + [446] = {.lex_state = 699}, + [447] = {.lex_state = 4}, + [448] = {.lex_state = 4}, + [449] = {.lex_state = 699}, + [450] = {.lex_state = 13}, + [451] = {.lex_state = 13}, + [452] = {.lex_state = 4}, + [453] = {.lex_state = 4}, + [454] = {.lex_state = 4}, + [455] = {.lex_state = 4}, + [456] = {.lex_state = 31}, + [457] = {.lex_state = 13}, + [458] = {.lex_state = 53}, + [459] = {.lex_state = 4}, + [460] = {.lex_state = 4}, + [461] = {.lex_state = 4}, + [462] = {.lex_state = 13}, + [463] = {.lex_state = 13}, + [464] = {.lex_state = 13}, + [465] = {.lex_state = 13}, + [466] = {.lex_state = 4}, + [467] = {.lex_state = 4}, + [468] = {.lex_state = 13}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 13}, + [471] = {.lex_state = 33}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 13}, + [474] = {.lex_state = 4}, + [475] = {.lex_state = 4}, + [476] = {.lex_state = 31}, + [477] = {.lex_state = 13}, + [478] = {.lex_state = 4}, + [479] = {.lex_state = 4}, + [480] = {.lex_state = 34}, + [481] = {.lex_state = 4}, + [482] = {.lex_state = 4}, + [483] = {.lex_state = 34}, + [484] = {.lex_state = 34}, + [485] = {.lex_state = 4}, + [486] = {.lex_state = 4}, + [487] = {.lex_state = 31}, + [488] = {.lex_state = 34}, + [489] = {.lex_state = 33}, + [490] = {.lex_state = 31}, + [491] = {.lex_state = 4}, + [492] = {.lex_state = 37}, + [493] = {.lex_state = 31}, + [494] = {.lex_state = 4}, + [495] = {.lex_state = 34}, + [496] = {.lex_state = 4}, + [497] = {.lex_state = 4}, + [498] = {.lex_state = 33}, + [499] = {.lex_state = 4}, + [500] = {.lex_state = 4}, + [501] = {.lex_state = 4}, + [502] = {.lex_state = 34}, + [503] = {.lex_state = 4}, + [504] = {.lex_state = 34}, + [505] = {.lex_state = 4}, + [506] = {.lex_state = 50}, + [507] = {.lex_state = 33}, + [508] = {.lex_state = 33}, + [509] = {.lex_state = 26}, + [510] = {.lex_state = 33}, + [511] = {.lex_state = 4}, + [512] = {.lex_state = 4}, + [513] = {.lex_state = 4}, + [514] = {.lex_state = 26}, + [515] = {.lex_state = 4}, + [516] = {.lex_state = 54}, + [517] = {.lex_state = 2}, + [518] = {.lex_state = 4}, + [519] = {.lex_state = 4}, + [520] = {.lex_state = 32}, + [521] = {.lex_state = 26}, + [522] = {.lex_state = 699}, + [523] = {.lex_state = 32}, + [524] = {.lex_state = 4}, + [525] = {.lex_state = 4}, + [526] = {.lex_state = 32}, + [527] = {.lex_state = 4}, + [528] = {.lex_state = 699}, + [529] = {.lex_state = 4}, + [530] = {.lex_state = 4}, + [531] = {.lex_state = 26}, + [532] = {.lex_state = 26}, + [533] = {.lex_state = 26}, + [534] = {.lex_state = 699}, + [535] = {.lex_state = 4}, + [536] = {.lex_state = 699}, + [537] = {.lex_state = 699}, + [538] = {.lex_state = 4}, + [539] = {.lex_state = 699}, + [540] = {.lex_state = 2}, + [541] = {.lex_state = 4}, + [542] = {.lex_state = 2}, + [543] = {.lex_state = 2}, + [544] = {.lex_state = 4}, + [545] = {.lex_state = 32}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 4}, + [548] = {.lex_state = 2}, + [549] = {.lex_state = 4}, + [550] = {.lex_state = 32}, + [551] = {.lex_state = 32}, + [552] = {.lex_state = 4}, + [553] = {.lex_state = 4}, + [554] = {.lex_state = 39}, + [555] = {.lex_state = 4}, + [556] = {.lex_state = 38}, + [557] = {.lex_state = 2}, + [558] = {.lex_state = 4}, + [559] = {.lex_state = 2}, + [560] = {.lex_state = 2}, + [561] = {.lex_state = 4}, + [562] = {.lex_state = 2}, + [563] = {.lex_state = 4}, + [564] = {.lex_state = 2}, + [565] = {.lex_state = 34}, + [566] = {.lex_state = 4}, + [567] = {.lex_state = 4}, + [568] = {.lex_state = 2}, + [569] = {.lex_state = 4}, + [570] = {.lex_state = 4}, + [571] = {.lex_state = 4}, + [572] = {.lex_state = 4}, + [573] = {.lex_state = 4}, + [574] = {.lex_state = 4}, + [575] = {.lex_state = 4}, + [576] = {.lex_state = 4}, + [577] = {.lex_state = 4}, + [578] = {.lex_state = 4}, + [579] = {.lex_state = 4}, + [580] = {.lex_state = 27}, + [581] = {.lex_state = 4}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 40}, + [584] = {.lex_state = 4}, + [585] = {.lex_state = 4}, + [586] = {.lex_state = 2}, + [587] = {.lex_state = 4}, + [588] = {.lex_state = 4}, + [589] = {.lex_state = 2}, + [590] = {.lex_state = 4}, + [591] = {.lex_state = 4}, + [592] = {.lex_state = 4}, + [593] = {.lex_state = 2}, + [594] = {.lex_state = 35}, + [595] = {.lex_state = 63}, + [596] = {.lex_state = 4}, + [597] = {.lex_state = 2}, + [598] = {.lex_state = 2}, + [599] = {.lex_state = 4}, + [600] = {.lex_state = 2}, + [601] = {.lex_state = 4}, + [602] = {.lex_state = 27}, + [603] = {.lex_state = 2}, + [604] = {.lex_state = 17}, + [605] = {.lex_state = 27}, + [606] = {.lex_state = 4}, + [607] = {.lex_state = 4}, + [608] = {.lex_state = 35}, + [609] = {.lex_state = 4}, + [610] = {.lex_state = 4}, + [611] = {.lex_state = 51}, + [612] = {.lex_state = 17}, + [613] = {.lex_state = 17}, + [614] = {.lex_state = 17}, + [615] = {.lex_state = 4}, + [616] = {.lex_state = 43}, + [617] = {.lex_state = 4}, + [618] = {.lex_state = 4}, + [619] = {.lex_state = 699}, + [620] = {.lex_state = 43}, + [621] = {.lex_state = 2}, + [622] = {.lex_state = 699}, + [623] = {.lex_state = 4}, + [624] = {.lex_state = 699}, + [625] = {.lex_state = 4}, + [626] = {.lex_state = 4}, + [627] = {.lex_state = 17}, + [628] = {.lex_state = 2}, + [629] = {.lex_state = 699}, + [630] = {.lex_state = 699}, + [631] = {.lex_state = 43}, + [632] = {.lex_state = 35}, + [633] = {.lex_state = 43}, + [634] = {.lex_state = 2}, + [635] = {.lex_state = 17}, + [636] = {.lex_state = 17}, + [637] = {.lex_state = 42}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 43}, + [640] = {.lex_state = 699}, + [641] = {.lex_state = 699}, + [642] = {.lex_state = 35}, + [643] = {.lex_state = 35}, + [644] = {.lex_state = 35}, + [645] = {.lex_state = 699}, + [646] = {.lex_state = 67}, + [647] = {.lex_state = 4}, + [648] = {.lex_state = 28}, + [649] = {.lex_state = 699}, + [650] = {.lex_state = 2}, + [651] = {.lex_state = 699}, + [652] = {.lex_state = 699}, + [653] = {.lex_state = 699}, + [654] = {.lex_state = 4}, + [655] = {.lex_state = 2}, + [656] = {.lex_state = 699}, + [657] = {.lex_state = 0}, + [658] = {.lex_state = 0}, + [659] = {.lex_state = 4}, + [660] = {.lex_state = 2}, + [661] = {.lex_state = 699}, + [662] = {.lex_state = 0}, + [663] = {.lex_state = 699}, + [664] = {.lex_state = 4}, + [665] = {.lex_state = 699}, + [666] = {.lex_state = 28}, + [667] = {.lex_state = 42}, + [668] = {.lex_state = 4}, + [669] = {.lex_state = 34}, + [670] = {.lex_state = 699}, + [671] = {.lex_state = 34}, + [672] = {.lex_state = 34}, + [673] = {.lex_state = 58}, + [674] = {.lex_state = 699}, + [675] = {.lex_state = 34}, + [676] = {.lex_state = 699}, + [677] = {.lex_state = 34}, + [678] = {.lex_state = 699}, + [679] = {.lex_state = 699}, + [680] = {.lex_state = 699}, + [681] = {.lex_state = 699}, + [682] = {.lex_state = 699}, + [683] = {.lex_state = 699}, + [684] = {.lex_state = 34}, + [685] = {.lex_state = 34}, + [686] = {.lex_state = 34}, + [687] = {.lex_state = 699}, + [688] = {.lex_state = 4}, + [689] = {.lex_state = 699}, + [690] = {.lex_state = 4}, + [691] = {.lex_state = 699}, + [692] = {.lex_state = 699}, + [693] = {.lex_state = 4}, + [694] = {.lex_state = 699}, + [695] = {.lex_state = 34}, + [696] = {.lex_state = 34}, + [697] = {.lex_state = 699}, + [698] = {.lex_state = 699}, + [699] = {.lex_state = 699}, [700] = {.lex_state = 0}, - [701] = {.lex_state = 11}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 2}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 617}, - [707] = {.lex_state = 0}, - [708] = {.lex_state = 48}, - [709] = {.lex_state = 11}, - [710] = {.lex_state = 11}, + [701] = {.lex_state = 699}, + [702] = {.lex_state = 699}, + [703] = {.lex_state = 699}, + [704] = {.lex_state = 2}, + [705] = {.lex_state = 699}, + [706] = {.lex_state = 699}, + [707] = {.lex_state = 699}, + [708] = {.lex_state = 699}, + [709] = {.lex_state = 699}, + [710] = {.lex_state = 699}, [711] = {.lex_state = 0}, - [712] = {.lex_state = 0}, - [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 0}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 0}, - [719] = {.lex_state = 0}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 58}, + [712] = {.lex_state = 699}, + [713] = {.lex_state = 699}, + [714] = {.lex_state = 20}, + [715] = {.lex_state = 20}, + [716] = {.lex_state = 20}, + [717] = {.lex_state = 699}, + [718] = {.lex_state = 20}, + [719] = {.lex_state = 20}, + [720] = {.lex_state = 20}, + [721] = {.lex_state = 699}, + [722] = {.lex_state = 20}, + [723] = {.lex_state = 699}, + [724] = {.lex_state = 20}, + [725] = {.lex_state = 20}, + [726] = {.lex_state = 20}, [727] = {.lex_state = 0}, - [728] = {.lex_state = 0}, + [728] = {.lex_state = 20}, [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 0}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 0}, - [738] = {.lex_state = 58}, - [739] = {.lex_state = 0}, + [730] = {.lex_state = 20}, + [731] = {.lex_state = 699}, + [732] = {.lex_state = 20}, + [733] = {.lex_state = 699}, + [734] = {.lex_state = 699}, + [735] = {.lex_state = 20}, + [736] = {.lex_state = 20}, + [737] = {.lex_state = 699}, + [738] = {.lex_state = 28}, + [739] = {.lex_state = 699}, [740] = {.lex_state = 0}, - [741] = {.lex_state = 11}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 48}, + [741] = {.lex_state = 699}, + [742] = {.lex_state = 62}, + [743] = {.lex_state = 3}, [744] = {.lex_state = 0}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 0}, + [745] = {.lex_state = 699}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 699}, [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 0}, - [751] = {.lex_state = 11}, - [752] = {.lex_state = 0}, - [753] = {.lex_state = 0}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 0}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 58}, - [760] = {.lex_state = 23}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 0}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 41}, - [771] = {.lex_state = 617}, - [772] = {.lex_state = 0}, - [773] = {.lex_state = 617}, + [749] = {.lex_state = 62}, + [750] = {.lex_state = 62}, + [751] = {.lex_state = 699}, + [752] = {.lex_state = 699}, + [753] = {.lex_state = 699}, + [754] = {.lex_state = 699}, + [755] = {.lex_state = 699}, + [756] = {.lex_state = 68}, + [757] = {.lex_state = 699}, + [758] = {.lex_state = 699}, + [759] = {.lex_state = 699}, + [760] = {.lex_state = 699}, + [761] = {.lex_state = 699}, + [762] = {.lex_state = 699}, + [763] = {.lex_state = 699}, + [764] = {.lex_state = 699}, + [765] = {.lex_state = 60}, + [766] = {.lex_state = 70}, + [767] = {.lex_state = 699}, + [768] = {.lex_state = 699}, + [769] = {.lex_state = 28}, + [770] = {.lex_state = 699}, + [771] = {.lex_state = 699}, + [772] = {.lex_state = 699}, + [773] = {.lex_state = 41}, [774] = {.lex_state = 0}, - [775] = {.lex_state = 0}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, + [775] = {.lex_state = 699}, + [776] = {.lex_state = 699}, + [777] = {.lex_state = 699}, [778] = {.lex_state = 0}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 617}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 11}, - [789] = {.lex_state = 617}, - [790] = {.lex_state = 617}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 11}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 41}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 11}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 0}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 58}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 55}, - [808] = {.lex_state = 58}, - [809] = {.lex_state = 0}, + [779] = {.lex_state = 699}, + [780] = {.lex_state = 699}, + [781] = {.lex_state = 699}, + [782] = {.lex_state = 699}, + [783] = {.lex_state = 699}, + [784] = {.lex_state = 699}, + [785] = {.lex_state = 699}, + [786] = {.lex_state = 699}, + [787] = {.lex_state = 699}, + [788] = {.lex_state = 699}, + [789] = {.lex_state = 699}, + [790] = {.lex_state = 68}, + [791] = {.lex_state = 699}, + [792] = {.lex_state = 699}, + [793] = {.lex_state = 699}, + [794] = {.lex_state = 699}, + [795] = {.lex_state = 699}, + [796] = {.lex_state = 699}, + [797] = {.lex_state = 70}, + [798] = {.lex_state = 699}, + [799] = {.lex_state = 699}, + [800] = {.lex_state = 699}, + [801] = {.lex_state = 699}, + [802] = {.lex_state = 64}, + [803] = {.lex_state = 699}, + [804] = {.lex_state = 699}, + [805] = {.lex_state = 699}, + [806] = {.lex_state = 699}, + [807] = {.lex_state = 699}, + [808] = {.lex_state = 699}, + [809] = {.lex_state = 699}, [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 47}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 617}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 11}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 11}, - [821] = {.lex_state = 0}, + [811] = {.lex_state = 699}, + [812] = {.lex_state = 699}, + [813] = {.lex_state = 28}, + [814] = {.lex_state = 78}, + [815] = {.lex_state = 699}, + [816] = {.lex_state = 699}, + [817] = {.lex_state = 699}, + [818] = {.lex_state = 699}, + [819] = {.lex_state = 699}, + [820] = {.lex_state = 0}, + [821] = {.lex_state = 699}, [822] = {.lex_state = 0}, [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 11}, - [828] = {.lex_state = 0}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 617}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 11}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 62}, - [839] = {.lex_state = 61}, + [824] = {.lex_state = 72}, + [825] = {.lex_state = 699}, + [826] = {.lex_state = 44}, + [827] = {.lex_state = 699}, + [828] = {.lex_state = 28}, + [829] = {.lex_state = 699}, + [830] = {.lex_state = 699}, + [831] = {.lex_state = 699}, + [832] = {.lex_state = 0}, + [833] = {.lex_state = 699}, + [834] = {.lex_state = 699}, + [835] = {.lex_state = 699}, + [836] = {.lex_state = 28}, + [837] = {.lex_state = 699}, + [838] = {.lex_state = 699}, + [839] = {.lex_state = 71}, [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 11}, - [843] = {.lex_state = 0}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 617}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 11}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 11}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, + [841] = {.lex_state = 65}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 699}, + [844] = {.lex_state = 699}, + [845] = {.lex_state = 699}, + [846] = {.lex_state = 72}, + [847] = {.lex_state = 699}, + [848] = {.lex_state = 699}, + [849] = {.lex_state = 699}, + [850] = {.lex_state = 20}, + [851] = {.lex_state = 28}, + [852] = {.lex_state = 699}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 28}, + [855] = {.lex_state = 699}, + [856] = {.lex_state = 699}, [857] = {.lex_state = 0}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, - [860] = {.lex_state = 61}, + [858] = {.lex_state = 699}, + [859] = {.lex_state = 699}, + [860] = {.lex_state = 699}, [861] = {.lex_state = 0}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, + [862] = {.lex_state = 3}, + [863] = {.lex_state = 699}, [864] = {.lex_state = 0}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 61}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 11}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 31}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, + [865] = {.lex_state = 699}, + [866] = {.lex_state = 699}, + [867] = {.lex_state = 699}, + [868] = {.lex_state = 699}, + [869] = {.lex_state = 73}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 28}, + [872] = {.lex_state = 699}, + [873] = {.lex_state = 699}, + [874] = {.lex_state = 699}, + [875] = {.lex_state = 20}, + [876] = {.lex_state = 699}, + [877] = {.lex_state = 699}, + [878] = {.lex_state = 699}, + [879] = {.lex_state = 699}, [880] = {.lex_state = 0}, [881] = {.lex_state = 0}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 11}, - [884] = {.lex_state = 0}, + [882] = {.lex_state = 699}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 20}, [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 61}, + [886] = {.lex_state = 699}, + [887] = {.lex_state = 20}, + [888] = {.lex_state = 20}, [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, + [890] = {.lex_state = 20}, [891] = {.lex_state = 0}, - [892] = {.lex_state = 11}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 11}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 20}, + [894] = {.lex_state = 699}, + [895] = {.lex_state = 73}, + [896] = {.lex_state = 699}, [897] = {.lex_state = 0}, [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, + [899] = {.lex_state = 699}, + [900] = {.lex_state = 59}, + [901] = {.lex_state = 699}, [902] = {.lex_state = 0}, - [903] = {.lex_state = 47}, - [904] = {.lex_state = 11}, - [905] = {.lex_state = 11}, + [903] = {.lex_state = 29}, + [904] = {.lex_state = 20}, + [905] = {.lex_state = 699}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 43}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 11}, - [912] = {.lex_state = 11}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 11}, - [915] = {.lex_state = 0}, + [908] = {.lex_state = 20}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 20}, + [911] = {.lex_state = 73}, + [912] = {.lex_state = 699}, + [913] = {.lex_state = 699}, + [914] = {.lex_state = 699}, + [915] = {.lex_state = 29}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 617}, - [918] = {.lex_state = 11}, - [919] = {.lex_state = 59}, - [920] = {.lex_state = 11}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 11}, - [923] = {.lex_state = 11}, - [924] = {.lex_state = 617}, - [925] = {.lex_state = 31}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 11}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 11}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 11}, - [935] = {.lex_state = 11}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 11}, - [938] = {.lex_state = 11}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 11}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 11}, - [944] = {.lex_state = 617}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 0}, + [917] = {.lex_state = 29}, + [918] = {.lex_state = 699}, + [919] = {.lex_state = 29}, + [920] = {.lex_state = 56}, + [921] = {.lex_state = 3}, + [922] = {.lex_state = 20}, + [923] = {.lex_state = 29}, + [924] = {.lex_state = 73}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 20}, + [927] = {.lex_state = 20}, + [928] = {.lex_state = 29}, + [929] = {.lex_state = 699}, + [930] = {.lex_state = 29}, + [931] = {.lex_state = 699}, + [932] = {.lex_state = 20}, + [933] = {.lex_state = 29}, + [934] = {.lex_state = 61}, + [935] = {.lex_state = 3}, + [936] = {.lex_state = 29}, + [937] = {.lex_state = 699}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 20}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 29}, + [942] = {.lex_state = 69}, + [943] = {.lex_state = 29}, + [944] = {.lex_state = 699}, + [945] = {.lex_state = 29}, + [946] = {.lex_state = 73}, + [947] = {.lex_state = 29}, + [948] = {.lex_state = 699}, + [949] = {.lex_state = 29}, + [950] = {.lex_state = 29}, + [951] = {.lex_state = 56}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 11}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 11}, - [959] = {.lex_state = 11}, - [960] = {.lex_state = 11}, + [953] = {.lex_state = 73}, + [954] = {.lex_state = 699}, + [955] = {.lex_state = 73}, + [956] = {.lex_state = 699}, + [957] = {.lex_state = 73}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 11}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 11}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 11}, + [965] = {.lex_state = 20}, + [966] = {.lex_state = 20}, + [967] = {.lex_state = 699}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 20}, + [970] = {.lex_state = 0}, [971] = {.lex_state = 0}, - [972] = {.lex_state = 0}, + [972] = {.lex_state = 20}, [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, [977] = {.lex_state = 0}, - [978] = {.lex_state = 11}, - [979] = {.lex_state = 11}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, + [981] = {.lex_state = 77}, [982] = {.lex_state = 0}, - [983] = {.lex_state = 11}, + [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, - [987] = {.lex_state = 11}, - [988] = {.lex_state = 11}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 11}, + [990] = {.lex_state = 0}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, [994] = {.lex_state = 0}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 617}, + [997] = {.lex_state = 76}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 11}, - [1001] = {.lex_state = 11}, - [1002] = {.lex_state = 617}, + [999] = {.lex_state = 77}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 62}, + [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 11}, + [1004] = {.lex_state = 20}, + [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 11}, - [1010] = {.lex_state = 0}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 20}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 11}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 11}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 699}, + [1015] = {.lex_state = 20}, + [1016] = {.lex_state = 2}, + [1017] = {.lex_state = 20}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, + [1023] = {.lex_state = 76}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 11}, - [1027] = {.lex_state = 617}, + [1026] = {.lex_state = 3}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 11}, + [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 11}, + [1033] = {.lex_state = 20}, + [1034] = {.lex_state = 0}, [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 11}, + [1036] = {.lex_state = 66}, [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 617}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 11}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 2}, + [1040] = {.lex_state = 20}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, + [1042] = {.lex_state = 20}, [1043] = {.lex_state = 0}, [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 11}, + [1046] = {.lex_state = 0}, [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 617}, - [1049] = {.lex_state = 0}, + [1048] = {.lex_state = 76}, + [1049] = {.lex_state = 75}, [1050] = {.lex_state = 0}, [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 11}, - [1054] = {.lex_state = 31}, - [1055] = {.lex_state = 11}, + [1052] = {.lex_state = 699}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 0}, + [1055] = {.lex_state = 0}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 11}, - [1059] = {.lex_state = 0}, + [1058] = {.lex_state = 0}, + [1059] = {.lex_state = 62}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, + [1063] = {.lex_state = 20}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 11}, + [1069] = {.lex_state = 57}, + [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, + [1073] = {.lex_state = 20}, + [1074] = {.lex_state = 57}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 617}, + [1077] = {.lex_state = 0}, [1078] = {.lex_state = 0}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, @@ -11908,14 +13459,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1082] = {.lex_state = 0}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 11}, + [1085] = {.lex_state = 20}, + [1086] = {.lex_state = 20}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 0}, + [1088] = {.lex_state = 20}, + [1089] = {.lex_state = 699}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 617}, + [1091] = {.lex_state = 2}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, @@ -11923,21 +13474,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1097] = {.lex_state = 0}, [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 11}, + [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 11}, - [1104] = {.lex_state = 11}, + [1103] = {.lex_state = 20}, + [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, + [1107] = {.lex_state = 20}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 617}, + [1112] = {.lex_state = 20}, + [1113] = {.lex_state = 20}, + [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, @@ -11945,51 +13496,427 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 20}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 11}, - [1126] = {.lex_state = 11}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, + [1124] = {.lex_state = 20}, + [1125] = {.lex_state = 0}, + [1126] = {.lex_state = 20}, + [1127] = {.lex_state = 2}, + [1128] = {.lex_state = 20}, [1129] = {.lex_state = 0}, [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 11}, - [1132] = {.lex_state = 617}, - [1133] = {.lex_state = 0}, + [1131] = {.lex_state = 20}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 20}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 11}, - [1137] = {.lex_state = 0}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 20}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 617}, + [1140] = {.lex_state = 20}, [1141] = {.lex_state = 0}, [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, + [1144] = {.lex_state = 20}, + [1145] = {.lex_state = 74}, [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, + [1148] = {.lex_state = 76}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, + [1152] = {.lex_state = 20}, [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 617}, + [1154] = {.lex_state = 20}, + [1155] = {.lex_state = 699}, + [1156] = {.lex_state = 20}, + [1157] = {.lex_state = 20}, + [1158] = {.lex_state = 56}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 20}, + [1161] = {.lex_state = 20}, + [1162] = {.lex_state = 20}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 0}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 20}, + [1170] = {.lex_state = 20}, + [1171] = {.lex_state = 20}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 61}, + [1174] = {.lex_state = 20}, + [1175] = {.lex_state = 0}, + [1176] = {.lex_state = 20}, + [1177] = {.lex_state = 20}, + [1178] = {.lex_state = 20}, + [1179] = {.lex_state = 20}, + [1180] = {.lex_state = 20}, + [1181] = {.lex_state = 0}, + [1182] = {.lex_state = 20}, + [1183] = {.lex_state = 0}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 699}, + [1186] = {.lex_state = 20}, + [1187] = {.lex_state = 20}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 20}, + [1190] = {.lex_state = 20}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 20}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 699}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 699}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 699}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 0}, + [1205] = {.lex_state = 20}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 20}, + [1208] = {.lex_state = 20}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 20}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 20}, + [1215] = {.lex_state = 0}, + [1216] = {.lex_state = 20}, + [1217] = {.lex_state = 20}, + [1218] = {.lex_state = 0}, + [1219] = {.lex_state = 20}, + [1220] = {.lex_state = 20}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 20}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 699}, + [1226] = {.lex_state = 20}, + [1227] = {.lex_state = 20}, + [1228] = {.lex_state = 20}, + [1229] = {.lex_state = 0}, + [1230] = {.lex_state = 20}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 0}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 20}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 0}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 20}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 20}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 0}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 699}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 0}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 0}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 20}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 0}, + [1280] = {.lex_state = 20}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 0}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 699}, + [1300] = {.lex_state = 0}, + [1301] = {.lex_state = 0}, + [1302] = {.lex_state = 0}, + [1303] = {.lex_state = 0}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 0}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, + [1310] = {.lex_state = 0}, + [1311] = {.lex_state = 0}, + [1312] = {.lex_state = 0}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, + [1316] = {.lex_state = 0}, + [1317] = {.lex_state = 0}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 699}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 0}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, + [1328] = {.lex_state = 0}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 699}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 20}, + [1334] = {.lex_state = 0}, + [1335] = {.lex_state = 25}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 699}, + [1340] = {.lex_state = 699}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 0}, + [1351] = {.lex_state = 0}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 0}, + [1362] = {.lex_state = 0}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 0}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 74}, + [1369] = {.lex_state = 0}, + [1370] = {.lex_state = 0}, + [1371] = {.lex_state = 0}, + [1372] = {.lex_state = 0}, + [1373] = {.lex_state = 0}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 699}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 0}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 0}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 0}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 0}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 2}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 0}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 699}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 20}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 2}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 0}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 699}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 20}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 2}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 20}, + [1472] = {.lex_state = 0}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 20}, + [1480] = {.lex_state = 699}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 0}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 20}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 20}, + [1492] = {.lex_state = 0}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 20}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 25}, + [1511] = {.lex_state = 25}, + [1512] = {.lex_state = 25}, + [1513] = {.lex_state = 25}, + [1514] = {.lex_state = 25}, + [1515] = {.lex_state = 25}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 20}, + [1523] = {.lex_state = 20}, + [1524] = {.lex_state = 20}, + [1525] = {.lex_state = 20}, + [1526] = {.lex_state = 20}, + [1527] = {.lex_state = 20}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_SEMI] = 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_create_type_statement_token1] = ACTIONS(1), + [aux_sym_create_type_statement_token2] = ACTIONS(1), + [aux_sym_create_type_statement_token3] = ACTIONS(1), + [aux_sym_create_type_statement_token4] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RPAREN] = 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), @@ -12000,22 +13927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_update_set_token1] = ACTIONS(1), [aux_sym_create_table_statement_token1] = ACTIONS(1), [aux_sym_create_table_statement_token2] = ACTIONS(1), - [aux_sym_create_table_statement_token3] = 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_token2] = 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_index_includes_token1] = ACTIONS(1), [aux_sym_delete_statement_token1] = ACTIONS(1), [aux_sym_delete_statement_token2] = ACTIONS(1), - [aux_sym_delete_statement_token3] = 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), @@ -12023,9 +13946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_alter_column_action_token4] = ACTIONS(1), [aux_sym_constraint_when_token1] = ACTIONS(1), - [aux_sym_constraint_when_token2] = ACTIONS(1), [aux_sym_constraint_when_token3] = ACTIONS(1), [aux_sym_constraint_when_token4] = ACTIONS(1), [aux_sym_table_constraint_ty_token1] = ACTIONS(1), @@ -12049,7 +13970,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_grant_targets_token7] = ACTIONS(1), [aux_sym_grant_targets_token8] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), - [aux_sym_sequence_increment_token1] = ACTIONS(1), [aux_sym_sequence_increment_token2] = ACTIONS(1), [aux_sym_sequence_min_token1] = ACTIONS(1), [aux_sym_sequence_max_token1] = ACTIONS(1), @@ -12069,6 +13989,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_trigger_scope_token3] = ACTIONS(1), [aux_sym_trigger_exec_token1] = ACTIONS(1), [aux_sym_trigger_cond_token1] = 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), [aux_sym_return_statement_token1] = ACTIONS(1), [aux_sym_return_statement_token2] = ACTIONS(1), [aux_sym_perform_statement_token1] = ACTIONS(1), @@ -12077,12 +14007,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_into_token1] = ACTIONS(1), [aux_sym_select_having_token1] = ACTIONS(1), [aux_sym_select_limit_token1] = ACTIONS(1), - [aux_sym_select_limit_token2] = 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), @@ -12092,7 +14022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_function_volatility_token2] = ACTIONS(1), [aux_sym_function_volatility_token3] = ACTIONS(1), [aux_sym_body_token1] = ACTIONS(1), - [aux_sym_body_token2] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), [aux_sym_declarations_token1] = ACTIONS(1), [anon_sym_COLON_EQ] = ACTIONS(1), @@ -12101,13 +14030,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_temporary_token1] = ACTIONS(1), [aux_sym_temporary_token2] = ACTIONS(1), [aux_sym_if_not_exists_token1] = ACTIONS(1), - [aux_sym_if_not_exists_token2] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [aux_sym_predefined_types_token1] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [aux_sym_string_token1] = ACTIONS(1), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1), [aux_sym_time_expression_token1] = ACTIONS(1), [aux_sym_time_expression_token2] = ACTIONS(1), [aux_sym_time_expression_token3] = ACTIONS(1), @@ -12130,27 +14059,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1144), - [sym__statement] = STATE(1139), - [sym_insert_statement] = STATE(1139), - [sym_create_table_statement] = STATE(1139), - [sym_create_schema_statement] = STATE(1139), - [sym_create_index_statement] = STATE(1139), - [sym_delete_statement] = STATE(1139), - [sym_alter_table_statement] = STATE(1139), - [sym_grant_statement] = STATE(1139), - [sym_psql_statement] = STATE(441), - [sym_create_sequence_statement] = STATE(1139), - [sym_create_trigger_statement] = STATE(1139), - [sym_do_block] = STATE(1139), - [sym_select_statement] = STATE(1139), - [sym_with_query] = STATE(706), - [sym_create_function_statement] = STATE(1139), - [aux_sym_source_file_repeat1] = STATE(128), + [sym_source_file] = STATE(1498), + [sym__statement] = STATE(1496), + [sym_create_type_statement] = STATE(1496), + [sym_insert_statement] = STATE(1496), + [sym_create_table_statement] = STATE(1496), + [sym_create_schema_statement] = STATE(1496), + [sym_create_index_statement] = STATE(1496), + [sym_delete_statement] = STATE(1496), + [sym_alter_table_statement] = STATE(1496), + [sym_grant_statement] = STATE(1496), + [sym_psql_statement] = STATE(640), + [sym_create_sequence_statement] = STATE(1496), + [sym_create_trigger_statement] = STATE(1496), + [sym_do_block] = STATE(1496), + [sym_select_statement] = STATE(1496), + [sym_with_query] = STATE(967), + [sym_create_function_statement] = STATE(1496), + [aux_sym_source_file_repeat1] = STATE(210), [ts_builtin_sym_end] = ACTIONS(5), - [aux_sym_insert_statement_token1] = ACTIONS(7), - [aux_sym_insert_conflict_token3] = ACTIONS(9), - [aux_sym_create_table_statement_token1] = ACTIONS(11), + [aux_sym_create_type_statement_token1] = ACTIONS(7), + [aux_sym_insert_statement_token1] = ACTIONS(9), + [aux_sym_insert_conflict_token3] = ACTIONS(11), [aux_sym_delete_statement_token1] = ACTIONS(13), [aux_sym_alter_table_statement_token1] = ACTIONS(15), [aux_sym_grant_statement_token1] = ACTIONS(17), @@ -12159,30 +14089,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_select_statement_token1] = ACTIONS(23), [sym_comment] = ACTIONS(3), }, + [2] = { + [anon_sym_SEMI] = ACTIONS(25), + [aux_sym_create_type_statement_token2] = ACTIONS(25), + [aux_sym_create_type_statement_token3] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(25), + [aux_sym_insert_statement_token2] = ACTIONS(25), + [aux_sym_insert_items_token1] = ACTIONS(25), + [aux_sym_insert_items_token2] = ACTIONS(25), + [aux_sym_insert_conflict_token1] = ACTIONS(25), + [aux_sym_insert_conflict_token3] = ACTIONS(25), + [aux_sym_insert_conflict_token6] = ACTIONS(25), + [aux_sym_conflict_target_token1] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(25), + [aux_sym_update_set_token1] = ACTIONS(27), + [aux_sym_insert_returning_token1] = ACTIONS(25), + [aux_sym_schema_role_token1] = ACTIONS(25), + [aux_sym_create_index_statement_token1] = ACTIONS(25), + [aux_sym_index_using_token1] = ACTIONS(25), + [aux_sym_alter_table_statement_token1] = ACTIONS(25), + [aux_sym_alter_table_action_token1] = ACTIONS(25), + [aux_sym_alter_table_action_token3] = ACTIONS(25), + [aux_sym_alter_column_action_token1] = ACTIONS(25), + [aux_sym_alter_column_action_token2] = ACTIONS(25), + [aux_sym_constraint_when_token1] = ACTIONS(25), + [aux_sym_table_constraint_ty_token1] = ACTIONS(25), + [aux_sym_table_constraint_ty_token2] = ACTIONS(25), + [aux_sym_table_constraint_ty_token4] = ACTIONS(25), + [aux_sym_constraint_foreign_key_token1] = ACTIONS(25), + [aux_sym_fk_ref_action_token1] = ACTIONS(27), + [aux_sym_fk_ref_action_token3] = ACTIONS(25), + [aux_sym_fk_ref_action_token4] = ACTIONS(25), + [aux_sym_alter_table_rename_column_token1] = ACTIONS(25), + [aux_sym_alter_table_rename_column_token2] = ACTIONS(25), + [aux_sym_sequence_increment_token1] = ACTIONS(25), + [aux_sym_sequence_increment_token2] = ACTIONS(25), + [aux_sym_sequence_min_token1] = ACTIONS(25), + [aux_sym_sequence_max_token1] = ACTIONS(25), + [aux_sym_sequence_start_token1] = ACTIONS(25), + [aux_sym_sequence_start_token2] = ACTIONS(25), + [aux_sym_sequence_cache_token1] = ACTIONS(25), + [aux_sym_sequence_cycle_token1] = ACTIONS(25), + [aux_sym_sequence_owned_token1] = ACTIONS(25), + [aux_sym_trigger_when_token1] = ACTIONS(25), + [aux_sym_trigger_when_token2] = ACTIONS(25), + [aux_sym_trigger_when_token3] = ACTIONS(25), + [aux_sym_trigger_event_token2] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [aux_sym_for_statement_token2] = ACTIONS(25), + [aux_sym_if_statement_token2] = ACTIONS(25), + [aux_sym_select_statement_token1] = ACTIONS(25), + [aux_sym_select_limit_token1] = ACTIONS(25), + [aux_sym_select_offset_token1] = ACTIONS(25), + [aux_sym_select_offset_token2] = ACTIONS(25), + [aux_sym_join_item_token1] = ACTIONS(25), + [aux_sym_join_item_token2] = ACTIONS(25), + [aux_sym_join_item_token3] = ACTIONS(25), + [aux_sym_join_type_token1] = ACTIONS(25), + [aux_sym_join_type_token2] = ACTIONS(25), + [aux_sym_join_type_token4] = ACTIONS(25), + [aux_sym_join_type_token5] = ACTIONS(25), + [aux_sym_function_volatility_token1] = ACTIONS(25), + [aux_sym_function_volatility_token2] = ACTIONS(25), + [aux_sym_function_volatility_token3] = ACTIONS(25), + [anon_sym_DOLLAR] = ACTIONS(25), + [aux_sym_where_filter_token1] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(25), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(27), + [aux_sym_time_expression_token1] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(27), + [anon_sym_PERCENT] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(27), + [anon_sym_GT] = ACTIONS(27), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [sym_cast] = ACTIONS(25), + [aux_sym_and_token1] = ACTIONS(25), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 6, + [0] = 3, ACTIONS(3), 1, sym_comment, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(27), 4, + ACTIONS(31), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(25), 40, + ACTIONS(29), 49, anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, anon_sym_EQ, @@ -12197,9 +14207,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, + 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_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_create_function_statement_token1, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [62] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(33), 49, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_create_function_statement_token1, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [124] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(39), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 43, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -12218,63 +14356,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [62] = 15, + [190] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, + ACTIONS(43), 1, anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, ACTIONS(45), 1, + sym_cast, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(39), 4, + aux_sym_update_set_token1, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 40, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, - ACTIONS(47), 1, + aux_sym_and_token1, + [262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + sym_cast, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(39), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 42, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [330] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + aux_sym_update_set_token1, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, sym_cast, ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(35), 2, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(43), 2, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - STATE(237), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(29), 28, + ACTIONS(37), 33, anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -12283,55 +14547,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [142] = 12, + aux_sym_and_token1, + [412] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(43), 1, anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, sym_cast, - STATE(169), 1, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(59), 1, + aux_sym_update_set_token1, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(27), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(35), 2, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(237), 2, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, sym_and, sym_or, - ACTIONS(25), 35, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(57), 33, anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, - anon_sym_EQ, aux_sym_insert_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_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_sequence_increment_token2, aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -12340,167 +14615,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, aux_sym_and_token1, - [216] = 3, + [494] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 4, + ACTIONS(43), 1, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(51), 44, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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_create_function_statement_token1, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - 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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [272] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, sym_cast, - STATE(169), 1, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(35), 2, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(55), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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_and_token1, - [348] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_cast, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(57), 4, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(39), 3, + aux_sym_update_set_token1, anon_sym_LT, anon_sym_GT, - ACTIONS(55), 39, + ACTIONS(37), 39, anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_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_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_sequence_increment_token2, aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -12509,171 +14675,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, aux_sym_and_token1, - [412] = 3, + [570] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(61), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(59), 44, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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_create_function_statement_token1, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - 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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [468] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, sym_cast, - STATE(169), 1, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(25), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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_and_token1, - [544] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_cast, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(27), 4, + ACTIONS(59), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(25), 39, + ACTIONS(57), 42, anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_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_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_sequence_increment_token2, aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -12691,929 +14742,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, aux_sym_and_token1, - [608] = 9, + [638] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(43), 1, anon_sym_SLASH, - ACTIONS(47), 1, + ACTIONS(45), 1, sym_cast, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(27), 3, + ACTIONS(49), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(25), 37, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, + ACTIONS(51), 1, anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [676] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(47), 1, - sym_cast, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(27), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(25), 36, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [748] = 5, - ACTIONS(3), 1, - sym_comment, + ACTIONS(63), 1, + aux_sym_update_set_token1, ACTIONS(65), 1, - anon_sym_LPAREN, + aux_sym_trigger_event_token2, ACTIONS(67), 1, - aux_sym_time_expression_token1, - ACTIONS(69), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(63), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, aux_sym_and_token1, - [806] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(77), 1, - aux_sym_delete_statement_token2, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(83), 1, - aux_sym_grant_roles_token2, - ACTIONS(85), 1, - aux_sym_select_having_token1, - ACTIONS(87), 1, - aux_sym_select_limit_token1, - ACTIONS(89), 1, - aux_sym_select_limit_token2, - ACTIONS(91), 1, - aux_sym_select_order_by_token1, - ACTIONS(93), 1, - aux_sym_where_filter_token1, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(107), 1, - sym_number, - ACTIONS(109), 1, - sym_identifier, - STATE(192), 1, - sym_not, - STATE(273), 1, - sym_select_item, - STATE(333), 1, - sym_into, - STATE(350), 1, - sym_select_from, - STATE(395), 1, - sym_select_where, - STATE(420), 1, - sym_select_group_by, - STATE(463), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(506), 1, - sym_select_order_by, - STATE(578), 1, - sym_select_limit, - ACTIONS(71), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(193), 2, - sym_minus, - sym_plus, - ACTIONS(73), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - STATE(38), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(113), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(111), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(115), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(119), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(123), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1126] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(77), 1, - aux_sym_delete_statement_token2, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(83), 1, - aux_sym_grant_roles_token2, - ACTIONS(85), 1, - aux_sym_select_having_token1, - ACTIONS(87), 1, - aux_sym_select_limit_token1, - ACTIONS(89), 1, - aux_sym_select_limit_token2, - ACTIONS(91), 1, - aux_sym_select_order_by_token1, - ACTIONS(93), 1, - aux_sym_where_filter_token1, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(107), 1, - sym_number, - ACTIONS(109), 1, - sym_identifier, - STATE(192), 1, - sym_not, - STATE(264), 1, - sym_select_item, - STATE(331), 1, - sym_into, - STATE(356), 1, - sym_select_from, - STATE(397), 1, - sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(193), 2, - sym_minus, - sym_plus, - ACTIONS(129), 3, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - STATE(38), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [1238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(131), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(137), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(135), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(139), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 4, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(143), 40, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_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_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_trigger_event_token2, - aux_sym_select_limit_token1, - aux_sym_select_limit_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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [1446] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(83), 1, - aux_sym_grant_roles_token2, - ACTIONS(85), 1, - aux_sym_select_having_token1, - ACTIONS(87), 1, - aux_sym_select_limit_token1, - ACTIONS(89), 1, - aux_sym_select_limit_token2, - ACTIONS(91), 1, - aux_sym_select_order_by_token1, - ACTIONS(93), 1, - aux_sym_where_filter_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, - aux_sym_delete_statement_token2, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(163), 1, - sym_number, - ACTIONS(165), 1, - sym_identifier, - STATE(205), 1, - sym_not, - STATE(308), 1, - sym_select_item, - STATE(350), 1, - sym_select_from, - STATE(367), 1, - sym_into, - STATE(395), 1, - sym_select_where, - STATE(420), 1, - sym_select_group_by, - STATE(463), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(506), 1, - sym_select_order_by, - STATE(578), 1, - sym_select_limit, - ACTIONS(71), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(66), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [1556] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(83), 1, - aux_sym_grant_roles_token2, - ACTIONS(85), 1, - aux_sym_select_having_token1, - ACTIONS(87), 1, - aux_sym_select_limit_token1, - ACTIONS(89), 1, - aux_sym_select_limit_token2, - ACTIONS(91), 1, - aux_sym_select_order_by_token1, - ACTIONS(93), 1, - aux_sym_where_filter_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(151), 1, - aux_sym_delete_statement_token2, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(163), 1, - sym_number, - ACTIONS(165), 1, - sym_identifier, - STATE(205), 1, - sym_not, - STATE(318), 1, - sym_select_item, - STATE(356), 1, - sym_select_from, - STATE(362), 1, - sym_into, - STATE(397), 1, - sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(66), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [1666] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - aux_sym_trigger_event_token2, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, + STATE(231), 1, sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(25), 20, + ACTIONS(61), 31, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_sequence_increment_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -13622,259 +14812,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - aux_sym_and_token1, - [1735] = 7, + [724] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(57), 5, - aux_sym_trigger_event_token2, + ACTIONS(43), 1, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(55), 29, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [1790] = 15, - ACTIONS(3), 1, - sym_comment, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, + sym_cast, ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, anon_sym_DASH, - ACTIONS(173), 1, + ACTIONS(51), 1, anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(29), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [1861] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(167), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(27), 3, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(25), 26, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [1924] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - STATE(219), 1, - sym_other_op, - STATE(221), 1, + STATE(231), 1, sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(179), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [1995] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(167), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(27), 3, - aux_sym_trigger_event_token2, + ACTIONS(39), 3, + aux_sym_update_set_token1, anon_sym_LT, anon_sym_GT, - ACTIONS(25), 25, + ACTIONS(37), 38, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -13888,232 +14878,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_BANG_EQ, aux_sym_and_token1, - [2060] = 6, + [802] = 6, ACTIONS(3), 1, sym_comment, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(27), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(25), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [2113] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(167), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(27), 4, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(25), 27, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [2172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(27), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(25), 29, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - aux_sym_and_token1, - [2227] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(57), 1, - aux_sym_trigger_event_token2, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(218), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(55), 20, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - [2296] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(181), 1, + ACTIONS(71), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + ACTIONS(75), 1, + anon_sym_DOT, + ACTIONS(77), 1, aux_sym_time_expression_token1, - ACTIONS(69), 5, - aux_sym_trigger_event_token2, + ACTIONS(73), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(63), 30, + ACTIONS(69), 43, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -14132,173 +14937,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [2345] = 9, + [867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(25), 10, - 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, - anon_sym_PIPE_PIPE, - ACTIONS(27), 17, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [2400] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(195), 1, - aux_sym_delete_statement_token3, - ACTIONS(197), 1, - anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(203), 1, - sym_identifier, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(191), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(193), 10, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [2473] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(189), 1, - sym_cast, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(55), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(57), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + ACTIONS(81), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [2524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(131), 30, + ACTIONS(79), 45, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -14317,79 +14992,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [2567] = 14, + [925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(197), 1, - anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(25), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(27), 14, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym_identifier, - [2632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(137), 5, - aux_sym_trigger_event_token2, + ACTIONS(85), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(135), 30, + ACTIONS(83), 45, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -14408,168 +15047,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [2675] = 11, + [983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(197), 1, - anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(25), 9, - 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, - anon_sym_PIPE_PIPE, - ACTIONS(27), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [2734] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(197), 1, - anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(25), 8, - 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, - ACTIONS(27), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [2795] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(25), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(27), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, + ACTIONS(89), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [2844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(119), 30, + ACTIONS(87), 45, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -14588,79 +15102,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [2887] = 14, + [1041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(187), 1, - anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(197), 1, - anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(55), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(57), 14, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym_identifier, - [2952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 5, - aux_sym_trigger_event_token2, + ACTIONS(93), 5, + aux_sym_update_set_token1, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(143), 30, + ACTIONS(91), 45, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, anon_sym_EQ, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, aux_sym_join_item_token1, aux_sym_join_item_token2, aux_sym_join_item_token3, @@ -14679,44 +15157,511 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [2995] = 18, + [1099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [1157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [1215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [1273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(107), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [1331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 5, + aux_sym_update_set_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(111), 45, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_items_token1, + aux_sym_insert_conflict_token1, + aux_sym_conflict_target_token1, + anon_sym_EQ, + aux_sym_insert_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_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_sequence_increment_token2, + aux_sym_trigger_event_token2, + anon_sym_DOT_DOT, + aux_sym_for_statement_token2, + aux_sym_if_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_offset_token2, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + aux_sym_where_filter_token1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [1389] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + aux_sym_delete_statement_token2, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(153), 1, + sym_number, + ACTIONS(155), 1, + sym__identifier, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(355), 1, + sym_select_item, + STATE(377), 1, + sym_into, + STATE(461), 1, + sym_select_from, + STATE(515), 1, + sym_select_where, + STATE(544), 1, + sym_select_group_by, + STATE(581), 1, + sym_select_having, + STATE(641), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(781), 1, + sym__select_limit_offset, + ACTIONS(115), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(295), 2, + sym_minus, + sym_plus, + ACTIONS(119), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + STATE(69), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [1514] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(121), 1, + aux_sym_delete_statement_token2, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(153), 1, + sym_number, + ACTIONS(155), 1, + sym__identifier, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(349), 1, + sym_select_item, + STATE(390), 1, + sym_into, + STATE(475), 1, + sym_select_from, + STATE(513), 1, + sym_select_where, + STATE(546), 1, + sym_select_group_by, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + ACTIONS(157), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(295), 2, + sym_minus, + sym_plus, + ACTIONS(159), 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + STATE(69), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [1639] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_BSLASH, - ACTIONS(205), 1, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, aux_sym_insert_statement_token1, - ACTIONS(207), 1, + ACTIONS(165), 1, aux_sym_insert_conflict_token3, - ACTIONS(209), 1, - aux_sym_create_table_statement_token1, - ACTIONS(211), 1, + ACTIONS(167), 1, aux_sym_delete_statement_token1, - ACTIONS(213), 1, + ACTIONS(169), 1, aux_sym_alter_table_statement_token1, - ACTIONS(215), 1, + ACTIONS(171), 1, aux_sym_grant_statement_token1, - ACTIONS(217), 1, + ACTIONS(173), 1, aux_sym_sequence_start_token2, - ACTIONS(219), 1, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, aux_sym_trigger_exec_token1, - ACTIONS(221), 1, + ACTIONS(179), 1, + aux_sym_for_statement_token3, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(187), 1, + aux_sym_if_statement_token5, + ACTIONS(189), 1, aux_sym_return_statement_token1, - ACTIONS(223), 1, + ACTIONS(191), 1, aux_sym_perform_statement_token1, - ACTIONS(225), 1, + ACTIONS(193), 1, aux_sym_select_statement_token1, - ACTIONS(227), 1, - aux_sym_body_token2, - ACTIONS(229), 1, - sym_identifier, - STATE(706), 1, + ACTIONS(195), 1, + sym__identifier, + STATE(881), 1, + aux_sym_if_statement_repeat1, + STATE(967), 1, sym_with_query, - STATE(58), 2, + STATE(1284), 1, + sym_identifier, + ACTIONS(185), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + STATE(29), 2, sym__plpgsql_statement, - aux_sym_body_repeat1, - STATE(975), 18, + aux_sym_for_statement_repeat1, + STATE(1344), 22, sym__statement, + sym_create_type_statement, sym_insert_statement, sym_create_table_statement, sym_create_schema_statement, @@ -14727,6 +15672,9 @@ static const uint16_t ts_small_parse_table[] = { sym_psql_statement, sym_create_sequence_statement, sym_create_trigger_statement, + sym_for_statement, + sym_raise_statement, + sym_if_statement, sym_execute_statement, sym_assign_statement, sym_return_statement, @@ -14734,7 +15682,2988 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [3068] = 3, + [1738] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(199), 1, + aux_sym_insert_statement_token2, + ACTIONS(201), 1, + aux_sym_delete_statement_token2, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(215), 1, + sym_number, + ACTIONS(217), 1, + sym__identifier, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(378), 1, + sym_select_item, + STATE(466), 1, + sym_into, + STATE(485), 1, + sym_select_from, + STATE(530), 1, + sym_select_where, + STATE(569), 1, + sym_select_group_by, + STATE(617), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(692), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(863), 1, + sym__select_limit_offset, + ACTIONS(115), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(94), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [1861] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(199), 1, + aux_sym_insert_statement_token2, + ACTIONS(201), 1, + aux_sym_delete_statement_token2, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(215), 1, + sym_number, + ACTIONS(217), 1, + sym__identifier, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(386), 1, + sym_select_item, + STATE(478), 1, + sym_into, + STATE(486), 1, + sym_select_from, + STATE(527), 1, + sym_select_where, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(94), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [1984] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(219), 1, + aux_sym_create_type_statement_token1, + ACTIONS(222), 1, + aux_sym_insert_statement_token1, + ACTIONS(225), 1, + aux_sym_insert_conflict_token3, + ACTIONS(228), 1, + aux_sym_delete_statement_token1, + ACTIONS(231), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(234), 1, + aux_sym_grant_statement_token1, + ACTIONS(237), 1, + anon_sym_BSLASH, + ACTIONS(240), 1, + aux_sym_sequence_start_token2, + ACTIONS(243), 1, + aux_sym_trigger_scope_token1, + ACTIONS(246), 1, + aux_sym_trigger_exec_token1, + ACTIONS(251), 1, + aux_sym_raise_statement_token1, + ACTIONS(254), 1, + aux_sym_if_statement_token1, + ACTIONS(257), 1, + aux_sym_return_statement_token1, + ACTIONS(260), 1, + aux_sym_perform_statement_token1, + ACTIONS(263), 1, + aux_sym_select_statement_token1, + ACTIONS(266), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(29), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(249), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(1344), 22, + sym__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_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, + [2076] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(29), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + ACTIONS(269), 4, + aux_sym_for_statement_token3, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + aux_sym_if_statement_token5, + STATE(1344), 22, + sym__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_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, + [2168] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(119), 1, + aux_sym_for_statement_token2, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(199), 1, + aux_sym_insert_statement_token2, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(273), 1, + aux_sym_delete_statement_token2, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(287), 1, + sym_number, + ACTIONS(289), 1, + sym__identifier, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(433), 1, + sym_select_item, + STATE(485), 1, + sym_select_from, + STATE(499), 1, + sym_into, + STATE(530), 1, + sym_select_where, + STATE(569), 1, + sym_select_group_by, + STATE(617), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(692), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(863), 1, + sym__select_limit_offset, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(101), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [2290] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(127), 1, + aux_sym_grant_roles_token2, + ACTIONS(129), 1, + aux_sym_select_having_token1, + ACTIONS(131), 1, + aux_sym_select_limit_token1, + ACTIONS(133), 1, + aux_sym_select_offset_token1, + ACTIONS(135), 1, + aux_sym_select_order_by_token1, + ACTIONS(139), 1, + aux_sym_where_filter_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(159), 1, + aux_sym_for_statement_token2, + ACTIONS(199), 1, + aux_sym_insert_statement_token2, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(273), 1, + aux_sym_delete_statement_token2, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(287), 1, + sym_number, + ACTIONS(289), 1, + sym__identifier, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(442), 1, + sym_select_item, + STATE(486), 1, + sym_select_from, + STATE(496), 1, + sym_into, + STATE(527), 1, + sym_select_where, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(818), 1, + sym__select_limit_offset, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(101), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [2412] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(291), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(41), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2501] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(219), 1, + aux_sym_create_type_statement_token1, + ACTIONS(222), 1, + aux_sym_insert_statement_token1, + ACTIONS(225), 1, + aux_sym_insert_conflict_token3, + ACTIONS(228), 1, + aux_sym_delete_statement_token1, + ACTIONS(231), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(234), 1, + aux_sym_grant_statement_token1, + ACTIONS(237), 1, + anon_sym_BSLASH, + ACTIONS(240), 1, + aux_sym_sequence_start_token2, + ACTIONS(243), 1, + aux_sym_trigger_scope_token1, + ACTIONS(246), 1, + aux_sym_trigger_exec_token1, + ACTIONS(249), 1, + aux_sym_for_statement_token3, + ACTIONS(251), 1, + aux_sym_raise_statement_token1, + ACTIONS(254), 1, + aux_sym_if_statement_token1, + ACTIONS(257), 1, + aux_sym_return_statement_token1, + ACTIONS(260), 1, + aux_sym_perform_statement_token1, + ACTIONS(263), 1, + aux_sym_select_statement_token1, + ACTIONS(266), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2590] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(293), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(44), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2679] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(295), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(51), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2768] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(297), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2857] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(299), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(46), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [2946] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(301), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(42), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3035] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(303), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3124] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(305), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3213] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(295), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3302] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(307), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(49), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3391] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(299), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3480] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(309), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(40), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3569] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(307), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3658] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(311), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3747] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(293), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3836] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(309), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [3925] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(313), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(48), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [4014] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(313), 1, + aux_sym_for_statement_token3, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(34), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [4103] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(30), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1344), 22, + sym__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_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, + [4189] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(47), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [4275] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(37), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1285), 22, + sym__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_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, + [4361] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_BSLASH, + ACTIONS(161), 1, + aux_sym_create_type_statement_token1, + ACTIONS(163), 1, + aux_sym_insert_statement_token1, + ACTIONS(165), 1, + aux_sym_insert_conflict_token3, + ACTIONS(167), 1, + aux_sym_delete_statement_token1, + ACTIONS(169), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(171), 1, + aux_sym_grant_statement_token1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(175), 1, + aux_sym_trigger_scope_token1, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(181), 1, + aux_sym_raise_statement_token1, + ACTIONS(183), 1, + aux_sym_if_statement_token1, + ACTIONS(189), 1, + aux_sym_return_statement_token1, + ACTIONS(191), 1, + aux_sym_perform_statement_token1, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + STATE(967), 1, + sym_with_query, + STATE(1284), 1, + sym_identifier, + STATE(26), 2, + sym__plpgsql_statement, + aux_sym_for_statement_repeat1, + STATE(1344), 22, + sym__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_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, + [4447] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(39), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [4501] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(39), 4, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 28, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [4561] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(319), 1, + sym_cast, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(59), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(57), 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_insert_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, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [4617] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(59), 1, + aux_sym_trigger_event_token2, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(57), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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_and_token1, + [4687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(25), 35, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [4735] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(39), 3, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 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_insert_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, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [4799] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(61), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [4871] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(39), 3, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 26, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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_and_token1, + [4937] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + aux_sym_trigger_event_token2, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(37), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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_and_token1, + [5007] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(327), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [5079] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(319), 1, + sym_cast, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(39), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 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_insert_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, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [5135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + anon_sym_LPAREN, + ACTIONS(331), 1, + anon_sym_DOT, + ACTIONS(333), 1, + aux_sym_time_expression_token1, + ACTIONS(73), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(69), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(107), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5232] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(337), 1, + aux_sym_create_type_statement_token3, + ACTIONS(343), 1, + anon_sym_SLASH, + ACTIONS(345), 1, + anon_sym_DASH, + ACTIONS(347), 1, + anon_sym_PLUS, + ACTIONS(349), 1, + sym_cast, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(353), 1, + sym__identifier, + STATE(315), 1, + sym_comparison_op, + STATE(319), 1, + sym_other_op, + STATE(578), 1, + sym_identifier, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(341), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(320), 2, + sym_and, + sym_or, + ACTIONS(335), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(339), 10, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [5308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(25), 32, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_update_set_token1, + aux_sym_insert_returning_token1, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + aux_sym_index_col_nulls_token1, + aux_sym_trigger_event_token2, + aux_sym_trigger_scope_token1, + aux_sym_trigger_scope_token3, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(95), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(103), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(91), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(87), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(83), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(113), 5, @@ -14743,18 +18672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(111), 30, + ACTIONS(111), 31, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_insert_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_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -14774,135 +18704,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [3111] = 16, + [5616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, + ACTIONS(81), 5, aux_sym_trigger_event_token2, - ACTIONS(187), 1, anon_sym_SLASH, - ACTIONS(189), 1, - sym_cast, - ACTIONS(197), 1, anon_sym_DASH, - ACTIONS(199), 1, - anon_sym_PLUS, - ACTIONS(201), 1, - aux_sym_and_token1, - STATE(186), 1, - sym_other_op, - STATE(187), 1, - sym_comparison_op, - ACTIONS(43), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(185), 2, - sym_and, - sym_or, - ACTIONS(29), 3, + ACTIONS(79), 31, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5660] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(231), 12, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - sym_identifier, - [3180] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, - aux_sym_insert_statement_token1, - ACTIONS(236), 1, - aux_sym_insert_conflict_token3, - ACTIONS(239), 1, - aux_sym_create_table_statement_token1, - ACTIONS(242), 1, - aux_sym_delete_statement_token1, - ACTIONS(245), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(248), 1, - aux_sym_grant_statement_token1, - ACTIONS(251), 1, - anon_sym_BSLASH, - ACTIONS(254), 1, - aux_sym_sequence_start_token2, - ACTIONS(257), 1, - aux_sym_trigger_exec_token1, - ACTIONS(260), 1, - aux_sym_return_statement_token1, - ACTIONS(263), 1, - aux_sym_perform_statement_token1, - ACTIONS(266), 1, - aux_sym_select_statement_token1, - ACTIONS(269), 1, - aux_sym_body_token2, - ACTIONS(271), 1, - sym_identifier, - STATE(706), 1, - sym_with_query, - STATE(52), 2, - sym__plpgsql_statement, - aux_sym_body_repeat1, - STATE(975), 18, - sym__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_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [3253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 5, aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(51), 30, + ACTIONS(29), 31, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, anon_sym_EQ, aux_sym_insert_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_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -14922,471 +18786,492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, aux_sym_and_token1, - [3296] = 7, + [5704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 1, + ACTIONS(35), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(33), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, sym_cast, - STATE(186), 1, - sym_other_op, - STATE(187), 1, + aux_sym_and_token1, + [5748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 5, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(99), 31, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_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, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [5792] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(343), 1, + anon_sym_SLASH, + ACTIONS(345), 1, + anon_sym_DASH, + ACTIONS(347), 1, + anon_sym_PLUS, + ACTIONS(349), 1, + sym_cast, + STATE(315), 1, sym_comparison_op, - STATE(185), 2, + STATE(319), 1, + sym_other_op, + ACTIONS(341), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(320), 2, sym_and, sym_or, - ACTIONS(25), 12, + ACTIONS(37), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(27), 18, + ACTIONS(39), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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_and_token1, - sym_identifier, - [3347] = 3, + sym__identifier, + [5853] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 5, - aux_sym_trigger_event_token2, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(343), 1, anon_sym_SLASH, + ACTIONS(345), 1, anon_sym_DASH, + ACTIONS(347), 1, + anon_sym_PLUS, + ACTIONS(349), 1, + sym_cast, + STATE(315), 1, + sym_comparison_op, + STATE(319), 1, + sym_other_op, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(115), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, + ACTIONS(341), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + STATE(320), 2, + sym_and, + sym_or, + ACTIONS(37), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [3390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(123), 30, - anon_sym_SEMI, + ACTIONS(39), 14, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, - anon_sym_EQ, aux_sym_insert_returning_token1, + aux_sym_delete_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_limit_token2, + 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, - anon_sym_PIPE_PIPE, - sym_cast, aux_sym_and_token1, - [3433] = 3, + sym__identifier, + [5918] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(141), 5, - aux_sym_trigger_event_token2, + ACTIONS(43), 1, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(139), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [3476] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_BSLASH, - ACTIONS(205), 1, - aux_sym_insert_statement_token1, - ACTIONS(207), 1, - aux_sym_insert_conflict_token3, - ACTIONS(209), 1, - aux_sym_create_table_statement_token1, - ACTIONS(211), 1, - aux_sym_delete_statement_token1, - ACTIONS(213), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(215), 1, - aux_sym_grant_statement_token1, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(219), 1, - aux_sym_trigger_exec_token1, - ACTIONS(221), 1, - aux_sym_return_statement_token1, - ACTIONS(223), 1, - aux_sym_perform_statement_token1, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(229), 1, - sym_identifier, - ACTIONS(274), 1, - aux_sym_body_token2, - STATE(706), 1, - sym_with_query, - STATE(52), 2, - sym__plpgsql_statement, - aux_sym_body_repeat1, - STATE(975), 18, - sym__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_execute_statement, - sym_assign_statement, - sym_return_statement, - sym_perform_statement, - sym_do_block, - sym_select_statement, - sym_create_function_statement, - [3549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 5, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(59), 30, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - anon_sym_EQ, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - anon_sym_PIPE_PIPE, - sym_cast, - aux_sym_and_token1, - [3592] = 16, - ACTIONS(3), 1, - sym_comment, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(278), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_DASH, - ACTIONS(282), 1, - anon_sym_PLUS, - ACTIONS(284), 1, sym_cast, - STATE(171), 1, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, sym_comparison_op, - STATE(172), 1, + STATE(232), 1, sym_other_op, - ACTIONS(43), 2, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(173), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(29), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(231), 10, + ACTIONS(327), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, - sym_identifier, - [3659] = 12, + [5985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(278), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_DASH, - ACTIONS(282), 1, - anon_sym_PLUS, - ACTIONS(284), 1, - sym_cast, - STATE(171), 1, + STATE(315), 1, sym_comparison_op, - STATE(172), 1, + STATE(319), 1, sym_other_op, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(173), 2, + STATE(320), 2, sym_and, sym_or, - ACTIONS(25), 8, + ACTIONS(37), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(27), 14, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(39), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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_and_token1, + sym__identifier, + [6034] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(343), 1, + anon_sym_SLASH, + ACTIONS(345), 1, + anon_sym_DASH, + ACTIONS(347), 1, + anon_sym_PLUS, + ACTIONS(349), 1, + sym_cast, + ACTIONS(351), 1, + aux_sym_and_token1, + STATE(315), 1, + sym_comparison_op, + STATE(319), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(341), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(320), 2, + sym_and, + sym_or, + ACTIONS(61), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(63), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [6103] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(343), 1, + anon_sym_SLASH, + ACTIONS(345), 1, + anon_sym_DASH, + ACTIONS(347), 1, + anon_sym_PLUS, + ACTIONS(349), 1, + sym_cast, + STATE(315), 1, + sym_comparison_op, + STATE(319), 1, + sym_other_op, + ACTIONS(341), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(320), 2, + sym_and, + sym_or, + ACTIONS(37), 9, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(39), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_and_token1, - sym_identifier, - [3718] = 11, + sym__identifier, + [6162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_DASH, - ACTIONS(282), 1, - anon_sym_PLUS, - ACTIONS(284), 1, + ACTIONS(349), 1, sym_cast, - STATE(171), 1, + STATE(315), 1, sym_comparison_op, - STATE(172), 1, + STATE(319), 1, sym_other_op, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(173), 2, + STATE(320), 2, sym_and, sym_or, - ACTIONS(25), 9, + ACTIONS(37), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, - ACTIONS(27), 14, + ACTIONS(39), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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_and_token1, - sym_identifier, - [3775] = 14, + sym__identifier, + [6213] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - ACTIONS(278), 1, + ACTIONS(343), 1, anon_sym_SLASH, - ACTIONS(280), 1, + ACTIONS(345), 1, anon_sym_DASH, - ACTIONS(282), 1, + ACTIONS(347), 1, anon_sym_PLUS, - ACTIONS(284), 1, + ACTIONS(349), 1, sym_cast, - STATE(171), 1, + STATE(315), 1, sym_comparison_op, - STATE(172), 1, + STATE(319), 1, sym_other_op, - ACTIONS(43), 2, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(276), 2, + ACTIONS(341), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(173), 2, + STATE(320), 2, sym_and, sym_or, - ACTIONS(55), 3, + ACTIONS(57), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, + ACTIONS(59), 14, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_and_token1, + sym__identifier, + [6278] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 1, + sym_cast, + STATE(315), 1, + sym_comparison_op, + STATE(319), 1, + sym_other_op, + STATE(320), 2, + sym_and, + sym_or, ACTIONS(57), 12, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym_identifier, - [3838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(284), 1, - sym_cast, - STATE(171), 1, - sym_comparison_op, - STATE(172), 1, - sym_other_op, - STATE(173), 2, - sym_and, - sym_or, - ACTIONS(55), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -15399,15 +19284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, - ACTIONS(57), 16, + ACTIONS(59), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -15415,169 +19302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [3887] = 14, + sym__identifier, + [6329] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(278), 1, + ACTIONS(343), 1, anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_DASH, - ACTIONS(282), 1, - anon_sym_PLUS, - ACTIONS(284), 1, + ACTIONS(349), 1, sym_cast, - STATE(171), 1, + STATE(315), 1, sym_comparison_op, - STATE(172), 1, + STATE(319), 1, sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(276), 2, + ACTIONS(341), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(173), 2, + STATE(320), 2, sym_and, sym_or, - ACTIONS(25), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(27), 12, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - aux_sym_and_token1, - sym_identifier, - [3950] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(203), 1, - sym_identifier, - ACTIONS(278), 1, - anon_sym_SLASH, - ACTIONS(280), 1, - anon_sym_DASH, - ACTIONS(282), 1, - anon_sym_PLUS, - ACTIONS(284), 1, - sym_cast, - ACTIONS(286), 1, - aux_sym_delete_statement_token3, - STATE(171), 1, - sym_comparison_op, - STATE(172), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(173), 2, - sym_and, - sym_or, - ACTIONS(191), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(193), 8, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [4021] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(284), 1, - sym_cast, - STATE(171), 1, - sym_comparison_op, - STATE(172), 1, - sym_other_op, - STATE(173), 2, - sym_and, - sym_or, - ACTIONS(25), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - ACTIONS(27), 16, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4070] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 1, - anon_sym_SLASH, - ACTIONS(284), 1, - sym_cast, - STATE(171), 1, - sym_comparison_op, - STATE(172), 1, - sym_other_op, - ACTIONS(276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(173), 2, - sym_and, - sym_or, - ACTIONS(25), 10, + ACTIONS(37), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -15588,71 +19331,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, - ACTIONS(27), 15, + ACTIONS(39), 17, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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_and_token1, - sym_identifier, - [4123] = 6, + sym__identifier, + [6384] = 2, ACTIONS(3), 1, sym_comment, - STATE(171), 1, - sym_comparison_op, - STATE(172), 1, - sym_other_op, - STATE(173), 2, - sym_and, - sym_or, - ACTIONS(25), 13, + ACTIONS(355), 34, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(27), 16, aux_sym_insert_statement_token2, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, + 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_insert_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_trigger_event_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_limit_token2, + 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_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - [4170] = 5, + [6424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(357), 34, + anon_sym_SEMI, + anon_sym_COMMA, + 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_insert_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, + [6464] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, anon_sym_LPAREN, - ACTIONS(290), 1, + ACTIONS(361), 1, + anon_sym_DOT, + ACTIONS(363), 1, aux_sym_time_expression_token1, - ACTIONS(63), 13, + ACTIONS(69), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -15666,17 +19448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(69), 18, + ACTIONS(73), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -15684,402 +19466,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [4215] = 15, + sym__identifier, + [6512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(365), 1, + aux_sym_create_type_statement_token3, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(371), 1, + anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, + STATE(301), 1, + sym_comparison_op, + STATE(578), 1, + sym_identifier, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - STATE(237), 2, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(335), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(179), 13, - anon_sym_SEMI, + ACTIONS(339), 8, aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_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, - [4280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(292), 32, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_returning_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [4318] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(294), 32, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_returning_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [4356] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(296), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [4420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(298), 32, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_conflict_target_token1, - anon_sym_EQ, - aux_sym_insert_returning_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, - aux_sym_grant_roles_token2, - aux_sym_sequence_start_token2, - aux_sym_select_statement_token1, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [4458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(125), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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_and_token1, - sym_identifier, - [4497] = 3, + [6586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 13, + ACTIONS(25), 15, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(117), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(61), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(131), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(133), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(139), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(141), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(300), 1, anon_sym_LPAREN, - ACTIONS(302), 1, + anon_sym_COMMA, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(27), 19, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_time_expression_token1, - ACTIONS(63), 13, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [6628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(377), 34, + anon_sym_SEMI, + anon_sym_COMMA, + 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_insert_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, + [6668] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(37), 10, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(39), 15, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [6721] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(371), 1, + anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(57), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(59), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [6784] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(57), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(59), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [6833] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(37), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(39), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [6882] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(335), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(379), 1, + aux_sym_create_type_statement_token3, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + STATE(578), 1, + sym_identifier, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(339), 9, + aux_sym_insert_statement_token2, + aux_sym_delete_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, + [6955] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(37), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16093,15 +19854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(69), 16, + ACTIONS(39), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16109,111 +19870,656 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [4696] = 17, + sym__identifier, + [7002] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(169), 1, + ACTIONS(369), 1, anon_sym_SLASH, - ACTIONS(171), 1, + ACTIONS(371), 1, anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(37), 8, + 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, + ACTIONS(39), 14, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [7061] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(371), 1, + anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(37), 9, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(39), 14, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [7118] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, + aux_sym_sequence_start_token2, ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(306), 1, - anon_sym_COMMA, - STATE(219), 1, + aux_sym_trigger_exec_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(395), 1, + aux_sym_for_statement_token1, + ACTIONS(397), 1, + aux_sym_select_statement_token1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(409), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1472), 1, + sym_with_query, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(1263), 2, + sym_execute_statement, + sym_select_statement, + STATE(439), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [7199] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(371), 1, + anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, sym_other_op, - STATE(221), 1, + STATE(301), 1, sym_comparison_op, - STATE(437), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(43), 2, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(167), 2, + ACTIONS(367), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + STATE(299), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(37), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(304), 9, - anon_sym_SEMI, + ACTIONS(39), 12, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, + aux_sym_delete_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_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [4763] = 17, + aux_sym_where_filter_token1, + aux_sym_and_token1, + sym__identifier, + [7262] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(41), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(496), 1, - sym_order_by_direction, - ACTIONS(35), 2, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(177), 1, + aux_sym_trigger_exec_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(397), 1, + aux_sym_select_statement_token1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(411), 1, + aux_sym_for_statement_token1, + ACTIONS(413), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1472), 1, + sym_with_query, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(1376), 2, + sym_execute_statement, + sym_select_statement, + STATE(436), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [7343] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(369), 1, + anon_sym_SLASH, + ACTIONS(371), 1, + anon_sym_DASH, + ACTIONS(373), 1, + anon_sym_PLUS, + ACTIONS(375), 1, + sym_cast, + STATE(300), 1, + sym_other_op, + STATE(301), 1, + sym_comparison_op, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(310), 2, + ACTIONS(367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(299), 2, + sym_and, + sym_or, + ACTIONS(61), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(63), 10, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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, + [7410] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(417), 1, + anon_sym_COMMA, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + STATE(626), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(415), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [7478] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(61), 1, + anon_sym_COMMA, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(63), 11, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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, + [7544] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, + anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + STATE(702), 1, + sym_order_by_direction, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(421), 2, aux_sym_index_col_dir_token1, aux_sym_index_col_dir_token2, - STATE(237), 2, + ACTIONS(423), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(270), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(308), 8, + ACTIONS(419), 9, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [4830] = 3, + aux_sym_select_offset_token1, + [7612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(119), 13, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(57), 10, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(59), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [7660] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(37), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(39), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [7706] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(57), 1, + anon_sym_COMMA, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(59), 13, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [7768] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(433), 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, + [7832] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 1, + anon_sym_LPAREN, + ACTIONS(437), 1, + anon_sym_DOT, + ACTIONS(439), 1, + aux_sym_time_expression_token1, + ACTIONS(69), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16227,17 +20533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(121), 18, + ACTIONS(73), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16245,11 +20549,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [4869] = 3, + sym__identifier, + [7878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 13, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(37), 10, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(39), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [7926] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(37), 8, + 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, + anon_sym_PIPE_PIPE, + ACTIONS(39), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [7978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(27), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [8018] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(37), 6, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(39), 15, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [8076] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(37), 7, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + ACTIONS(39), 15, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [8132] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym_COMMA, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(383), 1, + anon_sym_SLASH, + ACTIONS(385), 1, + anon_sym_DASH, + ACTIONS(387), 1, + anon_sym_PLUS, + ACTIONS(389), 1, + sym_cast, + STATE(259), 1, + sym_comparison_op, + STATE(260), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(381), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(263), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(39), 13, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_and_token1, + sym__identifier, + [8194] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, + anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + ACTIONS(39), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(423), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(37), 18, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + aux_sym_and_token1, + [8251] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(441), 1, + anon_sym_RPAREN, + ACTIONS(443), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1442), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(362), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [8328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16263,17 +20927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(53), 18, + ACTIONS(97), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16281,80 +20945,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [4908] = 3, + sym__identifier, + [8367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 13, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(445), 1, + anon_sym_RPAREN, + ACTIONS(447), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1350), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(365), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [8444] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, + anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(423), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(61), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_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, + [8507] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, + anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(423), 2, anon_sym_STAR, anon_sym_PERCENT, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(37), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_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_and_token1, + [8566] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + ACTIONS(39), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(423), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(37), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(137), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(143), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - ACTIONS(145), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_trigger_event_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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_and_token1, - sym_identifier, - [4986] = 3, + [8621] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(111), 13, @@ -16372,16 +21157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, ACTIONS(113), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16389,105 +21174,572 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5025] = 15, + sym__identifier, + [8660] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - ACTIONS(49), 1, + ACTIONS(67), 1, aux_sym_and_token1, - ACTIONS(169), 1, + ACTIONS(317), 1, anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, + ACTIONS(319), 1, sym_cast, - ACTIONS(177), 1, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, aux_sym_trigger_event_token2, - STATE(219), 1, - sym_other_op, - STATE(221), 1, + STATE(266), 1, sym_comparison_op, - ACTIONS(43), 2, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(167), 2, + ACTIONS(315), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + STATE(275), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(312), 10, + ACTIONS(449), 11, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [5087] = 15, + [8723] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(173), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(175), 1, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(451), 1, + anon_sym_RPAREN, + ACTIONS(453), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1423), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(371), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [8800] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(455), 1, + anon_sym_RPAREN, + ACTIONS(457), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1429), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(368), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [8877] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(431), 1, sym_cast, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - STATE(219), 1, - sym_other_op, - STATE(221), 1, + STATE(262), 1, sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, + STATE(267), 1, + sym_other_op, + ACTIONS(423), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + STATE(270), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(39), 3, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 20, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [8928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(89), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [8967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(109), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [9006] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(459), 1, + anon_sym_RPAREN, + ACTIONS(461), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1434), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(363), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9083] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(465), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1413), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(370), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9160] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(467), 1, + anon_sym_RPAREN, + ACTIONS(469), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1402), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(364), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(105), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [9276] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(39), 4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [9323] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, + sym_and, + sym_or, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(314), 10, + ACTIONS(471), 11, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_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_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [5149] = 3, + [9386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 13, + ACTIONS(99), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16501,15 +21753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(145), 16, + ACTIONS(101), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16517,11 +21771,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5186] = 3, + sym__identifier, + [9425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 13, + ACTIONS(473), 1, + anon_sym_LPAREN, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(477), 1, + aux_sym_time_expression_token1, + ACTIONS(69), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(73), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [9470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(27), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [9509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(479), 1, + anon_sym_RPAREN, + ACTIONS(481), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1388), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(360), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16535,15 +21919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(125), 16, + ACTIONS(85), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16551,11 +21937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5223] = 3, + sym__identifier, + [9625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(131), 13, + ACTIONS(33), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16569,15 +21955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(133), 16, + ACTIONS(35), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16585,11 +21973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5260] = 3, + sym__identifier, + [9664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(115), 13, + ACTIONS(91), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16603,15 +21991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(117), 16, + ACTIONS(93), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16619,11 +22009,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5297] = 3, + sym__identifier, + [9703] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 13, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(483), 1, + anon_sym_RPAREN, + ACTIONS(485), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1373), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(358), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16637,15 +22082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(61), 16, + ACTIONS(81), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16653,11 +22100,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5334] = 3, + sym__identifier, + [9819] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(119), 13, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(487), 1, + anon_sym_RPAREN, + ACTIONS(489), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1446), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(367), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [9896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16671,15 +22173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(121), 16, + ACTIONS(31), 18, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16687,11 +22191,655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5371] = 3, + sym__identifier, + [9935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(139), 13, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(39), 4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(37), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [9980] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(425), 1, + anon_sym_SLASH, + ACTIONS(427), 1, + anon_sym_DASH, + ACTIONS(429), 1, + anon_sym_PLUS, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(423), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(57), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_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_and_token1, + [10039] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(491), 1, + anon_sym_RPAREN, + ACTIONS(493), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1438), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(374), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(431), 1, + sym_cast, + STATE(262), 1, + sym_comparison_op, + STATE(267), 1, + sym_other_op, + STATE(270), 2, + sym_and, + sym_or, + ACTIONS(59), 4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(57), 22, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + aux_sym_and_token1, + [10163] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(495), 1, + anon_sym_RPAREN, + ACTIONS(497), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1257), 1, + sym_select_statement, + STATE(1336), 1, + sym_with_query, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(361), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10240] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(499), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1337), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(434), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10314] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(501), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1398), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(413), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10388] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(503), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1338), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(432), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10462] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(505), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1409), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(416), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10536] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(507), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1419), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(425), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(509), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1383), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(410), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_DOT, + ACTIONS(513), 1, + aux_sym_time_expression_token1, + ACTIONS(73), 4, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(69), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + anon_sym_EQ, + aux_sym_insert_returning_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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + aux_sym_and_token1, + [10728] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(173), 1, + aux_sym_sequence_start_token2, + ACTIONS(193), 1, + aux_sym_select_statement_token1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(515), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1336), 1, + sym_with_query, + STATE(1367), 1, + sym_select_statement, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(427), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16705,15 +22853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(141), 16, + ACTIONS(85), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16721,11 +22869,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5408] = 3, + sym__identifier, + [10839] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(135), 13, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(519), 1, + aux_sym_update_set_token1, + ACTIONS(521), 1, + aux_sym_select_offset_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(517), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + [10904] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(523), 1, + anon_sym_RPAREN, + ACTIONS(525), 1, + aux_sym_insert_items_token1, + ACTIONS(527), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1092), 1, + sym_insert_item, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(392), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [10975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16739,15 +22986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(137), 16, + ACTIONS(89), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16755,8 +23002,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5445] = 3, + sym__identifier, + [11012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(81), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(93), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(101), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(105), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(97), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(109), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11234] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(111), 13, @@ -16774,14 +23225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_cast, ACTIONS(113), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16789,11 +23240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5482] = 3, + sym__identifier, + [11271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 13, + ACTIONS(29), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, @@ -16807,15 +23258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - ACTIONS(53), 16, + ACTIONS(31), 16, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, - aux_sym_delete_statement_token3, aux_sym_grant_roles_token2, aux_sym_trigger_event_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, anon_sym_SLASH, @@ -16823,1244 +23274,1318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - [5519] = 20, + sym__identifier, + [11308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(33), 13, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(330), 1, - sym_number, - ACTIONS(332), 1, - sym_identifier, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1128), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(256), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5589] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(334), 1, - anon_sym_RPAREN, - ACTIONS(336), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1085), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(244), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5659] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(338), 1, - anon_sym_RPAREN, - ACTIONS(340), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1124), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(255), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5729] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(342), 1, - anon_sym_RPAREN, - ACTIONS(344), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(955), 1, - sym_select_statement, - STATE(1003), 1, - sym_with_query, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(227), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5799] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(169), 1, - anon_sym_SLASH, - ACTIONS(171), 1, - anon_sym_DASH, - ACTIONS(173), 1, - anon_sym_PLUS, - ACTIONS(175), 1, - sym_cast, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - STATE(219), 1, - sym_other_op, - STATE(221), 1, - sym_comparison_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(167), 2, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, - STATE(218), 2, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(35), 16, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11345] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(317), 1, + anon_sym_SLASH, + ACTIONS(319), 1, + sym_cast, + ACTIONS(321), 1, + anon_sym_DASH, + ACTIONS(323), 1, + anon_sym_PLUS, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + STATE(266), 1, + sym_comparison_op, + STATE(268), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(315), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(275), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(346), 8, + ACTIONS(529), 9, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - [5859] = 20, + [11406] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, anon_sym_LPAREN, - ACTIONS(320), 1, + ACTIONS(393), 1, aux_sym_alter_column_action_token2, - ACTIONS(322), 1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(324), 1, + ACTIONS(403), 1, anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(348), 1, - anon_sym_RPAREN, - ACTIONS(350), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1120), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(252), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5929] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(352), 1, - anon_sym_RPAREN, - ACTIONS(354), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1115), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(251), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [5999] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(356), 1, - anon_sym_RPAREN, - ACTIONS(358), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1106), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(249), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6069] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(360), 1, - anon_sym_RPAREN, - ACTIONS(362), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1067), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(235), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6139] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(364), 1, - anon_sym_RPAREN, - ACTIONS(366), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1097), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(247), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6209] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(368), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1111), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(303), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6276] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(370), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1102), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(301), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6343] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(372), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1093), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(300), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6410] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(374), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1004), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(306), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6477] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(376), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1060), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(283), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6544] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(217), 1, - aux_sym_sequence_start_token2, - ACTIONS(225), 1, - aux_sym_select_statement_token1, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(378), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(1003), 1, - sym_with_query, - STATE(1080), 1, - sym_select_statement, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(296), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [6611] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(29), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(231), 3, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - sym_identifier, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [6671] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(55), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(57), 5, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym_identifier, - [6727] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - ACTIONS(390), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [6785] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(27), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - [6827] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(57), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(55), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - [6869] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(193), 1, - aux_sym_insert_statement_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(203), 1, - sym_identifier, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - ACTIONS(392), 1, - aux_sym_delete_statement_token3, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(191), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [6933] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(27), 8, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 10, - 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, - anon_sym_PIPE_PIPE, - [6979] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(27), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [7019] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(394), 1, - aux_sym_insert_items_token1, - ACTIONS(396), 1, - anon_sym_RPAREN, - ACTIONS(398), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(742), 1, - sym_insert_item, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(262), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7083] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(400), 1, - ts_builtin_sym_end, - ACTIONS(402), 1, - aux_sym_insert_statement_token1, ACTIONS(405), 1, - aux_sym_insert_conflict_token3, - ACTIONS(408), 1, - aux_sym_create_table_statement_token1, - ACTIONS(411), 1, - aux_sym_delete_statement_token1, - ACTIONS(414), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(417), 1, - aux_sym_grant_statement_token1, - ACTIONS(420), 1, - anon_sym_BSLASH, - ACTIONS(423), 1, - aux_sym_sequence_start_token2, - ACTIONS(426), 1, - aux_sym_select_statement_token1, - STATE(126), 1, - aux_sym_source_file_repeat1, - STATE(441), 1, - sym_psql_statement, - STATE(706), 1, - sym_with_query, - STATE(1139), 13, - sym__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, - [7141] = 12, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(531), 1, + aux_sym_insert_items_token1, + ACTIONS(533), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(809), 1, + sym_update_value, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(325), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [11474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(380), 2, + ACTIONS(91), 11, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR, anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(27), 7, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(93), 17, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, + aux_sym_delete_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_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_and_token1, + sym__identifier, + [11510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(81), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(35), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(31), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(103), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(105), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(97), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(101), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11726] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(535), 1, + anon_sym_SEMI, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(551), 1, + sym_number, + ACTIONS(553), 1, + sym__identifier, + STATE(321), 1, + sym_not, + STATE(366), 1, sym_identifier, - ACTIONS(25), 8, + STATE(1058), 1, + sym_select_item, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(339), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [11794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(107), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(109), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(89), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11866] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(525), 1, + aux_sym_insert_items_token1, + ACTIONS(527), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1200), 1, + sym_insert_item, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(392), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [11934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(113), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [11970] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(531), 1, + aux_sym_insert_items_token1, + ACTIONS(533), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(979), 1, + sym_update_value, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(325), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 11, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + ACTIONS(85), 17, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_delete_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_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + [12074] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(531), 1, + aux_sym_insert_items_token1, + ACTIONS(533), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(1151), 1, + sym_update_value, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(325), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12142] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(531), 1, + aux_sym_insert_items_token1, + ACTIONS(533), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(988), 1, + sym_update_value, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(325), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12210] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(767), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12275] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(153), 1, + sym_number, + ACTIONS(155), 1, + sym__identifier, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(575), 1, + sym_select_item, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(69), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12340] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(791), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12405] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(796), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12470] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(339), 1, + aux_sym_insert_statement_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(573), 1, + aux_sym_create_type_statement_token3, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + STATE(578), 1, + sym_identifier, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(335), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - [7193] = 15, + [12537] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(551), 1, + sym_number, + ACTIONS(553), 1, + sym__identifier, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(575), 1, + sym_select_item, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(339), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12602] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(585), 1, + anon_sym_SEMI, + ACTIONS(587), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(375), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12667] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(215), 1, + sym_number, + ACTIONS(217), 1, + sym__identifier, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(575), 1, + sym_select_item, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(94), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12732] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(589), 1, + aux_sym_return_statement_token2, + ACTIONS(591), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(415), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12797] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(794), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12862] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(593), 1, + anon_sym_RPAREN, + ACTIONS(595), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(359), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12927] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(804), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [12992] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, - aux_sym_insert_statement_token1, + aux_sym_create_type_statement_token1, ACTIONS(9), 1, - aux_sym_insert_conflict_token3, + aux_sym_insert_statement_token1, ACTIONS(11), 1, - aux_sym_create_table_statement_token1, + aux_sym_insert_conflict_token3, ACTIONS(13), 1, aux_sym_delete_statement_token1, ACTIONS(15), 1, @@ -18073,16 +24598,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sequence_start_token2, ACTIONS(23), 1, aux_sym_select_statement_token1, - ACTIONS(429), 1, + ACTIONS(597), 1, ts_builtin_sym_end, - STATE(126), 1, + STATE(214), 1, aux_sym_source_file_repeat1, - STATE(441), 1, + STATE(640), 1, sym_psql_statement, - STATE(706), 1, + STATE(967), 1, sym_with_query, - STATE(1139), 13, + STATE(1496), 14, sym__statement, + sym_create_type_statement, sym_insert_statement, sym_create_table_statement, sym_create_schema_statement, @@ -18095,2829 +24621,90 @@ static const uint16_t ts_small_parse_table[] = { sym_do_block, sym_select_statement, sym_create_function_statement, - [7251] = 11, + [13051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(43), 1, anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(27), 7, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 9, - 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, - anon_sym_PIPE_PIPE, - [7301] = 14, - ACTIONS(3), 1, - sym_comment, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(382), 1, - anon_sym_SLASH, - ACTIONS(384), 1, - anon_sym_DASH, - ACTIONS(386), 1, - anon_sym_PLUS, - ACTIONS(388), 1, - sym_cast, - STATE(194), 1, - sym_comparison_op, - STATE(195), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(380), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(196), 2, - sym_and, - sym_or, - ACTIONS(25), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(27), 5, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym_identifier, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [7357] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, sym_cast, ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, aux_sym_and_token1, - STATE(169), 1, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(35), 2, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(43), 2, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - STATE(237), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - ACTIONS(431), 5, + ACTIONS(599), 7, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [7414] = 17, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + [13110] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(433), 1, - anon_sym_SEMI, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(447), 1, - sym_number, - ACTIONS(449), 1, - sym_identifier, - STATE(214), 1, - sym_not, - STATE(740), 1, - sym_select_item, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(151), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7475] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(394), 1, - aux_sym_insert_items_token1, - ACTIONS(398), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(846), 1, - sym_insert_item, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(262), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7536] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(451), 1, - aux_sym_insert_items_token1, - ACTIONS(453), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(541), 1, - sym_update_value, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(119), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7597] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(451), 1, - aux_sym_insert_items_token1, - ACTIONS(453), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(862), 1, - sym_update_value, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(119), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7658] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(451), 1, - aux_sym_insert_items_token1, - ACTIONS(453), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(685), 1, - sym_update_value, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(119), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7719] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(451), 1, - aux_sym_insert_items_token1, - ACTIONS(453), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(762), 1, - sym_update_value, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(119), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7780] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(531), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7838] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 1, - sym_cast, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - [7878] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(473), 1, - anon_sym_SEMI, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(477), 1, - aux_sym_index_using_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(823), 1, - sym_into, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [7940] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(479), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(498), 1, - sym_order_by_item, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(83), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [7998] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(481), 1, - aux_sym_grant_privileges_token1, - ACTIONS(483), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(131), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8056] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(409), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8114] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(535), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8172] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(447), 1, - sym_number, - ACTIONS(449), 1, - sym_identifier, - STATE(214), 1, - sym_not, - STATE(409), 1, - sym_select_item, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(151), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8230] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(163), 1, - sym_number, - ACTIONS(165), 1, - sym_identifier, - STATE(205), 1, - sym_not, - STATE(409), 1, - sym_select_item, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(66), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8288] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(479), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(483), 1, - sym_order_by_item, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(83), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8346] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(576), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8404] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(314), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [8460] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(485), 1, - aux_sym_grant_privileges_token1, - ACTIONS(487), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(287), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8518] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(203), 1, - sym_identifier, - ACTIONS(471), 1, - sym_cast, - ACTIONS(489), 1, - aux_sym_delete_statement_token3, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(191), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [8578] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(557), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8636] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(499), 1, - anon_sym_RPAREN, - ACTIONS(501), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(203), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8694] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(543), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8752] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 7, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 9, - anon_sym_SEMI, - 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, - anon_sym_PIPE_PIPE, - [8796] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [8834] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(107), 1, - sym_number, - ACTIONS(109), 1, - sym_identifier, - STATE(192), 1, - sym_not, - STATE(409), 1, - sym_select_item, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(38), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [8892] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 6, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [8942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 6, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(25), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - [8990] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(25), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(27), 4, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym_identifier, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [9044] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(534), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9102] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(467), 1, - sym_number, - ACTIONS(469), 1, - sym_identifier, - STATE(182), 1, - sym_not, - STATE(550), 1, - sym_select_item, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(122), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9160] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(503), 1, - aux_sym_return_statement_token2, - ACTIONS(505), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(297), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9218] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(177), 1, - aux_sym_trigger_event_token2, - ACTIONS(201), 1, - aux_sym_and_token1, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(29), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(231), 2, - aux_sym_delete_statement_token3, - sym_identifier, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [9276] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(471), 1, - sym_cast, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(57), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(55), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - [9316] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(471), 1, - sym_cast, - ACTIONS(493), 1, - anon_sym_SLASH, - ACTIONS(495), 1, - anon_sym_DASH, - ACTIONS(497), 1, - anon_sym_PLUS, - STATE(174), 1, - sym_comparison_op, - STATE(175), 1, - sym_other_op, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(55), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(491), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(176), 2, - sym_and, - sym_or, - ACTIONS(57), 4, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - aux_sym_and_token1, - sym_identifier, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [9370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(507), 1, - anon_sym_LPAREN, - ACTIONS(509), 1, - aux_sym_time_expression_token1, - ACTIONS(69), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(63), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [9406] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(511), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(294), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9461] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(513), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(4), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9516] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(515), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(304), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9571] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(517), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(61), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9626] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(519), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(62), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9681] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(521), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(65), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9736] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(523), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(158), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9791] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(525), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(159), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9846] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(527), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(160), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9901] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(529), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(51), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [9956] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(531), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(302), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10011] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(533), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(164), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10066] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(535), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(140), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10121] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, - ACTIONS(537), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(121), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10176] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, - ACTIONS(539), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(118), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10231] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, - ACTIONS(541), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(120), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10286] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, - ACTIONS(543), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(123), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10341] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(545), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(41), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10396] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(547), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(43), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10451] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(549), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(44), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10506] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(551), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(45), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10561] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, - ACTIONS(553), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(37), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10616] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, ACTIONS(555), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(54), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10671] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, ACTIONS(557), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(124), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10726] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, ACTIONS(559), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(47), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10781] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(81), 1, - aux_sym_alter_column_action_token2, - ACTIONS(95), 1, - anon_sym_SQUOTE, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(103), 1, - aux_sym_true_token1, - ACTIONS(105), 1, - aux_sym_false_token1, - ACTIONS(109), 1, - sym_identifier, + anon_sym_DOLLAR, ACTIONS(561), 1, - sym_number, - STATE(192), 1, - sym_not, - STATE(193), 2, - sym_minus, - sym_plus, - STATE(39), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10836] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, ACTIONS(563), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(127), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10891] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, ACTIONS(565), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(129), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [10946] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, ACTIONS(567), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(130), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11001] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, ACTIONS(569), 1, sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(305), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11056] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, ACTIONS(571), 1, - sym_number, - STATE(243), 1, + sym__identifier, + STATE(255), 1, sym_not, - STATE(245), 2, + STATE(337), 1, + sym_identifier, + STATE(575), 1, + sym_select_item, + STATE(256), 2, sym_minus, sym_plus, - STATE(271), 9, + STATE(202), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -20925,323 +24712,46 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [11111] = 15, + [13175] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(435), 1, + ACTIONS(391), 1, anon_sym_LPAREN, - ACTIONS(437), 1, + ACTIONS(393), 1, aux_sym_alter_column_action_token2, - ACTIONS(439), 1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(441), 1, + ACTIONS(403), 1, anon_sym_STAR, - ACTIONS(443), 1, + ACTIONS(405), 1, aux_sym_true_token1, - ACTIONS(445), 1, + ACTIONS(407), 1, aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(573), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(139), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11166] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(455), 1, - anon_sym_LPAREN, - ACTIONS(457), 1, - aux_sym_alter_column_action_token2, - ACTIONS(459), 1, - anon_sym_SQUOTE, - ACTIONS(461), 1, - anon_sym_STAR, - ACTIONS(463), 1, - aux_sym_true_token1, - ACTIONS(465), 1, - aux_sym_false_token1, - ACTIONS(469), 1, - sym_identifier, - ACTIONS(575), 1, - sym_number, - STATE(182), 1, - sym_not, - STATE(181), 2, - sym_minus, - sym_plus, - STATE(117), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11221] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(589), 1, - sym_number, - ACTIONS(591), 1, - sym_identifier, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(28), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11276] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(593), 1, - anon_sym_SEMI, - ACTIONS(595), 1, - anon_sym_COMMA, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(735), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [11335] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(597), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(731), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [11394] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(599), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(10), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11449] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, ACTIONS(601), 1, sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(63), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11504] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, ACTIONS(603), 1, - sym_number, - STATE(205), 1, + sym__identifier, + STATE(165), 1, + sym_identifier, + STATE(244), 1, sym_not, - STATE(206), 2, + STATE(691), 1, + sym_order_by_item, + STATE(236), 2, sym_minus, sym_plus, - STATE(64), 9, + STATE(111), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -21249,1365 +24759,90 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [11559] = 15, + [13240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, ACTIONS(605), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(298), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11614] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, + ts_builtin_sym_end, ACTIONS(607), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(278), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11669] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(609), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(11), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11724] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(611), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(2), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11779] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, + aux_sym_create_type_statement_token1, + ACTIONS(610), 1, + aux_sym_insert_statement_token1, ACTIONS(613), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(288), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11834] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(615), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(74), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11889] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(617), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(69), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11944] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, + aux_sym_insert_conflict_token3, + ACTIONS(616), 1, + aux_sym_delete_statement_token1, ACTIONS(619), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(166), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [11999] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(621), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(202), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12054] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(623), 1, - anon_sym_SEMI, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(729), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [12113] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, + aux_sym_alter_table_statement_token1, + ACTIONS(622), 1, + aux_sym_grant_statement_token1, ACTIONS(625), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(82), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12168] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(627), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(26), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12223] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(629), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(29), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12278] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, + anon_sym_BSLASH, + ACTIONS(628), 1, + aux_sym_sequence_start_token2, ACTIONS(631), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(68), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12333] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(633), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(31), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12388] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(635), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(32), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12443] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(637), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(33), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12498] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(639), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(34), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12553] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(641), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(149), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12608] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(643), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(12), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12663] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(645), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(730), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [12722] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(647), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(35), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12777] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(649), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(27), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12832] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(651), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(67), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12887] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(653), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(90), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12942] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(655), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(299), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [12997] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(149), 1, - anon_sym_LPAREN, - ACTIONS(153), 1, - aux_sym_alter_column_action_token2, - ACTIONS(155), 1, - anon_sym_SQUOTE, - ACTIONS(157), 1, - anon_sym_STAR, - ACTIONS(159), 1, - aux_sym_true_token1, - ACTIONS(161), 1, - aux_sym_false_token1, - ACTIONS(165), 1, - sym_identifier, - ACTIONS(657), 1, - sym_number, - STATE(205), 1, - sym_not, - STATE(206), 2, - sym_minus, - sym_plus, - STATE(60), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13052] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(659), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(105), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13107] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(661), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(772), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [13166] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(663), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(241), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13221] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(665), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(9), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13276] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(577), 1, - anon_sym_LPAREN, - ACTIONS(579), 1, - aux_sym_alter_column_action_token2, - ACTIONS(581), 1, - anon_sym_SQUOTE, - ACTIONS(583), 1, - anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(667), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(30), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13331] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(669), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(71), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13386] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(671), 1, - sym_number, + aux_sym_select_statement_token1, STATE(214), 1, + aux_sym_source_file_repeat1, + STATE(640), 1, + sym_psql_statement, + STATE(967), 1, + sym_with_query, + STATE(1496), 14, + sym__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, + [13299] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(634), 1, + aux_sym_grant_privileges_token1, + ACTIONS(636), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, sym_not, - STATE(258), 2, + STATE(304), 2, sym_minus, sym_plus, - STATE(156), 9, + STATE(211), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -22615,79 +24850,638 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [13441] = 15, + [13364] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(41), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(601), 1, + sym_number, + ACTIONS(603), 1, + sym__identifier, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(701), 1, + sym_order_by_item, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(111), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13429] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(638), 1, + anon_sym_SEMI, + ACTIONS(640), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(357), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13494] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(878), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13559] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(569), 1, + sym_number, + ACTIONS(571), 1, + sym__identifier, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(776), 1, + sym_select_item, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(202), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13624] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(287), 1, + sym_number, + ACTIONS(289), 1, + sym__identifier, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(575), 1, + sym_select_item, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(101), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13689] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(642), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(430), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13751] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(644), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(345), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13813] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(646), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(118), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13875] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(648), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(117), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13937] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(650), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(114), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [13999] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(652), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(112), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14061] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(654), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(409), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14123] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - STATE(237), 2, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(248), 2, sym_and, sym_or, - ACTIONS(312), 3, + ACTIONS(61), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(31), 5, + ACTIONS(63), 3, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + sym__identifier, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - [13496] = 15, + [14183] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(316), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, anon_sym_LPAREN, - ACTIONS(320), 1, + ACTIONS(393), 1, aux_sym_alter_column_action_token2, - ACTIONS(322), 1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(324), 1, + ACTIONS(403), 1, anon_sym_STAR, - ACTIONS(326), 1, + ACTIONS(405), 1, aux_sym_true_token1, - ACTIONS(328), 1, + ACTIONS(407), 1, aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(673), 1, + ACTIONS(656), 1, sym_number, - STATE(243), 1, + STATE(14), 1, + sym_identifier, + STATE(302), 1, sym_not, - STATE(245), 2, + STATE(304), 2, sym_minus, sym_plus, - STATE(3), 9, + STATE(5), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -22695,39 +25489,44 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [13551] = 15, + [14245] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(316), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, anon_sym_LPAREN, - ACTIONS(320), 1, + ACTIONS(393), 1, aux_sym_alter_column_action_token2, - ACTIONS(322), 1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(324), 1, + ACTIONS(403), 1, anon_sym_STAR, - ACTIONS(326), 1, + ACTIONS(405), 1, aux_sym_true_token1, - ACTIONS(328), 1, + ACTIONS(407), 1, aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(675), 1, + ACTIONS(658), 1, sym_number, - STATE(243), 1, + STATE(14), 1, + sym_identifier, + STATE(302), 1, sym_not, - STATE(245), 2, + STATE(304), 2, sym_minus, sym_plus, - STATE(6), 9, + STATE(383), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -22735,613 +25534,356 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [13606] = 17, + [14307] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(41), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(45), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(660), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(13), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14369] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(662), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(10), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14431] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(664), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(228), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14493] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(680), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(131), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14555] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(682), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(298), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14617] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(684), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(157), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [14679] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(677), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(757), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [13665] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(679), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(7), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13720] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(681), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(282), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13775] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(683), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(747), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [13834] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(685), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(295), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [13889] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(687), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(736), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [13948] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(689), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(286), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [14003] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(691), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(727), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [14062] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(693), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(720), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [14121] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(435), 1, - anon_sym_LPAREN, - ACTIONS(437), 1, - aux_sym_alter_column_action_token2, - ACTIONS(439), 1, - anon_sym_SQUOTE, - ACTIONS(441), 1, - anon_sym_STAR, - ACTIONS(443), 1, - aux_sym_true_token1, - ACTIONS(445), 1, - aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(695), 1, - sym_number, - STATE(214), 1, - sym_not, - STATE(258), 2, - sym_minus, - sym_plus, - STATE(155), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [14176] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, - anon_sym_STAR, - ACTIONS(326), 1, - aux_sym_true_token1, - ACTIONS(328), 1, - aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(483), 1, - sym_number, - STATE(243), 1, - sym_not, - STATE(245), 2, - sym_minus, - sym_plus, - STATE(131), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [14231] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(714), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [14290] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - STATE(712), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [14349] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, - anon_sym_DASH, - ACTIONS(101), 1, - anon_sym_PLUS, ACTIONS(577), 1, - anon_sym_LPAREN, + anon_sym_SLASH, ACTIONS(579), 1, - aux_sym_alter_column_action_token2, + anon_sym_DASH, ACTIONS(581), 1, - anon_sym_SQUOTE, + anon_sym_PLUS, ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(575), 2, anon_sym_STAR, - ACTIONS(585), 1, - aux_sym_true_token1, - ACTIONS(587), 1, - aux_sym_false_token1, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(701), 1, - sym_number, - STATE(228), 1, - sym_not, - STATE(229), 2, - sym_minus, - sym_plus, - STATE(89), 9, - sym_string, - sym__value_expression, - sym_time_expression, - sym_function_call, - sym_op_expression, - sym_true, - sym_false, - sym_null, - sym_star, - [14404] = 15, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(37), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(39), 5, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [14735] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(123), 1, aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(145), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(147), 1, anon_sym_PLUS, - ACTIONS(435), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, anon_sym_LPAREN, - ACTIONS(437), 1, + ACTIONS(393), 1, aux_sym_alter_column_action_token2, - ACTIONS(439), 1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(441), 1, + ACTIONS(403), 1, anon_sym_STAR, - ACTIONS(443), 1, + ACTIONS(405), 1, aux_sym_true_token1, - ACTIONS(445), 1, + ACTIONS(407), 1, aux_sym_false_token1, - ACTIONS(449), 1, - sym_identifier, - ACTIONS(703), 1, + ACTIONS(686), 1, sym_number, - STATE(214), 1, + STATE(14), 1, + sym_identifier, + STATE(302), 1, sym_not, - STATE(258), 2, + STATE(304), 2, sym_minus, sym_plus, - STATE(165), 9, + STATE(412), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -23349,39 +25891,160 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [14459] = 15, + [14797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - aux_sym_alter_column_action_token1, - ACTIONS(99), 1, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, anon_sym_DASH, - ACTIONS(101), 1, + ACTIONS(581), 1, anon_sym_PLUS, - ACTIONS(316), 1, - anon_sym_LPAREN, - ACTIONS(320), 1, - aux_sym_alter_column_action_token2, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(324), 1, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(575), 2, anon_sym_STAR, - ACTIONS(326), 1, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(39), 7, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 9, + 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, + anon_sym_PIPE_PIPE, + [14847] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(39), 7, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 8, + 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, + [14899] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(39), 8, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 10, + 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, + anon_sym_PIPE_PIPE, + [14945] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, aux_sym_true_token1, - ACTIONS(328), 1, + ACTIONS(407), 1, aux_sym_false_token1, - ACTIONS(332), 1, - sym_identifier, - ACTIONS(705), 1, + ACTIONS(688), 1, sym_number, - STATE(243), 1, + STATE(14), 1, + sym_identifier, + STATE(302), 1, sym_not, - STATE(245), 2, + STATE(304), 2, sym_minus, sym_plus, - STATE(216), 9, + STATE(8), 10, sym_string, sym__value_expression, + sym_dollar_quote_string, sym_time_expression, sym_function_call, sym_op_expression, @@ -23389,19 +26052,6820 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_null, sym_star, - [14514] = 3, + [15007] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(39), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + [15049] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(690), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(155), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15111] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(577), 1, + anon_sym_SLASH, + ACTIONS(579), 1, + anon_sym_DASH, + ACTIONS(581), 1, + anon_sym_PLUS, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(575), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(57), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(59), 5, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + [15167] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(583), 1, + sym_cast, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(59), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(57), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + [15209] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(692), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(115), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15271] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(694), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(237), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15333] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(696), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(239), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(698), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(240), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15457] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(700), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(444), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15519] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(702), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(284), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(704), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(241), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15643] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(706), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(243), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15705] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(708), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(245), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15767] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(555), 1, + anon_sym_LPAREN, + ACTIONS(557), 1, + aux_sym_alter_column_action_token2, + ACTIONS(559), 1, + anon_sym_DOLLAR, + ACTIONS(561), 1, + anon_sym_SQUOTE, + ACTIONS(563), 1, + anon_sym_STAR, + ACTIONS(565), 1, + aux_sym_true_token1, + ACTIONS(567), 1, + aux_sym_false_token1, + ACTIONS(571), 1, + sym__identifier, + ACTIONS(710), 1, + sym_number, + STATE(255), 1, + sym_not, + STATE(337), 1, + sym_identifier, + STATE(256), 2, + sym_minus, + sym_plus, + STATE(246), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15829] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(712), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(141), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15891] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(714), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(134), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [15953] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(716), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(120), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16015] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(718), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(121), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16077] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(720), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(154), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16139] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(722), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(123), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16201] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(724), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(122), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16263] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(726), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(6), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16325] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(728), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(7), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16387] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(730), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(63), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16449] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(732), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(129), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16511] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(734), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(61), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16573] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(736), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(352), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16635] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(738), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(128), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16697] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(740), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(65), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16759] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(742), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(180), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16821] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(744), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(168), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16883] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(746), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(110), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [16945] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(748), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(64), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17007] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(750), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(142), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17069] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(752), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(411), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17131] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(271), 1, + anon_sym_LPAREN, + ACTIONS(275), 1, + aux_sym_alter_column_action_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR, + ACTIONS(279), 1, + anon_sym_SQUOTE, + ACTIONS(281), 1, + anon_sym_STAR, + ACTIONS(283), 1, + aux_sym_true_token1, + ACTIONS(285), 1, + aux_sym_false_token1, + ACTIONS(289), 1, + sym__identifier, + ACTIONS(754), 1, + sym_number, + STATE(144), 1, + sym_identifier, + STATE(225), 1, + sym_not, + STATE(226), 2, + sym_minus, + sym_plus, + STATE(113), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17193] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(756), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(396), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17255] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(603), 1, + sym__identifier, + ACTIONS(758), 1, + sym_number, + STATE(165), 1, + sym_identifier, + STATE(244), 1, + sym_not, + STATE(236), 2, + sym_minus, + sym_plus, + STATE(127), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17317] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(760), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(426), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17379] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(762), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(99), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17441] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(764), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(418), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17503] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(249), 1, + sym_other_op, + STATE(250), 1, + sym_comparison_op, + STATE(248), 2, + sym_and, + sym_or, + ACTIONS(39), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [17543] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(766), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(384), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17605] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(768), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(98), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17667] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(770), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(57), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17729] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(772), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(438), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17791] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(774), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(449), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17853] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(776), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(66), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17915] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(778), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(437), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [17977] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(780), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(346), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18039] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(782), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(429), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18101] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(784), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(12), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18163] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(786), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(89), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18225] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(788), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(83), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18287] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(790), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(88), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18349] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(796), 1, + aux_sym_index_using_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(897), 1, + sym_into, + STATE(1116), 1, + sym_execute_using, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(792), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [18415] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(798), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(106), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18477] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(800), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(104), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18539] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(802), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(103), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18601] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(804), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(9), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18663] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(806), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(102), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18725] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(808), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(11), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18787] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(810), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(59), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18849] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(812), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(58), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18911] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(814), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(87), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [18973] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(816), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(97), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19035] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(818), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(100), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19097] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(820), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(90), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19159] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(822), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(84), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19221] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(824), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(340), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19283] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(826), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(348), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19345] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(197), 1, + anon_sym_LPAREN, + ACTIONS(203), 1, + aux_sym_alter_column_action_token2, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(209), 1, + anon_sym_STAR, + ACTIONS(211), 1, + aux_sym_true_token1, + ACTIONS(213), 1, + aux_sym_false_token1, + ACTIONS(217), 1, + sym__identifier, + ACTIONS(828), 1, + sym_number, + STATE(116), 1, + sym_identifier, + STATE(286), 1, + sym_not, + STATE(282), 2, + sym_minus, + sym_plus, + STATE(108), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19407] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(830), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(81), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19469] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(832), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(347), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19531] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(834), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(342), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19593] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(836), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(341), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19655] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(838), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(86), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19717] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(840), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(82), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19779] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(842), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(351), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19841] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(537), 1, + anon_sym_LPAREN, + ACTIONS(539), 1, + aux_sym_alter_column_action_token2, + ACTIONS(541), 1, + anon_sym_DOLLAR, + ACTIONS(543), 1, + anon_sym_SQUOTE, + ACTIONS(545), 1, + anon_sym_STAR, + ACTIONS(547), 1, + aux_sym_true_token1, + ACTIONS(549), 1, + aux_sym_false_token1, + ACTIONS(553), 1, + sym__identifier, + ACTIONS(844), 1, + sym_number, + STATE(321), 1, + sym_not, + STATE(366), 1, + sym_identifier, + STATE(322), 2, + sym_minus, + sym_plus, + STATE(354), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19903] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(846), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(446), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [19965] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(848), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(56), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20027] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + ACTIONS(850), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [20085] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(852), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(343), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20147] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(854), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(344), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20209] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(413), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(436), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20271] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(856), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(379), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20333] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(858), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(422), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(125), 1, + aux_sym_alter_column_action_token2, + ACTIONS(137), 1, + anon_sym_DOLLAR, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(143), 1, + anon_sym_STAR, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(149), 1, + aux_sym_true_token1, + ACTIONS(151), 1, + aux_sym_false_token1, + ACTIONS(155), 1, + sym__identifier, + ACTIONS(860), 1, + sym_number, + STATE(93), 1, + sym_identifier, + STATE(297), 1, + sym_not, + STATE(295), 2, + sym_minus, + sym_plus, + STATE(85), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20457] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(862), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(62), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20519] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(864), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(428), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20581] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(668), 1, + aux_sym_alter_column_action_token2, + ACTIONS(670), 1, + anon_sym_DOLLAR, + ACTIONS(672), 1, + anon_sym_SQUOTE, + ACTIONS(674), 1, + anon_sym_STAR, + ACTIONS(676), 1, + aux_sym_true_token1, + ACTIONS(678), 1, + aux_sym_false_token1, + ACTIONS(866), 1, + sym_number, + STATE(67), 1, + sym_identifier, + STATE(305), 1, + sym_not, + STATE(306), 2, + sym_minus, + sym_plus, + STATE(109), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20643] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(868), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(405), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20705] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(123), 1, + aux_sym_alter_column_action_token1, + ACTIONS(145), 1, + anon_sym_DASH, + ACTIONS(147), 1, + anon_sym_PLUS, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(391), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + aux_sym_alter_column_action_token2, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(403), 1, + anon_sym_STAR, + ACTIONS(405), 1, + aux_sym_true_token1, + ACTIONS(407), 1, + aux_sym_false_token1, + ACTIONS(870), 1, + sym_number, + STATE(14), 1, + sym_identifier, + STATE(302), 1, + sym_not, + STATE(304), 2, + sym_minus, + sym_plus, + STATE(421), 10, + sym_string, + sym__value_expression, + sym_dollar_quote_string, + sym_time_expression, + sym_function_call, + sym_op_expression, + sym_true, + sym_false, + sym_null, + sym_star, + [20767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(874), 1, + anon_sym_DOT, + ACTIONS(876), 1, + aux_sym_time_expression_token1, + ACTIONS(73), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [20806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 10, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(25), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + [20839] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(878), 1, + aux_sym_create_type_statement_token3, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + STATE(578), 1, + sym_identifier, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(335), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [20902] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(37), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 4, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [20956] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + [20996] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 7, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 9, + anon_sym_SEMI, + 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, + anon_sym_PIPE_PIPE, + [21040] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(958), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(890), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21100] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(471), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21156] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 6, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21206] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(449), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21262] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [21300] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(39), 6, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(37), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + [21348] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 1, + anon_sym_COMMA, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(353), 1, + aux_sym_insert_returning_repeat1, + STATE(395), 1, + sym_into, + STATE(469), 1, + sym_select_from, + STATE(511), 1, + sym_select_where, + STATE(552), 1, + sym_select_group_by, + STATE(587), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [21416] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 1, + anon_sym_COMMA, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(395), 1, + sym_into, + STATE(469), 1, + sym_select_from, + STATE(511), 1, + sym_select_where, + STATE(552), 1, + sym_select_group_by, + STATE(573), 1, + aux_sym_insert_returning_repeat1, + STATE(587), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [21484] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(57), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(59), 4, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + aux_sym_and_token1, + sym__identifier, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21538] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(325), 1, + aux_sym_trigger_event_token2, + ACTIONS(351), 1, + aux_sym_and_token1, + ACTIONS(882), 1, + anon_sym_SLASH, + ACTIONS(884), 1, + anon_sym_DASH, + ACTIONS(886), 1, + anon_sym_PLUS, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(61), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(63), 2, + aux_sym_create_type_statement_token3, + sym__identifier, + ACTIONS(880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21596] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 1, + anon_sym_COMMA, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(387), 1, + sym_into, + STATE(455), 1, + sym_select_from, + STATE(518), 1, + sym_select_where, + STATE(549), 1, + sym_select_group_by, + STATE(573), 1, + aux_sym_insert_returning_repeat1, + STATE(584), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(661), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [21664] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + sym_cast, + STATE(222), 1, + sym_comparison_op, + STATE(313), 1, + sym_other_op, + STATE(312), 2, + sym_and, + sym_or, + ACTIONS(59), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(57), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + [21704] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(896), 1, + anon_sym_COMMA, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(350), 1, + aux_sym_insert_returning_repeat1, + STATE(390), 1, + sym_into, + STATE(475), 1, + sym_select_from, + STATE(513), 1, + sym_select_where, + STATE(546), 1, + sym_select_group_by, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [21772] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(916), 1, + aux_sym_create_type_statement_token3, + ACTIONS(918), 1, + anon_sym_LPAREN, + STATE(445), 1, + sym_identifier, + ACTIONS(914), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(920), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [21811] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(922), 1, + anon_sym_SEMI, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(1035), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21870] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(924), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(1003), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21929] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(926), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(1030), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [21988] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(928), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(996), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22047] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(930), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(1078), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22106] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(932), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(977), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22165] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(934), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(982), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22224] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(936), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(991), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22283] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(938), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(1011), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(940), 1, + anon_sym_LPAREN, + ACTIONS(942), 1, + anon_sym_DOT, + ACTIONS(944), 1, + aux_sym_time_expression_token1, + ACTIONS(73), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(69), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [22379] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(946), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(975), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22438] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(948), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(983), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + STATE(448), 1, + sym__list_of_identifiers, + ACTIONS(950), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [22530] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(954), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(990), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22589] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(956), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(989), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + STATE(417), 1, + sym__list_of_identifiers, + ACTIONS(958), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [22681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 9, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + aux_sym_time_expression_token1, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(25), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + 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, + anon_sym_PIPE_PIPE, + sym_cast, + [22712] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(960), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(980), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22771] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(638), 1, + anon_sym_SEMI, + ACTIONS(892), 1, + anon_sym_COMMA, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + STATE(963), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [22830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(99), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [22860] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(475), 1, + sym_select_from, + STATE(513), 1, + sym_select_where, + STATE(546), 1, + sym_select_group_by, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [22922] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(962), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(394), 1, + aux_sym_insert_returning_repeat1, + STATE(478), 1, + sym_into, + STATE(486), 1, + sym_select_from, + STATE(527), 1, + sym_select_where, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [22990] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(968), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [23044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 1, + aux_sym_join_item_token1, + ACTIONS(974), 1, + aux_sym_join_item_token2, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(728), 1, + sym_join_type, + STATE(403), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(970), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23086] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(984), 1, + aux_sym_join_item_token1, + ACTIONS(987), 1, + aux_sym_join_item_token2, + ACTIONS(990), 1, + aux_sym_join_item_token3, + ACTIONS(993), 1, + aux_sym_join_type_token1, + STATE(728), 1, + sym_join_type, + STATE(381), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(996), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(982), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(33), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [23158] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(999), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1001), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [23214] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1003), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [23268] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(728), 1, + sym_join_type, + STATE(388), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(970), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23300] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(962), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(397), 1, + aux_sym_insert_returning_repeat1, + STATE(452), 1, + sym_into, + STATE(481), 1, + sym_select_from, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [23368] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(454), 1, + sym_select_from, + STATE(512), 1, + sym_select_where, + STATE(563), 1, + sym_select_group_by, + STATE(588), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(656), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [23430] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(728), 1, + sym_join_type, + STATE(381), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1007), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 4, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(27), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23492] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(469), 1, + sym_select_from, + STATE(511), 1, + sym_select_where, + STATE(552), 1, + sym_select_group_by, + STATE(587), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [23554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(79), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [23584] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [23638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(95), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [23668] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(962), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(452), 1, + sym_into, + STATE(481), 1, + sym_select_from, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(625), 1, + aux_sym_insert_returning_repeat1, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [23736] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(898), 1, + aux_sym_delete_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(455), 1, + sym_select_from, + STATE(518), 1, + sym_select_where, + STATE(549), 1, + sym_select_group_by, + STATE(584), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(661), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [23798] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1011), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1013), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [23854] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(962), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(453), 1, + sym_into, + STATE(491), 1, + sym_select_from, + STATE(525), 1, + sym_select_where, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(625), 1, + aux_sym_insert_returning_repeat1, + STATE(654), 1, + sym_where_filter, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [23922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1017), 1, + aux_sym_create_type_statement_token3, + STATE(372), 1, + sym_identifier, + ACTIONS(1015), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1019), 16, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [23958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(29), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [23988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(103), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [24018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(87), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [24048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [24078] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 1, + aux_sym_join_item_token1, + ACTIONS(974), 1, + aux_sym_join_item_token2, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(728), 1, + sym_join_type, + STATE(381), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1007), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [24120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(83), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [24150] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1021), 1, + aux_sym_sequence_increment_token2, + ACTIONS(1023), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 9, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(91), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [24236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(113), 9, + aux_sym_create_type_statement_token3, aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, + sym__identifier, ACTIONS(111), 13, anon_sym_SEMI, anon_sym_COMMA, @@ -23416,1750 +32880,999 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - [14544] = 3, + [24266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(123), 13, + ACTIONS(1025), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [14574] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [14628] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, - ACTIONS(714), 1, aux_sym_join_item_token2, - ACTIONS(717), 1, aux_sym_join_item_token3, - ACTIONS(720), 1, aux_sym_join_type_token1, - STATE(896), 1, - sym_join_type, - STATE(263), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(723), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(709), 12, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [14670] = 19, + [24293] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, - anon_sym_COMMA, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(272), 1, - aux_sym_insert_returning_repeat1, - STATE(327), 1, - sym_into, - STATE(355), 1, - sym_select_from, - STATE(393), 1, - sym_select_where, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1027), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24346] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1029), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24399] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1013), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24452] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1031), 1, + aux_sym_if_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24505] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1033), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [14732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, sym_identifier, - ACTIONS(143), 13, + ACTIONS(1035), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [14762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(137), 9, + ACTIONS(1037), 16, aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(135), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [14792] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(746), 1, - aux_sym_join_item_token1, - ACTIONS(748), 1, - aux_sym_join_item_token2, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - STATE(896), 1, - sym_join_type, - STATE(263), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(744), 12, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [14834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(131), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [14864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(51), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [14894] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(746), 1, aux_sym_join_item_token1, - ACTIONS(748), 1, aux_sym_join_item_token2, - ACTIONS(750), 1, aux_sym_join_item_token3, - ACTIONS(752), 1, aux_sym_join_type_token1, - STATE(896), 1, - sym_join_type, - STATE(267), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(754), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(756), 12, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [14936] = 15, + [24591] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, + ACTIONS(43), 1, anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, sym_cast, ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, aux_sym_and_token1, - STATE(169), 1, + ACTIONS(1039), 1, + anon_sym_SEMI, + STATE(231), 1, sym_comparison_op, - STATE(226), 1, + STATE(232), 1, sym_other_op, - ACTIONS(35), 2, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(43), 2, + ACTIONS(53), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(758), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(237), 2, + STATE(242), 2, sym_and, sym_or, - ACTIONS(31), 5, + ACTIONS(47), 5, anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - [14990] = 19, + [24644] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1041), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(950), 21, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, aux_sym_grant_roles_token2, - ACTIONS(734), 1, + aux_sym_for_statement_token2, aux_sym_select_having_token1, - ACTIONS(736), 1, aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, - ACTIONS(742), 1, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_sym_join_item_token3, + aux_sym_join_type_token1, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, aux_sym_where_filter_token1, - STATE(328), 1, + [24724] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1043), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1045), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [24804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [24831] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1049), 1, + aux_sym_if_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1051), 1, + anon_sym_DOT_DOT, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [24937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(327), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [24964] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + aux_sym_for_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(479), 1, sym_into, - STATE(352), 1, + STATE(481), 1, sym_select_from, - STATE(385), 1, - aux_sym_insert_returning_repeat1, - STATE(386), 1, + STATE(529), 1, sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(668), 1, + aux_sym_insert_returning_repeat1, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(819), 1, + sym__select_limit_offset, + [25031] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1057), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25084] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1059), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25137] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1061), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25190] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1063), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25243] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1065), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25296] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1067), 1, + aux_sym_for_statement_token2, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25349] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(912), 1, + aux_sym_for_statement_token2, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(491), 1, + sym_select_from, + STATE(494), 1, + sym_into, + STATE(525), 1, + sym_select_where, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(668), 1, + aux_sym_insert_returning_repeat1, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(873), 1, + sym__select_limit_offset, + [25416] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1069), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25469] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + aux_sym_for_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [15052] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(728), 1, - anon_sym_COMMA, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(275), 1, aux_sym_insert_returning_repeat1, - STATE(331), 1, - sym_into, - STATE(356), 1, + STATE(486), 1, sym_select_from, - STATE(397), 1, - sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [15114] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(762), 1, - anon_sym_LPAREN, - ACTIONS(764), 1, - aux_sym_time_expression_token1, - ACTIONS(69), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(63), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [15148] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(728), 1, - anon_sym_COMMA, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(327), 1, + STATE(496), 1, sym_into, - STATE(355), 1, - sym_select_from, - STATE(385), 1, - aux_sym_insert_returning_repeat1, - STATE(393), 1, + STATE(527), 1, sym_select_where, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [15210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(770), 1, - anon_sym_LPAREN, - ACTIONS(772), 1, - aux_sym_delete_statement_token3, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(139), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [15276] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(776), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(59), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [15360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(115), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [15390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 9, - aux_sym_insert_statement_token2, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(119), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [15420] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(778), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15473] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(780), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(330), 1, - sym__list_of_identifiers, - ACTIONS(782), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(342), 1, - sym__list_of_identifiers, - ACTIONS(786), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15588] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15641] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(790), 1, - aux_sym_select_limit_token2, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15694] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(792), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(117), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(121), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(125), 18, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(772), 1, - aux_sym_delete_statement_token3, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15867] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(798), 1, - aux_sym_delete_statement_token3, - ACTIONS(800), 1, - sym_identifier, - ACTIONS(794), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(796), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [15900] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(802), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [15953] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16006] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(806), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16059] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(808), 1, - anon_sym_SEMI, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16112] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(810), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16165] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(812), 1, - aux_sym_select_limit_token1, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16218] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(814), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16271] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(816), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16324] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(818), 1, - anon_sym_SEMI, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16377] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(820), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16430] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(822), 1, - anon_sym_SEMI, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16483] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(824), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16536] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - aux_sym_trigger_event_token2, - ACTIONS(37), 1, - anon_sym_SLASH, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(41), 1, - anon_sym_PLUS, - ACTIONS(45), 1, - anon_sym_PIPE_PIPE, - ACTIONS(47), 1, - sym_cast, - ACTIONS(49), 1, - aux_sym_and_token1, - ACTIONS(826), 1, - anon_sym_RPAREN, - STATE(169), 1, - sym_comparison_op, - STATE(226), 1, - sym_other_op, - ACTIONS(35), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(43), 2, - anon_sym_LT, - anon_sym_GT, - STATE(237), 2, - sym_and, - sym_or, - ACTIONS(31), 5, - anon_sym_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - [16589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(137), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(135), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [16617] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(317), 1, - aux_sym_insert_returning_repeat1, - STATE(356), 1, - sym_select_from, - STATE(362), 1, - sym_into, - STATE(397), 1, - sym_select_where, - STATE(423), 1, sym_select_group_by, - STATE(458), 1, + STATE(609), 1, sym_select_having, - STATE(469), 1, + STATE(654), 1, sym_where_filter, - STATE(494), 1, + STATE(682), 1, sym_select_order_by, - STATE(617), 1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(127), 2, - anon_sym_SEMI, + STATE(818), 1, + sym__select_limit_offset, + [25536] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1071), 1, anon_sym_RPAREN, - [16679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(121), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(119), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [16707] = 3, + [25589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1073), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1075), 1, + anon_sym_LPAREN, + STATE(445), 1, sym_identifier, - ACTIONS(131), 12, + ACTIONS(914), 3, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [16735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(115), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [16763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(145), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(143), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [16791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(832), 20, - anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(920), 14, aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -25169,21 +33882,174 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [16817] = 2, + [25626] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(834), 20, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1077), 1, + anon_sym_DOT_DOT, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25679] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1079), 1, + anon_sym_SEMI, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25732] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1081), 1, + anon_sym_SEMI, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25785] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1083), 1, + anon_sym_DOT_DOT, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [25838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 3, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(93), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - aux_sym_index_using_token1, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_join_item_token1, aux_sym_join_item_token2, @@ -25193,18 +34059,743 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [16843] = 3, + sym__identifier, + [25867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(85), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [25896] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + aux_sym_for_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(964), 1, + aux_sym_insert_statement_token2, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(431), 1, + aux_sym_insert_returning_repeat1, + STATE(479), 1, + sym_into, + STATE(481), 1, + sym_select_from, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(819), 1, + sym__select_limit_offset, + [25963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(89), 18, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [25992] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1085), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [26045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1035), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [26072] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1087), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [26125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [26152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1091), 21, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [26179] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_SLASH, + ACTIONS(45), 1, + sym_cast, + ACTIONS(49), 1, + anon_sym_DASH, + ACTIONS(51), 1, + anon_sym_PLUS, + ACTIONS(55), 1, + anon_sym_PIPE_PIPE, + ACTIONS(65), 1, + aux_sym_trigger_event_token2, + ACTIONS(67), 1, + aux_sym_and_token1, + ACTIONS(1093), 1, + anon_sym_RPAREN, + STATE(231), 1, + sym_comparison_op, + STATE(232), 1, + sym_other_op, + ACTIONS(41), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(53), 2, + anon_sym_LT, + anon_sym_GT, + STATE(242), 2, + sym_and, + sym_or, + ACTIONS(47), 5, + anon_sym_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + [26232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(101), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(99), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(103), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26288] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(491), 1, + sym_select_from, + STATE(525), 1, + sym_select_where, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [26350] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(500), 1, + sym_select_from, + STATE(535), 1, + sym_select_where, + STATE(576), 1, + sym_select_group_by, + STATE(623), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [26412] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(519), 1, + sym_select_where, + STATE(555), 1, + sym_select_group_by, + STATE(591), 1, + sym_select_having, + STATE(653), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(811), 1, + sym__select_limit_offset, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [26468] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(512), 1, + sym_select_where, + STATE(563), 1, + sym_select_group_by, + STATE(588), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(656), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [26524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 4, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(27), 16, + aux_sym_create_type_statement_token3, + 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, + [26552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(95), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1099), 1, + anon_sym_BSLASH, + ACTIONS(1097), 19, + 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_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, + [26608] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + aux_sym_join_item_token3, + ACTIONS(993), 1, + aux_sym_join_type_token1, + ACTIONS(1101), 1, + aux_sym_join_item_token1, + ACTIONS(1104), 1, + aux_sym_join_item_token2, + STATE(728), 1, + sym_join_type, + STATE(459), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(996), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(982), 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, + [26648] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1107), 1, + aux_sym_join_item_token1, + ACTIONS(1109), 1, + aux_sym_join_item_token2, + STATE(728), 1, + sym_join_type, + STATE(459), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1007), 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, + [26688] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(513), 1, + sym_select_where, + STATE(546), 1, + sym_select_group_by, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(654), 1, + sym_where_filter, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [26744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(87), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(83), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26800] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(113), 8, - aux_sym_delete_statement_token3, + aux_sym_create_type_statement_token3, aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, + sym__identifier, ACTIONS(111), 12, anon_sym_SEMI, anon_sym_COMMA, @@ -25218,171 +34809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - [16871] = 4, + [26828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(834), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(836), 16, - aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [16901] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(355), 1, - sym_select_from, - STATE(364), 1, - sym_into, - STATE(393), 1, - sym_select_where, - STATE(415), 1, - aux_sym_insert_returning_repeat1, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [16963] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(319), 1, - aux_sym_insert_returning_repeat1, - STATE(355), 1, - sym_select_from, - STATE(364), 1, - sym_into, - STATE(393), 1, - sym_select_where, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [17025] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(352), 1, - sym_select_from, - STATE(361), 1, - sym_into, - STATE(386), 1, - sym_select_where, - STATE(415), 1, - aux_sym_insert_returning_repeat1, - STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [17087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 8, - aux_sym_delete_statement_token3, + ACTIONS(93), 8, + aux_sym_create_type_statement_token3, aux_sym_trigger_event_token2, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, anon_sym_GT, aux_sym_and_token1, - sym_identifier, - ACTIONS(123), 12, + sym__identifier, + ACTIONS(91), 12, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ, @@ -25395,1090 +34834,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_PIPE_PIPE, sym_cast, - [17115] = 3, + [26856] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(51), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [17143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(61), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(59), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [17171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 8, - aux_sym_delete_statement_token3, - aux_sym_trigger_event_token2, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - aux_sym_and_token1, - sym_identifier, - ACTIONS(139), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_BANG_EQ, - anon_sym_PIPE_PIPE, - sym_cast, - [17199] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_SEMI, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - STATE(335), 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, - [17244] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - ACTIONS(860), 1, - anon_sym_SEMI, - STATE(343), 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, - [17289] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - ACTIONS(862), 1, - aux_sym_join_item_token1, - ACTIONS(864), 1, - aux_sym_join_item_token2, - STATE(896), 1, - sym_join_type, - STATE(341), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(756), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [17328] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(352), 1, - sym_select_from, - STATE(386), 1, - sym_select_where, - STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, + ACTIONS(794), 1, aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [17381] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, + ACTIONS(900), 1, aux_sym_grant_roles_token2, - ACTIONS(734), 1, + ACTIONS(902), 1, aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(351), 1, - sym_select_from, - STATE(396), 1, - sym_select_where, - STATE(412), 1, - sym_select_group_by, - STATE(460), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(489), 1, - sym_select_order_by, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [17434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(870), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17484] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(355), 1, - sym_select_from, - STATE(393), 1, - sym_select_where, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [17537] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(717), 1, - aux_sym_join_item_token3, - ACTIONS(720), 1, - aux_sym_join_type_token1, - ACTIONS(872), 1, - aux_sym_join_item_token1, - ACTIONS(875), 1, - aux_sym_join_item_token2, - STATE(896), 1, - sym_join_type, - STATE(332), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(723), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(709), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [17576] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - aux_sym_delete_statement_token2, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(356), 1, - sym_select_from, - STATE(397), 1, - sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [17629] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - ACTIONS(878), 1, - anon_sym_SEMI, - STATE(338), 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, - [17674] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - ACTIONS(878), 1, - anon_sym_SEMI, - STATE(343), 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, - [17719] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_LPAREN, - ACTIONS(882), 1, - aux_sym_delete_statement_token3, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 13, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(884), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17777] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - ACTIONS(886), 1, - anon_sym_SEMI, - STATE(343), 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, - [17822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(888), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17847] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(844), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(846), 1, - aux_sym_sequence_increment_token1, - ACTIONS(848), 1, - aux_sym_sequence_min_token1, - ACTIONS(850), 1, - aux_sym_sequence_max_token1, - ACTIONS(852), 1, - aux_sym_sequence_start_token1, - ACTIONS(854), 1, - aux_sym_sequence_cache_token1, - ACTIONS(856), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(858), 1, - aux_sym_sequence_owned_token1, - ACTIONS(886), 1, - anon_sym_SEMI, - STATE(325), 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, - [17892] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - ACTIONS(862), 1, - aux_sym_join_item_token1, - ACTIONS(864), 1, - aux_sym_join_item_token2, - STATE(896), 1, - sym_join_type, - STATE(332), 2, - sym_join_item, - aux_sym_from_item_repeat1, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - ACTIONS(744), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [17931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [17956] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(890), 1, - anon_sym_SEMI, - ACTIONS(892), 1, - aux_sym_delete_statement_token3, - ACTIONS(895), 1, - aux_sym_fk_ref_action_token1, - ACTIONS(898), 1, - aux_sym_sequence_increment_token1, - ACTIONS(901), 1, - aux_sym_sequence_min_token1, ACTIONS(904), 1, - aux_sym_sequence_max_token1, - ACTIONS(907), 1, - aux_sym_sequence_start_token1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, ACTIONS(910), 1, - aux_sym_sequence_cache_token1, - ACTIONS(913), 1, - aux_sym_sequence_cycle_token1, - ACTIONS(916), 1, - aux_sym_sequence_owned_token1, - STATE(343), 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, - [18001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(179), 19, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(121), 15, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(125), 15, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(882), 1, - aux_sym_delete_statement_token3, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 13, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(117), 15, - aux_sym_delete_statement_token3, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18134] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(798), 1, - aux_sym_delete_statement_token3, - ACTIONS(800), 1, - sym_identifier, - ACTIONS(794), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(796), 13, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18164] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(397), 1, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(486), 1, + sym_select_from, + STATE(527), 1, sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [18211] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(388), 1, - sym_select_where, - STATE(414), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(473), 1, - sym_select_having, - STATE(507), 1, - sym_select_order_by, - STATE(580), 1, - sym_select_limit, - ACTIONS(919), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [18258] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(396), 1, - sym_select_where, - STATE(412), 1, - sym_select_group_by, - STATE(460), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(489), 1, - sym_select_order_by, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [18305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(923), 1, - aux_sym_insert_conflict_token1, - STATE(368), 1, - sym__list_of_identifiers, - STATE(375), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(921), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [18336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(834), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(836), 13, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [18363] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(386), 1, - sym_select_where, - STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [18410] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - STATE(393), 1, - sym_select_where, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(726), 5, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 2, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [18457] = 9, + [26918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - ACTIONS(925), 1, - aux_sym_join_item_token1, - ACTIONS(927), 1, - aux_sym_join_item_token2, - STATE(918), 1, + STATE(728), 1, sym_join_type, - STATE(360), 2, + STATE(472), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(754), 3, + ACTIONS(970), 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, - ACTIONS(756), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, aux_sym_where_filter_token1, - [18493] = 6, + [26948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(929), 1, + ACTIONS(35), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(33), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [26976] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(518), 1, + sym_select_where, + STATE(549), 1, + sym_select_group_by, + STATE(584), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(661), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [27032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(79), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [27060] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(914), 1, + anon_sym_COMMA, + ACTIONS(1111), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1113), 1, anon_sym_LPAREN, - ACTIONS(931), 1, - aux_sym_delete_statement_token3, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 10, + STATE(445), 1, + sym_identifier, + ACTIONS(920), 15, aux_sym_insert_statement_token2, - aux_sym_insert_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, @@ -26487,741 +35020,1333 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [18523] = 9, + [27096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(717), 1, - aux_sym_join_item_token3, - ACTIONS(720), 1, - aux_sym_join_type_token1, - ACTIONS(933), 1, - aux_sym_join_item_token1, - ACTIONS(936), 1, - aux_sym_join_item_token2, - STATE(918), 1, + STATE(728), 1, sym_join_type, - STATE(359), 2, + STATE(459), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(723), 3, + ACTIONS(1007), 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, - ACTIONS(709), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, aux_sym_where_filter_token1, - [18559] = 9, + [27126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(750), 1, + ACTIONS(31), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(29), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [27154] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, aux_sym_join_item_token3, - ACTIONS(752), 1, + ACTIONS(978), 1, aux_sym_join_type_token1, - ACTIONS(925), 1, + ACTIONS(1107), 1, aux_sym_join_item_token1, - ACTIONS(927), 1, + ACTIONS(1109), 1, aux_sym_join_item_token2, - STATE(918), 1, + STATE(728), 1, sym_join_type, - STATE(359), 2, + STATE(460), 2, sym_join_item, aux_sym_from_item_repeat1, - ACTIONS(754), 3, + ACTIONS(980), 3, aux_sym_join_type_token2, aux_sym_join_type_token4, aux_sym_join_type_token5, - ACTIONS(744), 6, + ACTIONS(970), 10, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_returning_token1, + 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, - [18595] = 16, + [27194] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(900), 1, aux_sym_grant_roles_token2, - ACTIONS(734), 1, + ACTIONS(902), 1, aux_sym_select_having_token1, - ACTIONS(736), 1, + ACTIONS(904), 1, aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, aux_sym_select_order_by_token1, - ACTIONS(742), 1, + ACTIONS(910), 1, aux_sym_where_filter_token1, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(351), 1, - sym_select_from, - STATE(396), 1, + STATE(511), 1, sym_select_where, - STATE(412), 1, + STATE(552), 1, sym_select_group_by, - STATE(460), 1, + STATE(587), 1, sym_select_having, - STATE(469), 1, + STATE(654), 1, sym_where_filter, - STATE(489), 1, + STATE(663), 1, sym_select_order_by, - STATE(596), 1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(866), 2, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, anon_sym_SEMI, anon_sym_RPAREN, - [18645] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(355), 1, - sym_select_from, - STATE(393), 1, - sym_select_where, - STATE(419), 1, - sym_select_group_by, - STATE(469), 1, - sym_where_filter, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [18695] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - aux_sym_insert_items_token1, - ACTIONS(943), 1, - aux_sym_conflict_target_token1, - ACTIONS(947), 1, - aux_sym_alter_column_action_token1, - ACTIONS(949), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(951), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(953), 1, - aux_sym_constraint_foreign_key_token1, - ACTIONS(955), 1, - anon_sym_LBRACK, - STATE(407), 1, - sym_column_constraint_ty, - STATE(411), 1, - sym_constraint_foreign_key, - ACTIONS(945), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(382), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(939), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [18739] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(352), 1, - sym_select_from, - STATE(386), 1, - sym_select_where, - STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [18789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(959), 1, - anon_sym_COMMA, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(957), 14, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_alter_table_rename_column_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [18815] = 4, + [27250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(964), 1, - anon_sym_LPAREN, - STATE(394), 1, - sym_precision, - ACTIONS(962), 14, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_conflict_target_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_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - [18841] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - ACTIONS(742), 1, - aux_sym_where_filter_token1, - ACTIONS(830), 1, - aux_sym_delete_statement_token2, - STATE(356), 1, - sym_select_from, - STATE(397), 1, - sym_select_where, - STATE(423), 1, - sym_select_group_by, - STATE(458), 1, - sym_select_having, - STATE(469), 1, - sym_where_filter, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [18891] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - aux_sym_insert_conflict_token1, - STATE(377), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(966), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [18916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(115), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(117), 12, - aux_sym_insert_statement_token2, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_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, - [18939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(121), 12, - aux_sym_insert_statement_token2, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_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, - [18962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(968), 15, - anon_sym_SEMI, - aux_sym_insert_items_token1, - aux_sym_insert_items_token2, - anon_sym_LPAREN, - aux_sym_delete_statement_token3, - 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, - [18983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(125), 12, - aux_sym_insert_statement_token2, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token3, - aux_sym_join_item_token1, - aux_sym_join_item_token2, - aux_sym_join_item_token3, - aux_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, - [19006] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - aux_sym_insert_items_token1, - ACTIONS(975), 1, - aux_sym_conflict_target_token1, - ACTIONS(981), 1, - aux_sym_alter_column_action_token1, - ACTIONS(984), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(987), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(990), 1, - aux_sym_constraint_foreign_key_token1, - STATE(407), 1, - sym_column_constraint_ty, - STATE(411), 1, - sym_constraint_foreign_key, - ACTIONS(978), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(373), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(970), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [19047] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(798), 1, - aux_sym_delete_statement_token3, - ACTIONS(800), 1, - sym_identifier, - ACTIONS(794), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(796), 10, - aux_sym_insert_statement_token2, - aux_sym_insert_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, - [19074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - aux_sym_insert_conflict_token1, - STATE(379), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(966), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [19099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(931), 1, - aux_sym_delete_statement_token3, - ACTIONS(766), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(768), 10, - aux_sym_insert_statement_token2, - aux_sym_insert_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, - [19126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - aux_sym_insert_conflict_token1, - STATE(379), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(993), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [19151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(995), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19176] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1001), 1, - aux_sym_insert_conflict_token1, - STATE(379), 2, - sym_fk_action, - aux_sym_constraint_foreign_key_repeat1, - ACTIONS(999), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [19201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1004), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - STATE(378), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1004), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19251] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - aux_sym_insert_items_token1, - ACTIONS(943), 1, - aux_sym_conflict_target_token1, - ACTIONS(947), 1, - aux_sym_alter_column_action_token1, - ACTIONS(949), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(951), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(953), 1, - aux_sym_constraint_foreign_key_token1, - STATE(407), 1, - sym_column_constraint_ty, - STATE(411), 1, - sym_constraint_foreign_key, - ACTIONS(945), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - STATE(373), 2, - sym_column_constraint, - aux_sym_table_column_item_repeat1, - ACTIONS(1006), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [19292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(957), 15, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_alter_table_rename_column_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - STATE(380), 1, - aux_sym_grant_privileges_repeat1, - ACTIONS(1008), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_index_using_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_COMMA, - STATE(385), 1, - aux_sym_insert_returning_repeat1, - ACTIONS(1010), 12, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19362] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(412), 1, - sym_select_group_by, - STATE(460), 1, - sym_select_having, - STATE(489), 1, - sym_select_order_by, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [19400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 1, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1017), 1, + aux_sym_create_type_statement_token3, + STATE(372), 1, sym_identifier, ACTIONS(1015), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1017), 10, + ACTIONS(1019), 14, aux_sym_insert_statement_token2, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + 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, + [27284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 8, + aux_sym_create_type_statement_token3, + aux_sym_trigger_event_token2, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + aux_sym_and_token1, + sym__identifier, + ACTIONS(107), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_BANG_EQ, + anon_sym_PIPE_PIPE, + sym_cast, + [27312] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(966), 1, + aux_sym_delete_statement_token2, + STATE(481), 1, + sym_select_from, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [27374] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(912), 1, + aux_sym_for_statement_token2, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(491), 1, + sym_select_from, + STATE(525), 1, + sym_select_where, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + [27435] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 1, + anon_sym_SEMI, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + STATE(484), 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, + [27480] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(525), 1, + sym_select_where, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [27537] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(728), 1, + sym_join_type, + STATE(503), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(970), 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, + [27566] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1135), 1, + anon_sym_SEMI, + STATE(488), 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, + [27611] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1135), 1, + anon_sym_SEMI, + STATE(502), 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, + [27656] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(527), 1, + sym_select_where, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [27713] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [27770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(93), 16, + aux_sym_create_type_statement_token3, + 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, + [27797] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1137), 1, + anon_sym_SEMI, + STATE(502), 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, + [27842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 2, + anon_sym_LPAREN, + anon_sym_COMMA, + ACTIONS(27), 17, + aux_sym_create_type_statement_token3, + 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, + [27869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(85), 16, + aux_sym_create_type_statement_token3, + 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, + [27896] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(535), 1, + sym_select_where, + STATE(576), 1, + sym_select_group_by, + STATE(623), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [27953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + STATE(419), 1, + sym_identifier, + ACTIONS(1035), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1037), 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, + [27984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(89), 16, + aux_sym_create_type_statement_token3, + 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, + [28011] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(1005), 1, + aux_sym_for_statement_token2, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(500), 1, + sym_select_from, + STATE(535), 1, + sym_select_where, + STATE(576), 1, + sym_select_group_by, + STATE(623), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + [28072] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1139), 1, + anon_sym_SEMI, + STATE(502), 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, + [28117] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(894), 1, + aux_sym_for_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(481), 1, + sym_select_from, + STATE(529), 1, + sym_select_where, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + [28178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1141), 1, + aux_sym_join_item_token1, + ACTIONS(1143), 1, + aux_sym_join_item_token2, + STATE(728), 1, + sym_join_type, + STATE(501), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(970), 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, - [19424] = 11, + [28217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(416), 1, - sym_select_group_by, - STATE(462), 1, - sym_select_having, - STATE(497), 1, - sym_select_order_by, - STATE(590), 1, - sym_select_limit, - ACTIONS(1021), 5, - anon_sym_SEMI, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1015), 1, + anon_sym_COMMA, + ACTIONS(1017), 1, + aux_sym_create_type_statement_token3, + STATE(372), 1, + sym_identifier, + ACTIONS(1019), 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, + [28250] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(157), 1, + aux_sym_for_statement_token2, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + ACTIONS(1055), 1, + aux_sym_delete_statement_token2, + STATE(486), 1, + sym_select_from, + STATE(527), 1, + sym_select_where, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + [28311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + ACTIONS(910), 1, + aux_sym_where_filter_token1, + STATE(524), 1, + sym_select_where, + STATE(571), 1, + sym_select_group_by, + STATE(607), 1, + sym_select_having, + STATE(654), 1, + sym_where_filter, + STATE(689), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(835), 1, + sym__select_limit_offset, + ACTIONS(1095), 3, + anon_sym_SEMI, anon_sym_RPAREN, + aux_sym_for_statement_token2, + [28368] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1141), 1, + aux_sym_join_item_token1, + ACTIONS(1143), 1, + aux_sym_join_item_token2, + STATE(728), 1, + sym_join_type, + STATE(505), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1007), 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, + [28407] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 1, + anon_sym_SEMI, + ACTIONS(1147), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1150), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1153), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1156), 1, + aux_sym_sequence_min_token1, + ACTIONS(1159), 1, + aux_sym_sequence_max_token1, + ACTIONS(1162), 1, + aux_sym_sequence_start_token1, + ACTIONS(1165), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1168), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1171), 1, + aux_sym_sequence_owned_token1, + STATE(502), 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, + [28452] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(728), 1, + sym_join_type, + STATE(505), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1007), 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, + [28481] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1119), 1, + aux_sym_fk_ref_action_token1, + ACTIONS(1121), 1, + aux_sym_sequence_increment_token1, + ACTIONS(1123), 1, + aux_sym_sequence_min_token1, + ACTIONS(1125), 1, + aux_sym_sequence_max_token1, + ACTIONS(1127), 1, + aux_sym_sequence_start_token1, + ACTIONS(1129), 1, + aux_sym_sequence_cache_token1, + ACTIONS(1131), 1, + aux_sym_sequence_cycle_token1, + ACTIONS(1133), 1, + aux_sym_sequence_owned_token1, + ACTIONS(1137), 1, + anon_sym_SEMI, + STATE(495), 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, + [28526] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + aux_sym_join_item_token3, + ACTIONS(993), 1, + aux_sym_join_type_token1, + ACTIONS(1174), 1, + aux_sym_join_item_token1, + ACTIONS(1177), 1, + aux_sym_join_item_token2, + STATE(728), 1, + sym_join_type, + STATE(505), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(996), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(982), 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, + [28565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1035), 1, + anon_sym_COMMA, + STATE(419), 1, + sym_identifier, + ACTIONS(1037), 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, + [28595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_COMMA, + ACTIONS(89), 17, + aux_sym_create_type_statement_token3, + 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, + [28621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_COMMA, + ACTIONS(85), 17, + aux_sym_create_type_statement_token3, + 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, + [28647] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(521), 1, + sym_precision, + ACTIONS(1180), 16, + 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_index_using_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_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [28675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_COMMA, + ACTIONS(93), 17, + aux_sym_create_type_statement_token3, + 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, + [28701] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(549), 1, + sym_select_group_by, + STATE(584), 1, + sym_select_having, + STATE(661), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [19462] = 2, + [28748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 14, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(555), 1, + sym_select_group_by, + STATE(591), 1, + sym_select_having, + STATE(653), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(811), 1, + sym__select_limit_offset, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [28795] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(552), 1, + sym_select_group_by, + STATE(587), 1, + sym_select_having, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [28842] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 1, + anon_sym_LBRACK, + STATE(540), 1, + aux_sym__type_repeat1, + ACTIONS(1188), 2, + aux_sym__type_token1, + aux_sym__type_token2, + ACTIONS(1184), 13, anon_sym_SEMI, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_items_token1, aux_sym_conflict_target_token1, aux_sym_create_index_statement_token1, aux_sym_index_using_token1, @@ -27231,229 +36356,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, anon_sym_COLON_EQ, - anon_sym_LBRACK, - [19482] = 15, + [28871] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, - aux_sym_conflict_target_token1, - ACTIONS(1027), 1, - aux_sym_create_table_statement_token2, - ACTIONS(1029), 1, - aux_sym_create_table_statement_token3, - ACTIONS(1031), 1, - aux_sym_create_schema_statement_token1, - ACTIONS(1033), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1035), 1, - aux_sym_create_index_statement_token2, - ACTIONS(1037), 1, - aux_sym_grant_targets_token5, - ACTIONS(1039), 1, - aux_sym_grant_targets_token6, - ACTIONS(1041), 1, - aux_sym_create_trigger_statement_token1, - ACTIONS(1043), 1, - aux_sym_trigger_event_token2, - ACTIONS(1045), 1, - aux_sym_temporary_token1, - ACTIONS(1047), 1, - aux_sym_temporary_token2, - STATE(756), 1, - sym_temporary, - STATE(1094), 1, - sym_or_replace, - [19528] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 14, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(546), 1, + sym_select_group_by, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_conflict_target_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_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - [19548] = 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [28918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 1, + ACTIONS(1099), 1, anon_sym_BSLASH, - ACTIONS(1051), 13, + ACTIONS(1097), 16, + aux_sym_create_type_statement_token1, aux_sym_insert_statement_token1, aux_sym_insert_conflict_token3, - aux_sym_create_table_statement_token1, 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_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, - aux_sym_body_token2, - sym_identifier, - [19570] = 11, + sym__identifier, + [28943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(424), 1, - sym_select_group_by, - STATE(468), 1, - sym_select_having, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [19608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1055), 14, + STATE(557), 1, + sym__list_of_identifiers, + STATE(564), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(1190), 12, anon_sym_SEMI, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_items_token1, aux_sym_conflict_target_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, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - [19628] = 11, + [28974] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(900), 1, aux_sym_grant_roles_token2, - ACTIONS(734), 1, + ACTIONS(902), 1, aux_sym_select_having_token1, - ACTIONS(736), 1, + ACTIONS(904), 1, aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, aux_sym_select_order_by_token1, - STATE(423), 1, + STATE(563), 1, sym_select_group_by, - STATE(458), 1, + STATE(588), 1, sym_select_having, - STATE(494), 1, + STATE(656), 1, sym_select_order_by, - STATE(617), 1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(127), 5, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [19666] = 11, + [29021] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(900), 1, aux_sym_grant_roles_token2, - ACTIONS(734), 1, + ACTIONS(902), 1, aux_sym_select_having_token1, - ACTIONS(736), 1, + ACTIONS(904), 1, aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, aux_sym_select_order_by_token1, - STATE(414), 1, + STATE(566), 1, sym_select_group_by, - STATE(473), 1, + STATE(579), 1, sym_select_having, - STATE(507), 1, + STATE(652), 1, sym_select_order_by, - STATE(580), 1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(919), 5, + STATE(784), 1, + sym_into, + STATE(805), 1, + sym__select_limit_offset, + ACTIONS(1194), 5, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [19704] = 11, + [29068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, - aux_sym_grant_roles_token2, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(419), 1, - sym_select_group_by, - STATE(472), 1, - sym_select_having, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [19742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1057), 14, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_conflict_target_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_table_constraint_ty_token1, - aux_sym_table_constraint_ty_token2, - aux_sym_constraint_foreign_key_token1, - anon_sym_COLON_EQ, - anon_sym_LBRACK, - [19762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1196), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1198), 1, + anon_sym_LPAREN, + STATE(445), 1, sym_identifier, - ACTIONS(834), 3, + ACTIONS(914), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(836), 10, + ACTIONS(920), 10, aux_sym_insert_statement_token2, aux_sym_insert_returning_token1, aux_sym_join_item_token1, @@ -27464,427 +36528,1610 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_join_type_token4, aux_sym_join_type_token5, aux_sym_where_filter_token1, - [19786] = 2, + [29101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1015), 13, + ACTIONS(1200), 16, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1059), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 1, - anon_sym_COMMA, - STATE(408), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1061), 11, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1067), 1, - aux_sym_constraint_when_token1, - STATE(447), 1, - sym_constraint_when, - ACTIONS(1065), 11, - anon_sym_SEMI, aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_conflict_target_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_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, - [19870] = 2, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [29123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 13, + STATE(732), 1, + sym_join_type, + STATE(536), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1007), 13, anon_sym_SEMI, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, - 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, - [19889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1071), 13, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [19908] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1075), 1, - anon_sym_COMMA, - STATE(406), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1073), 11, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - 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, - [19931] = 4, + [29149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - aux_sym_constraint_when_token1, - STATE(427), 1, - sym_constraint_when, - ACTIONS(1078), 11, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [19954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1063), 1, - anon_sym_COMMA, - STATE(406), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1080), 11, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19977] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 13, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [19996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1082), 13, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1084), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20033] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(473), 1, - sym_select_having, - STATE(507), 1, - sym_select_order_by, - STATE(580), 1, - sym_select_limit, - ACTIONS(919), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1086), 12, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20083] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(462), 1, - sym_select_having, - STATE(497), 1, - sym_select_order_by, - STATE(590), 1, - sym_select_limit, - ACTIONS(1021), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 1, - anon_sym_COMMA, - STATE(415), 1, - aux_sym_insert_returning_repeat1, - ACTIONS(1010), 10, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_delete_statement_token2, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [20137] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(454), 1, - sym_select_having, - STATE(493), 1, - sym_select_order_by, - STATE(595), 1, - sym_select_limit, - ACTIONS(1091), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1202), 1, + aux_sym_create_type_statement_token3, + STATE(372), 1, sym_identifier, ACTIONS(1015), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1017), 8, + ACTIONS(1019), 10, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [29179] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(574), 1, + sym_select_group_by, + STATE(615), 1, + sym_select_having, + STATE(683), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, + sym_into, + STATE(858), 1, + sym__select_limit_offset, + ACTIONS(1194), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29227] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(576), 1, + sym_select_group_by, + STATE(623), 1, + sym_select_having, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 4, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(27), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [29299] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(572), 1, + sym_select_group_by, + STATE(610), 1, + sym_select_having, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29347] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(732), 1, + sym_join_type, + STATE(522), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(970), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [29373] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(567), 1, + sym_select_group_by, + STATE(606), 1, + sym_select_having, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29421] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(570), 1, + sym_select_group_by, + STATE(609), 1, + sym_select_having, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1204), 16, + 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_index_using_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_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [29491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1206), 16, + 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_index_using_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_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [29513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 16, + 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_index_using_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, + aux_sym_grant_targets_token4, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [29535] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1208), 1, + aux_sym_join_item_token1, + ACTIONS(1210), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + STATE(537), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(970), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [29571] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(900), 1, + aux_sym_grant_roles_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(571), 1, + sym_select_group_by, + STATE(607), 1, + sym_select_having, + STATE(689), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(835), 1, + sym__select_limit_offset, + ACTIONS(1095), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [29619] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + aux_sym_join_item_token3, + ACTIONS(993), 1, + aux_sym_join_type_token1, + ACTIONS(1212), 1, + aux_sym_join_item_token1, + ACTIONS(1215), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + STATE(536), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(996), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(982), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [29655] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1208), 1, + aux_sym_join_item_token1, + ACTIONS(1210), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + STATE(536), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + ACTIONS(1007), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [29691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 16, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_delete_statement_token2, + 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, + [29713] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + aux_sym_create_type_statement_token2, + ACTIONS(1222), 1, + aux_sym_conflict_target_token1, + ACTIONS(1224), 1, + aux_sym_create_table_statement_token1, + ACTIONS(1226), 1, + aux_sym_create_table_statement_token2, + ACTIONS(1228), 1, + aux_sym_create_schema_statement_token1, + ACTIONS(1230), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1232), 1, + aux_sym_create_index_statement_token2, + ACTIONS(1234), 1, + aux_sym_grant_targets_token5, + ACTIONS(1236), 1, + aux_sym_grant_targets_token6, + ACTIONS(1238), 1, + aux_sym_create_trigger_statement_token1, + ACTIONS(1240), 1, + aux_sym_trigger_event_token2, + ACTIONS(1242), 1, + aux_sym_temporary_token1, + ACTIONS(1244), 1, + aux_sym_temporary_token2, + STATE(971), 1, + sym_temporary, + STATE(1465), 1, + sym_or_replace, + [29762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 1, + anon_sym_LBRACK, + STATE(562), 1, + aux_sym__type_repeat1, + ACTIONS(1246), 13, + 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_index_using_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_COLON_EQ, + [29787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_COMMA, + STATE(561), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1248), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [29812] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + aux_sym_insert_items_token1, + ACTIONS(1256), 1, + aux_sym_conflict_target_token1, + ACTIONS(1260), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1262), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1264), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1266), 1, + aux_sym_constraint_foreign_key_token1, + STATE(598), 1, + sym_column_constraint_ty, + STATE(603), 1, + sym_constraint_foreign_key, + ACTIONS(1258), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(560), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(1252), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [29853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, + aux_sym_insert_conflict_token1, + STATE(559), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(1268), 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, + [29878] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(582), 1, + sym_select_having, + STATE(645), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [29919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(93), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [29942] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(587), 1, + sym_select_having, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [29983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_COMMA, + STATE(561), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1270), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30008] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 1, + aux_sym_insert_items_token1, + ACTIONS(1277), 1, + aux_sym_conflict_target_token1, + ACTIONS(1283), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1286), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1289), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1292), 1, + aux_sym_constraint_foreign_key_token1, + STATE(598), 1, + sym_column_constraint_ty, + STATE(603), 1, + sym_constraint_foreign_key, + ACTIONS(1280), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(548), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(1272), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [30049] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(588), 1, + sym_select_having, + STATE(656), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [30090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(85), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [30113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(89), 12, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [30136] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(584), 1, + sym_select_having, + STATE(661), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [30177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_COMMA, + STATE(541), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1295), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + STATE(577), 1, + sym_identifier, + ACTIONS(1297), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1299), 10, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30229] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(579), 1, + sym_select_having, + STATE(652), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, + sym_into, + STATE(805), 1, + sym__select_limit_offset, + ACTIONS(1194), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [30270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + STATE(419), 1, + sym_identifier, + ACTIONS(1035), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1037), 10, + aux_sym_insert_statement_token2, + aux_sym_insert_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, + [30297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, + aux_sym_insert_conflict_token1, + STATE(543), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(1301), 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, + [30322] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1250), 1, + anon_sym_COMMA, + STATE(547), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1248), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1305), 1, + aux_sym_insert_conflict_token1, + STATE(559), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(1303), 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, + [30372] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + aux_sym_insert_items_token1, + ACTIONS(1256), 1, + aux_sym_conflict_target_token1, + ACTIONS(1260), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1262), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1264), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1266), 1, + aux_sym_constraint_foreign_key_token1, + STATE(598), 1, + sym_column_constraint_ty, + STATE(603), 1, + sym_constraint_foreign_key, + ACTIONS(1258), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + STATE(548), 2, + sym_column_constraint, + aux_sym_table_column_item_repeat1, + ACTIONS(1308), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [30413] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + anon_sym_COMMA, + STATE(561), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1218), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1315), 1, + anon_sym_LBRACK, + STATE(562), 1, + aux_sym__type_repeat1, + ACTIONS(1313), 13, + 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_index_using_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_COLON_EQ, + [30463] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(591), 1, + sym_select_having, + STATE(653), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(811), 1, + sym__select_limit_offset, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [30504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, + aux_sym_insert_conflict_token1, + STATE(559), 2, + sym_fk_action, + aux_sym_constraint_foreign_key_repeat1, + ACTIONS(1301), 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, + [30529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 15, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [30550] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(596), 1, + sym_select_having, + STATE(651), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, + sym_into, + STATE(801), 1, + sym__select_limit_offset, + ACTIONS(1320), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [30591] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(623), 1, + sym_select_having, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1313), 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_index_using_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_COLON_EQ, + anon_sym_LBRACK, + [30653] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(609), 1, + sym_select_having, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30695] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(610), 1, + sym_select_having, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30737] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(615), 1, + sym_select_having, + STATE(683), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, + sym_into, + STATE(858), 1, + sym__select_limit_offset, + ACTIONS(1194), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30779] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(606), 1, + sym_select_having, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 1, + anon_sym_COMMA, + STATE(573), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1322), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30845] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(601), 1, + sym_select_having, + STATE(680), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, + sym_into, + STATE(856), 1, + sym__select_limit_offset, + ACTIONS(1320), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30907] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(902), 1, + aux_sym_select_having_token1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(607), 1, + sym_select_having, + STATE(689), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(835), 1, + sym__select_limit_offset, + ACTIONS(1095), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [30949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1327), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 14, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_delete_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, + [30989] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(651), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, + sym_into, + STATE(801), 1, + sym__select_limit_offset, + ACTIONS(1320), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [31024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 6, + aux_sym_create_type_statement_token3, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_where_filter_token1, + sym__identifier, + ACTIONS(25), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON_EQ, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [31045] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(645), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [31080] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(663), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [31115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + STATE(577), 1, + sym_identifier, + ACTIONS(1297), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1299), 8, aux_sym_insert_statement_token2, aux_sym_delete_statement_token2, aux_sym_grant_roles_token2, aux_sym_select_having_token1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [20191] = 2, + [31140] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 12, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(656), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, anon_sym_SEMI, + anon_sym_RPAREN, aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [31175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 13, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_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_limit_token2, + aux_sym_select_offset_token1, aux_sym_select_order_by_token1, aux_sym_where_filter_token1, - [20209] = 9, + [31194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(468), 1, - sym_select_having, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, + ACTIONS(1331), 13, anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20241] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(458), 1, - sym_select_having, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 1, - aux_sym_constraint_when_token2, - ACTIONS(1093), 11, - anon_sym_SEMI, - aux_sym_insert_items_token1, anon_sym_COMMA, anon_sym_RPAREN, - 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, - [20293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(296), 12, - anon_sym_SEMI, aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_insert_conflict_token1, aux_sym_conflict_target_token1, aux_sym_create_index_statement_token1, aux_sym_alter_column_action_token1, @@ -27893,7675 +38140,10549 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_table_constraint_ty_token1, aux_sym_table_constraint_ty_token2, aux_sym_constraint_foreign_key_token1, - [20311] = 9, + [31213] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, + ACTIONS(904), 1, aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, aux_sym_select_order_by_token1, - STATE(472), 1, - sym_select_having, - STATE(508), 1, + STATE(661), 1, sym_select_order_by, - STATE(570), 1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20343] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(734), 1, - aux_sym_select_having_token1, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(460), 1, - sym_select_having, - STATE(489), 1, - sym_select_order_by, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [20375] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1101), 1, - aux_sym_alter_table_action_token2, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1111), 1, - sym_identifier, - STATE(569), 1, - sym_table_constraint_ty, - STATE(911), 1, - sym_if_not_exists, - STATE(887), 2, - sym_table_constraint, - sym_table_column_item, - [20413] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - aux_sym_insert_conflict_token6, - ACTIONS(1115), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(1117), 1, - aux_sym_alter_table_action_token1, - ACTIONS(1119), 1, - aux_sym_alter_table_action_token3, - ACTIONS(1121), 1, - aux_sym_alter_table_rename_column_token1, - STATE(700), 1, - sym_alter_table_action, - STATE(921), 1, - sym_alter_table_change, - STATE(941), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [20444] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1123), 11, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1125), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1127), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1129), 11, - ts_builtin_sym_end, - anon_sym_SEMI, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_create_table_statement_token1, - 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, - [20497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1131), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1133), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20516] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(1137), 1, - aux_sym_insert_returning_token1, - ACTIONS(1139), 1, - aux_sym_index_using_token1, - ACTIONS(1141), 1, - aux_sym_delete_statement_token3, - ACTIONS(1143), 1, - aux_sym_where_filter_token1, - ACTIONS(1145), 1, - sym_identifier, - STATE(527), 1, - sym_delete_using, - STATE(599), 1, - sym_where_filter, - STATE(913), 1, + STATE(772), 1, sym_into, - ACTIONS(1135), 2, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, anon_sym_SEMI, anon_sym_RPAREN, - [20551] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - aux_sym_insert_conflict_token6, - ACTIONS(1115), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(1117), 1, - aux_sym_alter_table_action_token1, - ACTIONS(1119), 1, - aux_sym_alter_table_action_token3, - ACTIONS(1121), 1, - aux_sym_alter_table_rename_column_token1, - STATE(700), 1, - sym_alter_table_action, - STATE(1029), 1, - sym_alter_table_change, - STATE(941), 4, - sym_alter_table_rename_column, - sym_alter_table_rename_constraint, - sym_alter_table_rename_table, - sym_alter_table_change_schema, - [20582] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(487), 1, - sym_as, - STATE(502), 1, - sym_insert_items, - STATE(522), 1, - sym__list_of_identifiers, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [20619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1153), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1155), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20638] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(1157), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_table_constraint_ty, - STATE(786), 1, - sym_create_table_item, - STATE(837), 2, - sym_table_constraint, - sym_table_column_item, - [20673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - anon_sym_COMMA, - STATE(436), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(312), 9, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - aux_sym_select_having_token1, + [31248] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, aux_sym_select_limit_token1, - aux_sym_select_limit_token2, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, aux_sym_select_order_by_token1, - [20694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(306), 1, - anon_sym_COMMA, - STATE(436), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(1162), 9, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - [20715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1164), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1166), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1170), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1172), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1174), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1178), 1, - anon_sym_SEMI, - ACTIONS(1176), 10, - ts_builtin_sym_end, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_create_table_statement_token1, - 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, - [20791] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(1180), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_table_constraint_ty, - STATE(702), 1, - sym_create_table_item, - STATE(837), 2, - sym_table_constraint, - sym_table_column_item, - [20826] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(1182), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_table_constraint_ty, - STATE(716), 1, - sym_create_table_item, - STATE(837), 2, - sym_table_constraint, - sym_table_column_item, - [20861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1184), 4, - anon_sym_LPAREN, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - ACTIONS(1186), 7, - aux_sym_alter_column_action_token1, - aux_sym_alter_column_action_token2, - anon_sym_DASH, - aux_sym_true_token1, - aux_sym_false_token1, - sym_number, - sym_identifier, - [20880] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(1139), 1, - aux_sym_index_using_token1, - ACTIONS(1143), 1, - aux_sym_where_filter_token1, - ACTIONS(1190), 1, - aux_sym_insert_returning_token1, - ACTIONS(1192), 1, - aux_sym_delete_statement_token3, - ACTIONS(1194), 1, - sym_identifier, - STATE(524), 1, - sym_delete_using, - STATE(565), 1, - sym_where_filter, - STATE(901), 1, - sym_into, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [20915] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(1196), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_table_constraint_ty, - STATE(787), 1, - sym_create_table_item, - STATE(837), 2, - sym_table_constraint, - sym_table_column_item, - [20950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 11, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1200), 11, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [20984] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(842), 1, - aux_sym_delete_statement_token3, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(480), 1, - sym_as, - STATE(495), 1, - sym_insert_items, - STATE(517), 1, - sym__list_of_identifiers, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [21021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1204), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21053] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 1, - anon_sym_COMMA, - STATE(453), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1073), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [21089] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(500), 1, - sym_select_order_by, - STATE(612), 1, - sym_select_limit, - ACTIONS(1211), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21163] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(508), 1, - sym_select_order_by, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21189] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 1, - anon_sym_COMMA, - STATE(475), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1061), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [21209] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(507), 1, - sym_select_order_by, - STATE(580), 1, - sym_select_limit, - ACTIONS(919), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(493), 1, - sym_select_order_by, - STATE(595), 1, - sym_select_limit, - ACTIONS(1091), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21277] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(494), 1, - sym_select_order_by, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21319] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - aux_sym_conflict_target_token1, - ACTIONS(1099), 1, - aux_sym_create_index_statement_token1, - ACTIONS(1103), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(1105), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(1107), 1, - aux_sym_table_constraint_ty_token4, - ACTIONS(1111), 1, - sym_identifier, - STATE(569), 1, - sym_table_constraint_ty, - STATE(879), 1, - sym_create_table_item, - STATE(837), 2, - sym_table_constraint, - sym_table_column_item, - [21351] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(1139), 1, - aux_sym_index_using_token1, - ACTIONS(1143), 1, - aux_sym_where_filter_token1, - ACTIONS(1190), 1, - aux_sym_insert_returning_token1, - ACTIONS(1194), 1, - sym_identifier, - STATE(524), 1, - sym_delete_using, - STATE(565), 1, - sym_where_filter, - STATE(901), 1, - sym_into, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21383] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(147), 1, - aux_sym_insert_statement_token2, - ACTIONS(1139), 1, - aux_sym_index_using_token1, - ACTIONS(1143), 1, - aux_sym_where_filter_token1, - ACTIONS(1227), 1, - aux_sym_insert_returning_token1, - ACTIONS(1229), 1, - sym_identifier, - STATE(516), 1, - sym_delete_using, - STATE(593), 1, - sym_where_filter, - STATE(844), 1, - sym_into, - ACTIONS(1225), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21415] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(489), 1, - sym_select_order_by, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 10, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - [21457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(400), 10, - ts_builtin_sym_end, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token3, - aux_sym_create_table_statement_token1, - 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, - [21473] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21489] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(503), 1, - sym_select_order_by, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21515] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - ACTIONS(740), 1, - aux_sym_select_order_by_token1, - STATE(497), 1, - sym_select_order_by, - STATE(590), 1, - sym_select_limit, - ACTIONS(1021), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 10, - anon_sym_SEMI, - aux_sym_delete_statement_token3, - 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, - [21557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 1, - anon_sym_COMMA, - STATE(453), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1080), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - aux_sym_grant_roles_token2, - aux_sym_select_having_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - aux_sym_select_order_by_token1, - aux_sym_where_filter_token1, - [21577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_COMMA, - STATE(477), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(1237), 7, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [21596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1243), 1, - anon_sym_COMMA, - STATE(477), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(1241), 7, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [21615] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_insert_statement_token1, - ACTIONS(13), 1, - aux_sym_delete_statement_token1, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(23), 1, - aux_sym_select_statement_token1, - STATE(706), 1, - sym_with_query, - STATE(945), 4, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [21640] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1246), 1, - aux_sym_insert_returning_token1, - ACTIONS(1248), 1, - aux_sym_index_using_token1, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - STATE(516), 1, - sym_delete_using, - STATE(593), 1, - sym_where_filter, - STATE(844), 1, - sym_into, - ACTIONS(1225), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21669] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(504), 1, - sym_insert_items, - STATE(509), 1, - sym__list_of_identifiers, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [21700] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_insert_statement_token1, - ACTIONS(13), 1, - aux_sym_delete_statement_token1, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(23), 1, - aux_sym_select_statement_token1, - STATE(706), 1, - sym_with_query, - STATE(1071), 4, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [21725] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - aux_sym_insert_items_token1, - ACTIONS(947), 1, - aux_sym_alter_column_action_token1, - ACTIONS(949), 1, - aux_sym_table_constraint_ty_token1, - ACTIONS(951), 1, - aux_sym_table_constraint_ty_token2, - ACTIONS(953), 1, - aux_sym_constraint_foreign_key_token1, - STATE(403), 1, - sym_column_constraint_ty, - STATE(411), 1, - sym_constraint_foreign_key, - ACTIONS(945), 2, - aux_sym_create_index_statement_token1, - aux_sym_alter_column_action_token2, - [21754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - anon_sym_COMMA, - STATE(476), 1, - aux_sym_select_order_by_repeat1, - ACTIONS(1252), 7, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [21773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 1, - aux_sym_grant_privileges_token1, - ACTIONS(1260), 1, - sym_identifier, - STATE(930), 1, - sym_grant_targets, - ACTIONS(1254), 3, - aux_sym_create_table_statement_token3, - aux_sym_create_schema_statement_token1, - aux_sym_grant_targets_token5, - ACTIONS(1258), 3, - aux_sym_grant_targets_token6, - aux_sym_grant_targets_token7, - aux_sym_grant_targets_token8, - [21796] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1248), 1, - aux_sym_index_using_token1, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1264), 1, - aux_sym_insert_returning_token1, - STATE(520), 1, - sym_delete_using, - STATE(610), 1, - sym_where_filter, - STATE(824), 1, - sym_into, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21825] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - aux_sym_insert_statement_token1, - ACTIONS(13), 1, - aux_sym_delete_statement_token1, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(23), 1, - aux_sym_select_statement_token1, - STATE(706), 1, - sym_with_query, - STATE(1016), 4, - sym__with_query_statement, - sym_insert_statement, - sym_delete_statement, - sym_select_statement, - [21850] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(495), 1, - sym_insert_items, - STATE(517), 1, - sym__list_of_identifiers, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [21881] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1248), 1, - aux_sym_index_using_token1, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1266), 1, - aux_sym_insert_returning_token1, - STATE(524), 1, - sym_delete_using, - STATE(565), 1, - sym_where_filter, - STATE(901), 1, - sym_into, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21910] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(580), 1, - sym_select_limit, - ACTIONS(919), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [21930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1270), 1, - anon_sym_COMMA, - STATE(513), 1, - aux_sym_insert_conflict_repeat1, - STATE(621), 1, - sym_where_filter, - ACTIONS(1268), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - [21952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 8, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [21966] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1276), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(549), 1, - sym_insert_conflict, - STATE(657), 1, - sym_insert_returning, - STATE(884), 1, - sym_into, - ACTIONS(1274), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [21992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(612), 1, - sym_select_limit, - ACTIONS(1211), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(570), 1, - sym_select_limit, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22032] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1276), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(560), 1, - sym_insert_conflict, - STATE(643), 1, - sym_insert_returning, - STATE(868), 1, - sym_into, - ACTIONS(1280), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 8, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [22072] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(595), 1, - sym_select_limit, - ACTIONS(1091), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 8, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - aux_sym_select_limit_token1, - aux_sym_select_limit_token2, - [22106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1270), 1, - anon_sym_COMMA, - STATE(490), 1, - aux_sym_insert_conflict_repeat1, - STATE(633), 1, - sym_where_filter, - ACTIONS(1284), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - [22128] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(603), 1, - sym_select_limit, - ACTIONS(1286), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22148] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - aux_sym_trigger_scope_token1, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - ACTIONS(1294), 1, - aux_sym_trigger_cond_token1, STATE(653), 1, - sym_trigger_scope, - STATE(874), 1, - sym_trigger_cond, - STATE(1109), 1, - sym_trigger_exec, - ACTIONS(1288), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [22174] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1276), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(556), 1, - sym_insert_conflict, - STATE(641), 1, - sym_insert_returning, - STATE(877), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, sym_into, - ACTIONS(1296), 2, + STATE(811), 1, + sym__select_limit_offset, + ACTIONS(1095), 5, anon_sym_SEMI, anon_sym_RPAREN, - [22200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(596), 1, - sym_select_limit, - ACTIONS(866), 5, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [22220] = 8, + [31283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1276), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(561), 1, - sym_insert_conflict, - STATE(651), 1, - sym_insert_returning, - STATE(902), 1, - sym_into, - ACTIONS(1298), 2, + ACTIONS(1333), 13, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RPAREN, - [22246] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 1, - aux_sym_trigger_scope_token1, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - ACTIONS(1294), 1, - aux_sym_trigger_cond_token1, - STATE(679), 1, - sym_trigger_scope, - STATE(908), 1, - sym_trigger_cond, - STATE(1145), 1, - sym_trigger_exec, - ACTIONS(1288), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [22272] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(617), 1, - sym_select_limit, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(590), 1, - sym_select_limit, - ACTIONS(1021), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(736), 1, - aux_sym_select_limit_token1, - ACTIONS(738), 1, - aux_sym_select_limit_token2, - STATE(589), 1, - sym_select_limit, - ACTIONS(760), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [22332] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(1147), 1, aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(492), 1, - sym_insert_items, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [22357] = 6, + 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, + [31302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_identifier, - STATE(293), 1, - sym_function_call, - STATE(418), 1, - sym_from_item, - STATE(270), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22378] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1308), 1, - sym_identifier, - STATE(683), 2, - sym__type, - sym_predefined_types, - ACTIONS(1304), 3, + ACTIONS(1337), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [22397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1310), 1, - sym_identifier, - STATE(349), 1, - sym_function_call, - STATE(459), 1, - sym_from_item, - STATE(326), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(513), 1, - aux_sym_insert_conflict_repeat1, - ACTIONS(1312), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, - anon_sym_COMMA, - STATE(529), 1, + STATE(599), 1, aux_sym_delete_using_repeat1, - ACTIONS(1317), 5, + ACTIONS(1335), 11, anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1321), 1, - sym_identifier, - STATE(809), 2, - sym__type, - sym_predefined_types, - ACTIONS(1304), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [22471] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1264), 1, - aux_sym_insert_returning_token1, - STATE(610), 1, - sym_where_filter, - STATE(824), 1, - sym_into, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22494] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(504), 1, - sym_insert_items, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [22519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1302), 1, - sym_identifier, - STATE(293), 1, - sym_function_call, - STATE(402), 1, - sym_from_item, - STATE(270), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1319), 1, - anon_sym_COMMA, - STATE(514), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1323), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22557] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1327), 1, - aux_sym_insert_returning_token1, - STATE(583), 1, - sym_where_filter, - STATE(906), 1, - sym_into, - ACTIONS(1325), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22580] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - aux_sym_index_col_nulls_token1, - STATE(636), 1, - sym_index_col_dir, - STATE(852), 1, - sym_index_col_nulls, - ACTIONS(1329), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1331), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - [22601] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(1147), 1, - aux_sym_insert_items_token1, - ACTIONS(1149), 1, - aux_sym_insert_items_token2, - ACTIONS(1151), 1, - aux_sym_select_statement_token1, - STATE(495), 1, - sym_insert_items, - STATE(573), 1, - sym_select_statement, - STATE(973), 1, - sym_with_query, - [22626] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - sym_identifier, - STATE(374), 1, - sym_function_call, - STATE(418), 1, - sym_from_item, - STATE(357), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22647] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1246), 1, - aux_sym_insert_returning_token1, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - STATE(593), 1, - sym_where_filter, - STATE(844), 1, - sym_into, - ACTIONS(1225), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1310), 1, - sym_identifier, - STATE(349), 1, - sym_function_call, - STATE(418), 1, - sym_from_item, - STATE(326), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - sym_identifier, - STATE(374), 1, - sym_function_call, - STATE(519), 1, - sym_from_item, - STATE(357), 3, - sym_from_select, - sym_from_table, - sym_from_function, - [22712] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1266), 1, - aux_sym_insert_returning_token1, - STATE(565), 1, - sym_where_filter, - STATE(901), 1, - sym_into, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - aux_sym_index_col_nulls_token1, - STATE(650), 1, - sym_index_col_dir, - STATE(813), 1, - sym_index_col_nulls, - ACTIONS(1331), 2, - aux_sym_index_col_dir_token1, - aux_sym_index_col_dir_token2, - ACTIONS(1337), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [22756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1339), 1, - anon_sym_COMMA, - STATE(529), 1, - aux_sym_delete_using_repeat1, - ACTIONS(1073), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - STATE(904), 1, - sym_join_type, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [22791] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(554), 1, - aux_sym_insert_returning_repeat1, - STATE(847), 1, - sym_into, - ACTIONS(1342), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22811] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(828), 1, - sym_into, - ACTIONS(1346), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - STATE(859), 1, - sym_join_type, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [22849] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(539), 1, - aux_sym_insert_returning_repeat1, - STATE(828), 1, - sym_into, - ACTIONS(1346), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(559), 1, - aux_sym_insert_returning_repeat1, - STATE(906), 1, - sym_into, - ACTIONS(1325), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(750), 1, - aux_sym_join_item_token3, - ACTIONS(752), 1, - aux_sym_join_type_token1, - STATE(842), 1, - sym_join_type, - ACTIONS(754), 3, - aux_sym_join_type_token2, - aux_sym_join_type_token4, - aux_sym_join_type_token5, - [22907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(906), 1, - sym_into, - ACTIONS(1325), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22927] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(824), 1, - sym_into, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22947] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(841), 1, - sym_into, - ACTIONS(1348), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [22967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(390), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [22991] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [23003] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(537), 1, - aux_sym_insert_returning_repeat1, - STATE(824), 1, - sym_into, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [23035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [23047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1356), 6, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - aux_sym_where_filter_token1, - [23059] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_identifier, - STATE(872), 1, - sym_var_declaration, - ACTIONS(1358), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(547), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [23077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1363), 5, - anon_sym_SEMI, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - [23091] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(632), 1, - sym_insert_returning, - STATE(878), 1, - sym_into, - ACTIONS(1365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23111] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(532), 1, - aux_sym_insert_returning_repeat1, - STATE(867), 1, - sym_into, - ACTIONS(1367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23131] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - aux_sym_insert_conflict_token6, - ACTIONS(1373), 1, - aux_sym_alter_table_action_token3, - ACTIONS(1375), 1, - aux_sym_alter_column_action_token3, - STATE(910), 1, - sym_alter_column_action, - ACTIONS(1369), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [23151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - aux_sym_insert_conflict_token6, - ACTIONS(1373), 1, - aux_sym_alter_table_action_token3, - ACTIONS(1375), 1, - aux_sym_alter_column_action_token3, - STATE(849), 1, - sym_alter_column_action, - ACTIONS(1377), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [23171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, - sym_identifier, - STATE(872), 1, - sym_var_declaration, - ACTIONS(1379), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(547), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [23189] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(867), 1, - sym_into, - ACTIONS(1367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 1, aux_sym_grant_roles_token2, - STATE(947), 1, - sym_grant_roles, - ACTIONS(1383), 4, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - sym_identifier, - [23225] = 6, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [31325] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(643), 1, - sym_insert_returning, - STATE(868), 1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(652), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, sym_into, - ACTIONS(1280), 2, + STATE(805), 1, + sym__select_limit_offset, + ACTIONS(1194), 5, anon_sym_SEMI, anon_sym_RPAREN, - [23245] = 6, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [31360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1344), 1, + ACTIONS(1337), 1, anon_sym_COMMA, - STATE(538), 1, - aux_sym_insert_returning_repeat1, - STATE(844), 1, - sym_into, - ACTIONS(1225), 2, + STATE(590), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1339), 11, anon_sym_SEMI, anon_sym_RPAREN, - [23265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, - sym_identifier, - STATE(872), 1, - sym_var_declaration, - ACTIONS(1387), 2, - aux_sym_body_token1, - aux_sym_declarations_token1, - STATE(553), 2, - sym_var_definition, - aux_sym_declarations_repeat1, - [23283] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, aux_sym_insert_statement_token2, - ACTIONS(1344), 1, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [31383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 1, + aux_sym_constraint_when_token1, + STATE(650), 1, + sym_constraint_when, + ACTIONS(1341), 11, + anon_sym_SEMI, anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - STATE(847), 1, - sym_into, - ACTIONS(1342), 2, - anon_sym_SEMI, anon_sym_RPAREN, - [23303] = 6, + 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, + [31406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(651), 1, - sym_insert_returning, - STATE(902), 1, - sym_into, - ACTIONS(1298), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1278), 1, - aux_sym_insert_returning_token1, - STATE(657), 1, - sym_insert_returning, - STATE(884), 1, - sym_into, - ACTIONS(1274), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1389), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(431), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1246), 1, - aux_sym_insert_returning_token1, - STATE(844), 1, - sym_into, - ACTIONS(1225), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1393), 1, - anon_sym_SEMI, - STATE(1042), 1, - sym_function_volatility, - ACTIONS(1395), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [23408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1397), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1345), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1347), 1, + anon_sym_LPAREN, + STATE(445), 1, sym_identifier, - STATE(845), 1, - sym_alter_column_type, - STATE(623), 2, - sym__type, - sym_predefined_types, - [23425] = 6, + ACTIONS(920), 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, + [31433] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1401), 1, - aux_sym_create_index_statement_token3, - ACTIONS(1403), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1405), 1, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1353), 1, + aux_sym_alter_table_action_token2, + ACTIONS(1355), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1357), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1359), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + ACTIONS(1363), 1, + sym__identifier, + STATE(853), 1, + sym_table_constraint_ty, + STATE(854), 1, sym_identifier, - STATE(888), 1, + STATE(1063), 1, sym_if_not_exists, - [23444] = 4, + STATE(1183), 2, + sym_table_constraint, + sym_table_column_item, + [31474] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - aux_sym_constraint_when_token1, - STATE(792), 1, - sym_constraint_when, - ACTIONS(1407), 3, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(649), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(761), 1, + sym_into, + STATE(795), 1, + sym__select_limit_offset, + ACTIONS(1365), 5, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - [23459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(760), 5, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [23470] = 4, + [31509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - aux_sym_constraint_when_token1, - STATE(724), 1, - sym_constraint_when, - ACTIONS(1409), 3, + ACTIONS(1246), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [23485] = 5, + aux_sym_insert_items_token1, + aux_sym_conflict_target_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_table_constraint_ty_token1, + aux_sym_table_constraint_ty_token2, + aux_sym_constraint_foreign_key_token1, + anon_sym_COLON_EQ, + [31528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1411), 1, - aux_sym_body_token1, - ACTIONS(1413), 1, - aux_sym_declarations_token1, - STATE(881), 1, - sym_body, - STATE(680), 2, - sym_declarations, - aux_sym_block_repeat1, - [23502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 5, + ACTIONS(1343), 1, + aux_sym_constraint_when_token1, + STATE(655), 1, + sym_constraint_when, + ACTIONS(1367), 11, anon_sym_SEMI, - aux_sym_insert_statement_token2, + 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, + [31551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1369), 1, + anon_sym_COMMA, + STATE(599), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1329), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [23513] = 4, + 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, + [31574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - anon_sym_SEMI, - STATE(1088), 1, - sym_function_volatility, - ACTIONS(1395), 3, - aux_sym_function_volatility_token1, - aux_sym_function_volatility_token2, - aux_sym_function_volatility_token3, - [23528] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(910), 1, - sym_alter_table_fk_ref_action, - ACTIONS(1369), 2, + ACTIONS(1372), 13, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1419), 2, - aux_sym_fk_ref_action_token3, - aux_sym_fk_ref_action_token4, - [23543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(591), 1, - aux_sym_insert_returning_repeat1, - ACTIONS(1421), 3, - anon_sym_SEMI, - aux_sym_insert_statement_token2, anon_sym_RPAREN, - [23558] = 4, + 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, + [31593] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(670), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(761), 1, + sym_into, + STATE(821), 1, + sym__select_limit_offset, + ACTIONS(1365), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [31629] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1376), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1378), 1, + aux_sym_insert_statement_token2, + ACTIONS(1380), 1, + aux_sym_insert_returning_token1, + ACTIONS(1382), 1, + aux_sym_index_using_token1, + ACTIONS(1384), 1, + aux_sym_where_filter_token1, + STATE(710), 1, + sym_identifier, + STATE(753), 1, + sym_delete_using, + STATE(865), 1, + sym_where_filter, + STATE(1191), 1, + sym_into, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [31667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 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, + [31685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1388), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1390), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [31705] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1378), 1, + aux_sym_insert_statement_token2, + ACTIONS(1382), 1, + aux_sym_index_using_token1, + ACTIONS(1384), 1, + aux_sym_where_filter_token1, + ACTIONS(1394), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1396), 1, + aux_sym_insert_returning_token1, + STATE(708), 1, + sym_identifier, + STATE(747), 1, + sym_delete_using, + STATE(838), 1, + sym_where_filter, + STATE(1240), 1, + sym_into, + ACTIONS(1392), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [31743] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(674), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [31779] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(683), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, + sym_into, + STATE(858), 1, + sym__select_limit_offset, + ACTIONS(1194), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [31815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1202), 1, + aux_sym_create_type_statement_token3, + STATE(372), 1, + sym_identifier, + ACTIONS(1019), 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, + [31839] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(694), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [31875] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(687), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [31911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(1297), 1, anon_sym_COMMA, STATE(577), 1, - aux_sym_with_query_repeat1, - ACTIONS(1423), 3, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [23573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(127), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23584] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1397), 1, sym_identifier, - STATE(829), 1, - sym_alter_column_type, - STATE(623), 2, - sym__type, - sym_predefined_types, - [23601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1021), 5, - anon_sym_SEMI, + ACTIONS(1299), 9, aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23612] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, + aux_sym_delete_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, - ACTIONS(1430), 1, - anon_sym_SEMI, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - STATE(795), 1, - sym_index_includes, - STATE(1051), 1, - sym_where_filter, - [23642] = 5, + [31935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, + ACTIONS(1398), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1400), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [31955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1402), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1404), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [31975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1406), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1408), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [31995] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, aux_sym_insert_statement_token2, - ACTIONS(1434), 1, - aux_sym_insert_returning_token1, - STATE(847), 1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(680), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, sym_into, - ACTIONS(1342), 2, + STATE(856), 1, + sym__select_limit_offset, + ACTIONS(1320), 3, anon_sym_SEMI, anon_sym_RPAREN, - [23659] = 6, + aux_sym_for_statement_token2, + [32031] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, aux_sym_create_index_statement_token1, - ACTIONS(1438), 1, + ACTIONS(1355), 1, aux_sym_table_constraint_ty_token1, - ACTIONS(1440), 1, + ACTIONS(1357), 1, aux_sym_table_constraint_ty_token2, - ACTIONS(1442), 1, + ACTIONS(1359), 1, aux_sym_table_constraint_ty_token4, - STATE(571), 1, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1410), 1, + anon_sym_RPAREN, + STATE(853), 1, sym_table_constraint_ty, - [23678] = 5, + STATE(854), 1, + sym_identifier, + STATE(1045), 1, + sym_create_table_item, + STATE(1232), 2, + sym_table_constraint, + sym_table_column_item, + [32069] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(682), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [32105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1412), 1, + anon_sym_COMMA, + STATE(618), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(449), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [32127] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1415), 1, + aux_sym_join_item_token1, + ACTIONS(1417), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + ACTIONS(1007), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(622), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [32159] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1355), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1357), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1359), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1419), 1, + anon_sym_RPAREN, + STATE(853), 1, + sym_table_constraint_ty, + STATE(854), 1, + sym_identifier, + STATE(1080), 1, + sym_create_table_item, + STATE(1232), 2, + sym_table_constraint, + sym_table_column_item, + [32197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 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, + [32215] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + aux_sym_join_item_token3, + ACTIONS(993), 1, + aux_sym_join_type_token1, + ACTIONS(1423), 1, + aux_sym_join_item_token1, + ACTIONS(1426), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + ACTIONS(982), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(622), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(996), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [32247] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + ACTIONS(908), 1, + aux_sym_select_order_by_token1, + STATE(689), 1, + sym_select_order_by, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(835), 1, + sym__select_limit_offset, + ACTIONS(1095), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [32283] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(732), 1, + sym_join_type, + STATE(622), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(1007), 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, + [32305] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 1, + anon_sym_COMMA, + STATE(625), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1322), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_delete_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, + [32327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 1, + anon_sym_COMMA, + STATE(618), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(1432), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [32349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1434), 5, + anon_sym_LPAREN, anon_sym_DOLLAR, - STATE(609), 1, - sym_dollar_quote, - STATE(1011), 2, - sym_block, - sym_string, - [23695] = 2, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1436), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [32369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1440), 1, + aux_sym_constraint_when_token2, + ACTIONS(1438), 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, + [32389] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(732), 1, + sym_join_type, + STATE(624), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(970), 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, + [32411] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + ACTIONS(1415), 1, + aux_sym_join_item_token1, + ACTIONS(1417), 1, + aux_sym_join_item_token2, + STATE(732), 1, + sym_join_type, + ACTIONS(970), 2, + aux_sym_insert_conflict_token1, + aux_sym_index_using_token1, + STATE(619), 2, + sym_join_item, + aux_sym_from_item_repeat1, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [32443] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1355), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1357), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1359), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1442), 1, + anon_sym_RPAREN, + STATE(853), 1, + sym_table_constraint_ty, + STATE(854), 1, + sym_identifier, + STATE(1032), 1, + sym_create_table_item, + STATE(1232), 2, + sym_table_constraint, + sym_table_column_item, + [32481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LPAREN, + ACTIONS(27), 11, + aux_sym_create_type_statement_token3, + 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, + [32501] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1355), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1357), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1359), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1444), 1, + anon_sym_RPAREN, + STATE(853), 1, + sym_table_constraint_ty, + STATE(854), 1, + sym_identifier, + STATE(1051), 1, + sym_create_table_item, + STATE(1232), 2, + sym_table_constraint, + sym_table_column_item, + [32539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(433), 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, + [32557] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1446), 5, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1448), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [32577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(1452), 7, + aux_sym_alter_column_action_token1, + aux_sym_alter_column_action_token2, + anon_sym_DASH, + aux_sym_true_token1, + aux_sym_false_token1, + sym_number, + sym__identifier, + [32597] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1378), 1, aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, + ACTIONS(1380), 1, aux_sym_insert_returning_token1, - [23706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1450), 1, - anon_sym_COMMA, - STATE(577), 1, - aux_sym_with_query_repeat1, - ACTIONS(1448), 3, - aux_sym_insert_statement_token1, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [23721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1456), 1, - sym_identifier, - STATE(932), 1, - sym_if_exists, - ACTIONS(1452), 2, - aux_sym_conflict_target_token1, - aux_sym_alter_table_action_token2, - [23738] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(866), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1091), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - ACTIONS(1458), 3, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - [23775] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1063), 1, - sym_trigger_event, - ACTIONS(1460), 4, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token5, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [23788] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1264), 1, - aux_sym_insert_returning_token1, - STATE(824), 1, - sym_into, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23805] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, + ACTIONS(1382), 1, + aux_sym_index_using_token1, + ACTIONS(1384), 1, aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, + STATE(710), 1, + sym_identifier, + STATE(753), 1, + sym_delete_using, + STATE(865), 1, + sym_where_filter, + STATE(1191), 1, + sym_into, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [32632] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(700), 1, + sym_as, + STATE(723), 1, + sym_insert_items, + STATE(748), 1, + sym__list_of_identifiers, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [32669] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1349), 1, + aux_sym_conflict_target_token1, + ACTIONS(1351), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1355), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1357), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1359), 1, + aux_sym_table_constraint_ty_token4, + ACTIONS(1363), 1, + sym__identifier, + STATE(853), 1, + sym_table_constraint_ty, + STATE(854), 1, + sym_identifier, + STATE(1243), 1, + sym_create_table_item, + STATE(1232), 2, + sym_table_constraint, + sym_table_column_item, + [32704] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(1462), 1, anon_sym_SEMI, - STATE(761), 1, - sym_index_includes, - STATE(991), 1, - sym_where_filter, - [23824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23846] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - ACTIONS(1464), 1, - anon_sym_SEMI, - STATE(686), 1, - sym_index_includes, - STATE(1032), 1, - sym_where_filter, - [23865] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1466), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1468), 1, - aux_sym_create_index_statement_token3, - ACTIONS(1470), 1, - sym_identifier, - STATE(839), 1, - sym_if_not_exists, - [23884] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1266), 1, - aux_sym_insert_returning_token1, - STATE(901), 1, - sym_into, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [23901] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(849), 1, - sym_alter_table_fk_ref_action, - ACTIONS(1377), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(1419), 2, - aux_sym_fk_ref_action_token3, - aux_sym_fk_ref_action_token4, - [23916] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - ACTIONS(1472), 1, - anon_sym_SEMI, - STATE(764), 1, - sym_index_includes, - STATE(992), 1, - sym_where_filter, - [23935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - STATE(609), 1, - sym_dollar_quote, - STATE(1006), 2, - sym_block, - sym_string, - [23952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1474), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [23963] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(989), 1, - sym_trigger_event, - ACTIONS(1460), 4, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token5, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [23976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - ACTIONS(1476), 1, - anon_sym_SEMI, - STATE(779), 1, - sym_index_includes, - STATE(1007), 1, - sym_where_filter, - [23995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 1, - aux_sym_schema_role_token1, - ACTIONS(1480), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1482), 1, - sym_identifier, - STATE(812), 1, - sym_if_not_exists, - STATE(1033), 1, - sym_schema_role, - [24014] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1450), 1, - anon_sym_COMMA, - STATE(587), 1, - aux_sym_with_query_repeat1, - ACTIONS(1484), 3, + ACTIONS(1460), 10, + ts_builtin_sym_end, + 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, - [24029] = 5, + [32723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1486), 1, - aux_sym_create_table_statement_token3, - ACTIONS(1488), 1, - aux_sym_return_setof_token1, - ACTIONS(1490), 1, - sym_identifier, - STATE(950), 2, - sym_return_setof, - sym_return_table, - [24046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 1, - aux_sym_body_token1, - ACTIONS(1413), 1, - aux_sym_declarations_token1, - STATE(814), 1, - sym_body, - STATE(572), 2, - sym_declarations, - aux_sym_block_repeat1, - [24063] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - ACTIONS(1327), 1, - aux_sym_insert_returning_token1, - STATE(906), 1, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(793), 1, + sym__select_limit_offset, + STATE(815), 1, sym_into, - ACTIONS(1325), 2, + ACTIONS(157), 5, anon_sym_SEMI, anon_sym_RPAREN, - [24080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - ACTIONS(1492), 1, - anon_sym_SEMI, - STATE(746), 1, - sym_index_includes, - STATE(1101), 1, - sym_where_filter, - [24099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 5, - anon_sym_SEMI, aux_sym_insert_statement_token2, - anon_sym_RPAREN, aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [24110] = 4, + [32752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 1, - aux_sym_insert_statement_token2, - ACTIONS(1019), 1, - sym_identifier, - ACTIONS(1015), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [24125] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1432), 1, - aux_sym_index_includes_token1, - ACTIONS(1494), 1, - anon_sym_SEMI, - STATE(803), 1, - sym_index_includes, - STATE(1018), 1, - sym_where_filter, - [24144] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(893), 1, - sym_alter_table_fk_ref_action, - ACTIONS(1419), 2, - aux_sym_fk_ref_action_token3, - aux_sym_fk_ref_action_token4, - ACTIONS(1496), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [24159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - aux_sym_insert_conflict_token6, - ACTIONS(1500), 1, - aux_sym_fk_ref_action_token1, - STATE(405), 1, - sym_fk_ref_action, - ACTIONS(1502), 2, - aux_sym_fk_ref_action_token3, - aux_sym_fk_ref_action_token4, - [24176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(726), 5, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, + ACTIONS(93), 11, + aux_sym_create_type_statement_token3, aux_sym_insert_conflict_token1, - aux_sym_insert_returning_token1, - [24187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - anon_sym_COMMA, - STATE(618), 1, - aux_sym_insert_returning_repeat1, - ACTIONS(1010), 3, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - [24202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1509), 1, - aux_sym_grant_roles_token2, - ACTIONS(1507), 4, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - aux_sym_grant_roles_token1, - sym_identifier, - [24215] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - aux_sym_conflict_target_token1, - ACTIONS(1513), 1, - aux_sym_alter_table_action_token2, - ACTIONS(1515), 1, - aux_sym_alter_table_rename_column_token2, - ACTIONS(1517), 1, - sym_identifier, - [24231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - [24241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1521), 1, - sym_identifier, - STATE(363), 2, - sym__type, - sym_predefined_types, - [24255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1525), 1, aux_sym_index_using_token1, - ACTIONS(1523), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [24269] = 4, - ACTIONS(1527), 1, - anon_sym_SQUOTE, - ACTIONS(1531), 1, - sym_comment, - STATE(668), 1, - aux_sym_string_repeat1, - ACTIONS(1529), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24283] = 4, + aux_sym_join_item_token1, + aux_sym_join_item_token2, + aux_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, + [32769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1533), 1, - anon_sym_COMMA, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - ACTIONS(312), 2, + ACTIONS(85), 11, + aux_sym_create_type_statement_token3, + 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, + [32786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 11, + aux_sym_create_type_statement_token3, + 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, + [32803] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(808), 1, + sym__select_limit_offset, + ACTIONS(894), 5, anon_sym_SEMI, anon_sym_RPAREN, - [24297] = 4, - ACTIONS(1531), 1, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [32832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + STATE(419), 1, + sym_identifier, + ACTIONS(1037), 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, + [32853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_COMMA, + STATE(647), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1329), 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, + [32874] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1469), 1, + sym__identifier, + STATE(540), 1, + aux_sym__type_repeat1, + STATE(1119), 1, + sym__type, + ACTIONS(1184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1188), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [32905] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(782), 1, + sym__select_limit_offset, + STATE(803), 1, + sym_into, + ACTIONS(1471), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [32934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 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, + [32951] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(761), 1, + sym_into, + STATE(795), 1, + sym__select_limit_offset, + ACTIONS(1365), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [32980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, + sym_into, + STATE(801), 1, + sym__select_limit_offset, + ACTIONS(1320), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [33009] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, + sym_into, + STATE(805), 1, + sym__select_limit_offset, + ACTIONS(1194), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [33038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1475), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_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, + [33055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1477), 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, + [33072] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(811), 1, + sym__select_limit_offset, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [33101] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1479), 1, + aux_sym_insert_conflict_token6, + ACTIONS(1481), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(1483), 1, + aux_sym_alter_table_action_token1, + ACTIONS(1485), 1, + aux_sym_alter_table_action_token3, + ACTIONS(1487), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1038), 1, + sym_alter_table_action, + STATE(1348), 1, + sym_alter_table_change, + STATE(1268), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [33132] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1117), 1, + aux_sym_create_type_statement_token3, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(711), 1, + sym_as, + STATE(734), 1, + sym_insert_items, + STATE(740), 1, + sym__list_of_identifiers, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [33169] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 1, + anon_sym_COMMA, + STATE(664), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1339), 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, + [33190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 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, + [33207] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(759), 1, + sym__select_limit_offset, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [33236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1479), 1, + aux_sym_insert_conflict_token6, + ACTIONS(1481), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(1483), 1, + aux_sym_alter_table_action_token1, + ACTIONS(1485), 1, + aux_sym_alter_table_action_token3, + ACTIONS(1487), 1, + aux_sym_alter_table_rename_column_token1, + STATE(1038), 1, + sym_alter_table_action, + STATE(1270), 1, + sym_alter_table_change, + STATE(1268), 4, + sym_alter_table_rename_column, + sym_alter_table_rename_constraint, + sym_alter_table_rename_table, + sym_alter_table_change_schema, + [33267] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(816), 1, + sym__select_limit_offset, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [33296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1489), 1, + anon_sym_COMMA, + STATE(647), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1335), 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, + [33317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1493), 11, + ts_builtin_sym_end, + anon_sym_SEMI, + 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, + [33334] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1469), 1, + sym__identifier, + STATE(540), 1, + aux_sym__type_repeat1, + STATE(974), 1, + sym__type, + ACTIONS(1184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1188), 2, + aux_sym__type_token1, + aux_sym__type_token2, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [33365] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1378), 1, + aux_sym_insert_statement_token2, + ACTIONS(1382), 1, + aux_sym_index_using_token1, + ACTIONS(1384), 1, + aux_sym_where_filter_token1, + ACTIONS(1497), 1, + aux_sym_insert_returning_token1, + STATE(712), 1, + sym_identifier, + STATE(745), 1, + sym_delete_using, + STATE(834), 1, + sym_where_filter, + STATE(1106), 1, + sym_into, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [33400] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1499), 1, + anon_sym_COMMA, + STATE(668), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1322), 9, + aux_sym_insert_statement_token2, + aux_sym_delete_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, + [33421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1502), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33437] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(803), 1, + sym_into, + STATE(845), 1, + sym__select_limit_offset, + ACTIONS(1471), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1504), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33499] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1510), 1, + aux_sym_grant_privileges_token1, + STATE(1041), 1, + sym_identifier, + STATE(1264), 1, + sym_grant_targets, + ACTIONS(1508), 3, + aux_sym_create_table_statement_token2, + aux_sym_create_schema_statement_token1, + aux_sym_grant_targets_token5, + ACTIONS(1512), 3, + aux_sym_grant_targets_token6, + aux_sym_grant_targets_token7, + aux_sym_grant_targets_token8, + [33525] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(806), 1, + sym_into, + STATE(835), 1, + sym__select_limit_offset, + ACTIONS(1095), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1514), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(605), 10, + ts_builtin_sym_end, + 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, + [33587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1516), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_COMMA, + STATE(679), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(1518), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [33623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1524), 1, + anon_sym_COMMA, + STATE(679), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(1522), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [33643] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(761), 1, + sym_into, + STATE(821), 1, + sym__select_limit_offset, + ACTIONS(1365), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_COMMA, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1218), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_alter_table_rename_column_token2, + aux_sym_for_statement_token2, + [33693] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(789), 1, + sym_into, + STATE(819), 1, + sym__select_limit_offset, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33723] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(785), 1, + sym_into, + STATE(856), 1, + sym__select_limit_offset, + ACTIONS(1320), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1530), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1532), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1534), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [33801] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(812), 1, + sym_into, + STATE(833), 1, + sym__select_limit_offset, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33831] = 4, + ACTIONS(3), 1, sym_comment, ACTIONS(1536), 1, - anon_sym_SQUOTE, - STATE(627), 1, - aux_sym_string_repeat1, - ACTIONS(1538), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24311] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1540), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24325] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(1544), 1, - sym_identifier, - STATE(499), 1, - sym_update_set, - STATE(1024), 1, - sym__list_of_identifiers, - [24341] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1546), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, anon_sym_COMMA, - ACTIONS(1550), 1, - anon_sym_RPAREN, - STATE(718), 1, - aux_sym_grant_function_repeat1, - [24371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1554), 1, - anon_sym_COMMA, - STATE(631), 1, - aux_sym_return_table_repeat1, - ACTIONS(1552), 2, - aux_sym_insert_items_token1, - anon_sym_RPAREN, - [24385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, + STATE(688), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1329), 8, aux_sym_insert_statement_token2, - STATE(816), 1, + aux_sym_grant_roles_token2, + aux_sym_for_statement_token2, + aux_sym_select_having_token1, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + aux_sym_select_order_by_token1, + aux_sym_where_filter_token1, + [33851] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(784), 1, sym_into, - ACTIONS(1557), 2, + STATE(858), 1, + sym__select_limit_offset, + ACTIONS(1194), 3, anon_sym_SEMI, anon_sym_RPAREN, - [24399] = 2, + aux_sym_for_statement_token2, + [33881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, - anon_sym_SEMI, + ACTIONS(1539), 1, + anon_sym_COMMA, + STATE(693), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1339), 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, + [33901] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1520), 1, + anon_sym_COMMA, + STATE(678), 1, + aux_sym_select_order_by_repeat1, + ACTIONS(1541), 8, + anon_sym_SEMI, anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, aux_sym_insert_returning_token1, - [24409] = 5, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [33921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(784), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(815), 1, + sym_into, + STATE(818), 1, + sym__select_limit_offset, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [33951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 1, + anon_sym_COMMA, + STATE(688), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1335), 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, + [33971] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(713), 1, + sym_select_offset, + STATE(717), 1, + sym_select_limit, + STATE(772), 1, + sym_into, + STATE(873), 1, + sym__select_limit_offset, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [34001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [34017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1545), 10, + anon_sym_SEMI, + aux_sym_create_type_statement_token3, + 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, + [34033] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_insert_statement_token1, + ACTIONS(13), 1, + aux_sym_delete_statement_token1, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + STATE(967), 1, + sym_with_query, + STATE(1382), 4, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [34058] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_insert_statement_token1, + ACTIONS(13), 1, + aux_sym_delete_statement_token1, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + STATE(967), 1, + sym_with_query, + STATE(1313), 4, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [34083] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1270), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_for_statement_token2, + [34102] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(952), 1, anon_sym_LPAREN, - ACTIONS(1544), 1, - sym_identifier, - STATE(542), 1, - sym_update_set, - STATE(1024), 1, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(734), 1, + sym_insert_items, + STATE(740), 1, sym__list_of_identifiers, - [24425] = 5, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [34133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - aux_sym_alter_table_statement_token1, - ACTIONS(1117), 1, - aux_sym_alter_table_action_token1, - ACTIONS(1119), 1, - aux_sym_alter_table_action_token3, - STATE(861), 1, - sym_alter_table_action, - [24441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - aux_sym_index_col_nulls_token1, - STATE(891), 1, - sym_index_col_nulls, - ACTIONS(1559), 2, + ACTIONS(1522), 9, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [24455] = 2, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [34148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1561), 4, - aux_sym_insert_statement_token1, + ACTIONS(1549), 9, + anon_sym_SEMI, anon_sym_COMMA, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [24465] = 4, - ACTIONS(1531), 1, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [34163] = 2, + ACTIONS(3), 1, sym_comment, + ACTIONS(1551), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + aux_sym_select_offset_token1, + [34178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + aux_sym_insert_items_token1, + ACTIONS(1260), 1, + aux_sym_alter_column_action_token1, + ACTIONS(1262), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1264), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1266), 1, + aux_sym_constraint_foreign_key_token1, + STATE(593), 1, + sym_column_constraint_ty, + STATE(603), 1, + sym_constraint_foreign_key, + ACTIONS(1258), 2, + aux_sym_create_index_statement_token1, + aux_sym_alter_column_action_token2, + [34207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1248), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_for_statement_token2, + [34226] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_insert_statement_token1, + ACTIONS(13), 1, + aux_sym_delete_statement_token1, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + STATE(967), 1, + sym_with_query, + STATE(1349), 4, + sym__with_query_statement, + sym_insert_statement, + sym_delete_statement, + sym_select_statement, + [34251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(699), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1248), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_for_statement_token2, + [34270] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1553), 1, + aux_sym_insert_returning_token1, + ACTIONS(1555), 1, + aux_sym_index_using_token1, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + STATE(753), 1, + sym_delete_using, + STATE(865), 1, + sym_where_filter, + STATE(1191), 1, + sym_into, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + STATE(705), 1, + aux_sym_grant_privileges_repeat1, + ACTIONS(1295), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_index_using_token1, + aux_sym_for_statement_token2, + [34318] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1555), 1, + aux_sym_index_using_token1, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1559), 1, + aux_sym_insert_returning_token1, + STATE(745), 1, + sym_delete_using, + STATE(834), 1, + sym_where_filter, + STATE(1106), 1, + sym_into, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34347] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(731), 1, + sym_insert_items, + STATE(744), 1, + sym__list_of_identifiers, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [34378] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1555), 1, + aux_sym_index_using_token1, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, ACTIONS(1563), 1, - anon_sym_SQUOTE, - STATE(629), 1, - aux_sym_string_repeat1, - ACTIONS(1565), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24479] = 5, + aux_sym_insert_returning_token1, + STATE(739), 1, + sym_delete_using, + STATE(882), 1, + sym_where_filter, + STATE(1197), 1, + sym_into, + ACTIONS(1561), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(904), 1, + aux_sym_select_limit_token1, + STATE(817), 1, + sym_select_limit, + ACTIONS(1565), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [34425] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1567), 1, - aux_sym_insert_items_token1, - ACTIONS(1569), 1, - anon_sym_COMMA, - ACTIONS(1571), 1, - anon_sym_RPAREN, - STATE(671), 1, - aux_sym_return_table_repeat1, - [24495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(23), 1, - aux_sym_select_statement_token1, - STATE(1003), 1, - sym_with_query, - STATE(1091), 1, - sym_select_statement, - [24511] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - STATE(868), 1, - sym_into, - ACTIONS(1280), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [24525] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1573), 1, - anon_sym_SQUOTE, - STATE(652), 1, - aux_sym_string_repeat1, - ACTIONS(1575), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24539] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - STATE(902), 1, - sym_into, - ACTIONS(1298), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [24553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [24563] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, anon_sym_LPAREN, - ACTIONS(1581), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1583), 1, - aux_sym_insert_conflict_token3, - STATE(939), 1, - sym_conflict_target, - [24579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [24589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [24599] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1589), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1591), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24613] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1403), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1405), 1, - sym_identifier, - STATE(888), 1, - sym_if_not_exists, - [24629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - aux_sym_index_col_nulls_token1, - STATE(826), 1, - sym_index_col_nulls, - ACTIONS(1594), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [24643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - STATE(884), 1, - sym_into, - ACTIONS(1274), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [24657] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - ACTIONS(1294), 1, - aux_sym_trigger_cond_token1, - STATE(833), 1, - sym_trigger_cond, - STATE(1064), 1, - sym_trigger_exec, - [24687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1598), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - [24697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1600), 4, - anon_sym_SEMI, - aux_sym_insert_statement_token2, - anon_sym_RPAREN, - aux_sym_insert_returning_token1, - [24707] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1602), 1, - anon_sym_SQUOTE, - STATE(661), 1, - aux_sym_string_repeat1, - ACTIONS(1604), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(475), 1, - aux_sym_insert_statement_token2, - STATE(878), 1, - sym_into, - ACTIONS(1365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [24735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 4, - aux_sym_insert_statement_token1, - anon_sym_COMMA, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [24745] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(604), 1, - sym_trigger_when, - ACTIONS(1606), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [24757] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1111), 1, - sym_identifier, - STATE(849), 1, - sym_table_column_item, - STATE(850), 1, - sym_if_not_exists, - [24773] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1608), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1610), 1, - sym_identifier, - STATE(776), 2, - sym__type, - sym_predefined_types, - [24801] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1612), 1, - anon_sym_SQUOTE, - STATE(670), 1, - aux_sym_string_repeat1, - ACTIONS(1614), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24815] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(21), 1, - aux_sym_sequence_start_token2, - ACTIONS(23), 1, - aux_sym_select_statement_token1, - STATE(933), 1, - sym_select_statement, - STATE(1003), 1, - sym_with_query, - [24831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 4, - aux_sym_insert_statement_token1, - anon_sym_COMMA, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [24841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1618), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_constraint_when_token1, - [24851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1620), 4, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token5, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [24861] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1622), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(774), 1, - sym_identifier, - ACTIONS(1624), 1, - aux_sym_delete_statement_token3, - ACTIONS(768), 2, - aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - [24889] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1626), 1, - anon_sym_SQUOTE, - STATE(648), 1, - aux_sym_string_repeat1, - ACTIONS(1542), 2, - aux_sym_string_token1, - aux_sym_string_token2, - [24903] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(1569), 1, - anon_sym_COMMA, - ACTIONS(1628), 1, - aux_sym_insert_items_token1, - ACTIONS(1630), 1, - anon_sym_RPAREN, - STATE(631), 1, - aux_sym_return_table_repeat1, - [24919] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 4, - aux_sym_insert_statement_token1, - aux_sym_insert_conflict_token5, - aux_sym_delete_statement_token1, - aux_sym_trigger_event_token1, - [24929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1634), 4, - aux_sym_insert_statement_token1, - anon_sym_COMMA, - aux_sym_delete_statement_token1, - aux_sym_select_statement_token1, - [24939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1381), 1, + sym__identifier, + STATE(447), 1, + sym_from_item, + STATE(471), 1, sym_identifier, - ACTIONS(1636), 1, - aux_sym_insert_items_token1, - ACTIONS(1638), 1, - anon_sym_RPAREN, - STATE(639), 1, - sym_var_declaration, - [24955] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1640), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1642), 1, - sym_identifier, - STATE(870), 1, - sym_if_not_exists, - [24971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1644), 1, - sym_identifier, - STATE(630), 2, - sym__type, - sym_predefined_types, - [24985] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(592), 1, - sym_trigger_when, - ACTIONS(1606), 3, - aux_sym_trigger_when_token1, - aux_sym_trigger_when_token2, - aux_sym_trigger_when_token3, - [24997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 1, - sym_identifier, - STATE(1082), 1, + STATE(498), 1, sym_function_call, - ACTIONS(1646), 2, - aux_sym_grant_targets_token6, - aux_sym_grant_targets_token7, - [25011] = 5, + STATE(482), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - ACTIONS(1294), 1, - aux_sym_trigger_cond_token1, - STATE(874), 1, - sym_trigger_cond, - STATE(1109), 1, - sym_trigger_exec, - [25027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1650), 1, - aux_sym_body_token1, - ACTIONS(1652), 1, - aux_sym_declarations_token1, - STATE(680), 2, - sym_declarations, - aux_sym_block_repeat1, - [25041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - aux_sym_predefined_types_token1, - ACTIONS(1655), 1, - sym_identifier, - STATE(548), 2, - sym__type, - sym_predefined_types, - [25055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1657), 4, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - aux_sym_body_token1, - aux_sym_declarations_token1, - [25065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_COMMA, - ACTIONS(1659), 1, - anon_sym_RPAREN, - STATE(774), 1, - aux_sym_grant_function_repeat1, - [25081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1663), 1, + ACTIONS(1571), 1, + sym__identifier, + STATE(356), 1, sym_identifier, - STATE(890), 1, - sym_index_col, - [25094] = 4, + STATE(398), 1, + sym_function_call, + STATE(592), 1, + sym_from_item, + STATE(380), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1665), 1, - anon_sym_COMMA, - ACTIONS(1667), 1, - anon_sym_RPAREN, - STATE(754), 1, - aux_sym_update_set_repeat1, - [25107] = 4, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1573), 1, + sym__identifier, + STATE(435), 1, + sym_identifier, + STATE(476), 1, + sym_function_call, + STATE(585), 1, + sym_from_item, + STATE(474), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1492), 1, + ACTIONS(906), 1, + aux_sym_select_offset_token1, + STATE(817), 1, + sym_select_offset, + ACTIONS(1565), 6, anon_sym_SEMI, - STATE(1101), 1, - sym_where_filter, - [25120] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - STATE(609), 1, - sym_dollar_quote, - STATE(1127), 1, - sym_block, - [25133] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_COMMA, - ACTIONS(1672), 1, anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [25146] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - sym_identifier, - ACTIONS(836), 2, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - aux_sym_index_using_token1, - [25157] = 4, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [34515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1676), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [25170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1678), 1, - aux_sym_grant_privileges_token1, - ACTIONS(1680), 1, + ACTIONS(1575), 1, + anon_sym_LPAREN, + ACTIONS(1577), 1, + sym__identifier, + STATE(520), 1, sym_identifier, - STATE(1075), 1, - sym_grant_privileges, - [25183] = 4, + STATE(523), 1, + sym_function_call, + STATE(755), 1, + sym_from_item, + STATE(534), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34539] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(1575), 1, + anon_sym_LPAREN, + ACTIONS(1577), 1, + sym__identifier, + STATE(520), 1, + sym_identifier, + STATE(523), 1, + sym_function_call, + STATE(585), 1, + sym_from_item, + STATE(534), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34563] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 1, + anon_sym_LPAREN, + ACTIONS(1577), 1, + sym__identifier, + STATE(447), 1, + sym_from_item, + STATE(520), 1, + sym_identifier, + STATE(523), 1, + sym_function_call, + STATE(528), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1581), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_insert_conflict_repeat1, + STATE(954), 1, + sym_where_filter, + ACTIONS(1579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [34609] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, ACTIONS(1569), 1, - anon_sym_COMMA, - ACTIONS(1682), 1, - anon_sym_RPAREN, - STATE(631), 1, - aux_sym_return_table_repeat1, - [25196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1676), 1, - anon_sym_RPAREN, - STATE(749), 1, - aux_sym_create_index_statement_repeat1, - [25209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1684), 1, + sym__identifier, + STATE(471), 1, sym_identifier, - STATE(970), 1, - sym_if_not_exists, - [25222] = 3, + STATE(498), 1, + sym_function_call, + STATE(690), 1, + sym_from_item, + STATE(497), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1688), 1, - aux_sym_trigger_scope_token2, - ACTIONS(1686), 2, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1585), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(780), 1, + sym_insert_conflict, + STATE(896), 1, + sym_insert_returning, + STATE(1202), 1, + sym_into, + ACTIONS(1583), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34659] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1571), 1, + sym__identifier, + STATE(356), 1, + sym_identifier, + STATE(398), 1, + sym_function_call, + STATE(585), 1, + sym_from_item, + STATE(380), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34683] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + sym__identifier, + STATE(447), 1, + sym_from_item, + STATE(594), 1, + sym_identifier, + STATE(608), 1, + sym_function_call, + STATE(629), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34707] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + sym__identifier, + STATE(471), 1, + sym_identifier, + STATE(498), 1, + sym_function_call, + STATE(585), 1, + sym_from_item, + STATE(497), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34731] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + aux_sym_trigger_scope_token1, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + ACTIONS(1597), 1, + aux_sym_trigger_cond_token1, + STATE(907), 1, + sym_trigger_scope, + STATE(1229), 1, + sym_trigger_cond, + STATE(1289), 1, + sym_trigger_exec, + ACTIONS(1591), 2, aux_sym_update_set_token1, aux_sym_trigger_scope_token3, - [25233] = 4, + [34757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, + ACTIONS(1575), 1, anon_sym_LPAREN, - ACTIONS(1663), 1, + ACTIONS(1589), 1, + sym__identifier, + STATE(594), 1, sym_identifier, - STATE(750), 1, - sym_index_col, - [25246] = 4, + STATE(608), 1, + sym_function_call, + STATE(1077), 1, + sym_from_item, + STATE(630), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34781] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1593), 1, + aux_sym_trigger_scope_token1, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + ACTIONS(1597), 1, + aux_sym_trigger_cond_token1, + STATE(938), 1, + sym_trigger_scope, + STATE(1153), 1, + sym_trigger_cond, + STATE(1400), 1, + sym_trigger_exec, + ACTIONS(1591), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [34807] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1573), 1, + sym__identifier, + STATE(435), 1, + sym_identifier, + STATE(476), 1, + sym_function_call, + STATE(659), 1, + sym_from_item, + STATE(474), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34831] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1585), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(786), 1, + sym_insert_conflict, + STATE(956), 1, + sym_insert_returning, + STATE(1166), 1, + sym_into, + ACTIONS(1599), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34857] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 1, + anon_sym_LPAREN, + ACTIONS(1589), 1, + sym__identifier, + STATE(594), 1, + sym_identifier, + STATE(608), 1, + sym_function_call, + STATE(1012), 1, + sym_from_item, + STATE(630), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1581), 1, + anon_sym_COMMA, + STATE(721), 1, + aux_sym_insert_conflict_repeat1, + STATE(937), 1, + sym_where_filter, + ACTIONS(1601), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [34903] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1585), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(762), 1, + sym_insert_conflict, + STATE(894), 1, + sym_insert_returning, + STATE(1118), 1, + sym_into, + ACTIONS(1603), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [34929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1571), 1, + sym__identifier, + STATE(356), 1, + sym_identifier, + STATE(398), 1, + sym_function_call, + STATE(447), 1, + sym_from_item, + STATE(385), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34953] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1573), 1, + sym__identifier, + STATE(435), 1, + sym_identifier, + STATE(447), 1, + sym_from_item, + STATE(476), 1, + sym_function_call, + STATE(467), 3, + sym_from_select, + sym_from_table, + sym_from_function, + [34977] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1585), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(788), 1, + sym_insert_conflict, + STATE(899), 1, + sym_insert_returning, + STATE(1141), 1, + sym_into, + ACTIONS(1605), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(27), 2, + aux_sym_predefined_types_token1, + sym__identifier, + ACTIONS(25), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym__type_token1, + aux_sym__type_token2, + [35018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1609), 1, + aux_sym_insert_returning_token1, + STATE(855), 1, + sym_where_filter, + STATE(1108), 1, + sym_into, + ACTIONS(1607), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, ACTIONS(1454), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1690), 1, - sym_identifier, - STATE(990), 1, - sym_if_exists, - [25259] = 3, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(731), 1, + sym_insert_items, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [35066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, + ACTIONS(1611), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_limit_token1, + [35079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1615), 1, + sym__identifier, + STATE(836), 1, sym_identifier, - ACTIONS(1015), 2, + STATE(1235), 1, + sym_var_declaration, + ACTIONS(1613), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(742), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [35100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1622), 1, + aux_sym_index_col_nulls_token1, + STATE(921), 1, + sym_index_col_dir, + STATE(1167), 1, + sym_index_col_nulls, + ACTIONS(1618), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1620), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + [35121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(737), 1, + sym_insert_items, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [35146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1563), 1, + aux_sym_insert_returning_token1, + STATE(882), 1, + sym_where_filter, + STATE(1197), 1, + sym_into, + ACTIONS(1561), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1622), 1, + aux_sym_index_col_nulls_token1, + STATE(935), 1, + sym_index_col_dir, + STATE(1215), 1, + sym_index_col_nulls, + ACTIONS(1620), 2, + aux_sym_index_col_dir_token1, + aux_sym_index_col_dir_token2, + ACTIONS(1624), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1553), 1, + aux_sym_insert_returning_token1, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + STATE(865), 1, + sym_where_filter, + STATE(1191), 1, + sym_into, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35213] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(1454), 1, + aux_sym_insert_items_token1, + ACTIONS(1456), 1, + aux_sym_insert_items_token2, + ACTIONS(1458), 1, + aux_sym_select_statement_token1, + STATE(734), 1, + sym_insert_items, + STATE(831), 1, + sym_select_statement, + STATE(1356), 1, + sym_with_query, + [35238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + sym__identifier, + STATE(836), 1, + sym_identifier, + STATE(1235), 1, + sym_var_declaration, + ACTIONS(1626), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(742), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [35259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + sym__identifier, + STATE(836), 1, + sym_identifier, + STATE(1235), 1, + sym_var_declaration, + ACTIONS(1628), 2, + aux_sym_body_token1, + aux_sym_declarations_token1, + STATE(749), 2, + sym_var_definition, + aux_sym_declarations_repeat1, + [35280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + aux_sym_select_offset_token1, + [35293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_COMMA, + STATE(757), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1630), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35310] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1559), 1, + aux_sym_insert_returning_token1, + STATE(834), 1, + sym_where_filter, + STATE(1106), 1, + sym_into, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_insert_conflict_repeat1, + ACTIONS(1634), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 1, + anon_sym_COMMA, + STATE(752), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1639), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35367] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1643), 1, + aux_sym_grant_roles_token2, + STATE(1068), 1, + sym_identifier, + STATE(1358), 1, + sym_grant_roles, + ACTIONS(1641), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [35388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1645), 1, + anon_sym_COMMA, + STATE(757), 1, + aux_sym_delete_using_repeat1, + ACTIONS(1329), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1252), 1, + sym_into, + ACTIONS(1648), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35425] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(806), 1, + sym_into, + ACTIONS(1095), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [35439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(850), 6, anon_sym_SEMI, anon_sym_COMMA, - [25270] = 4, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35451] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(1471), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35463] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(956), 1, + sym_insert_returning, + STATE(1166), 1, + sym_into, + ACTIONS(1599), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(714), 1, + sym_join_type, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [35501] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1233), 1, + sym_into, + ACTIONS(1652), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1654), 1, + aux_sym_schema_role_token1, + ACTIONS(1656), 1, + aux_sym_if_statement_token1, + STATE(934), 1, + sym_if_not_exists, + STATE(995), 1, + sym_identifier, + STATE(1399), 1, + sym_schema_role, + [35543] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1658), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1660), 1, + aux_sym_create_index_statement_token3, + ACTIONS(1662), 1, + aux_sym_if_statement_token1, + STATE(997), 1, + sym_if_not_exists, + STATE(1386), 1, + sym_identifier, + [35565] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(798), 1, + aux_sym_insert_returning_repeat1, + STATE(1252), 1, + sym_into, + ACTIONS(1648), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1634), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1664), 1, + sym__identifier, + STATE(984), 1, + sym__type, + STATE(1248), 1, + sym_alter_column_type, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [35617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(735), 1, + sym_join_type, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [35635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(725), 1, + sym_join_type, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [35653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1005), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1299), 1, + aux_sym_insert_statement_token2, + STATE(577), 1, + sym_identifier, + ACTIONS(1297), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [35683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + aux_sym_create_type_statement_token2, + ACTIONS(1670), 1, + aux_sym_insert_conflict_token6, + ACTIONS(1672), 1, + aux_sym_alter_table_action_token3, + STATE(1125), 1, + sym_alter_column_action, + ACTIONS(1666), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [35703] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(720), 1, + sym_join_type, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [35721] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(807), 1, + aux_sym_insert_returning_repeat1, + STATE(1106), 1, + sym_into, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1674), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + ACTIONS(1676), 1, + aux_sym_trigger_exec_token1, + STATE(1336), 1, + sym_with_query, + STATE(1378), 2, + sym_execute_statement, + sym_select_statement, + [35773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1678), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(894), 1, + sym_insert_returning, + STATE(1118), 1, + sym_into, + ACTIONS(1603), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35805] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(815), 1, + sym_into, + ACTIONS(157), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [35819] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(779), 1, + sym_into, + ACTIONS(1680), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [35833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1682), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1365), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(899), 1, + sym_insert_returning, + STATE(1141), 1, + sym_into, + ACTIONS(1605), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1108), 1, + sym_into, + ACTIONS(1607), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35909] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1587), 1, + aux_sym_insert_returning_token1, + STATE(901), 1, + sym_insert_returning, + STATE(1224), 1, + sym_into, + ACTIONS(1684), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(912), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [35941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1688), 1, + aux_sym_grant_roles_token2, + STATE(1135), 1, + sym_identifier, + ACTIONS(1686), 3, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + aux_sym_grant_roles_token1, + [35959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(758), 1, + aux_sym_insert_returning_repeat1, + STATE(1108), 1, + sym_into, + ACTIONS(1607), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [35979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1690), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [35991] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(789), 1, + sym_into, + ACTIONS(894), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(800), 1, + aux_sym_insert_returning_repeat1, + STATE(1233), 1, + sym_into, + ACTIONS(1652), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36025] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(803), 1, + sym_into, + ACTIONS(1471), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36039] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(764), 1, + aux_sym_insert_returning_repeat1, + STATE(1120), 1, + sym_into, + ACTIONS(1692), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36059] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1662), 1, + aux_sym_if_statement_token1, ACTIONS(1694), 1, - anon_sym_COMMA, + aux_sym_insert_conflict_token1, ACTIONS(1696), 1, - anon_sym_RPAREN, - STATE(723), 1, - aux_sym_insert_items_repeat1, - [25283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_SEMI, - ACTIONS(1700), 1, - anon_sym_COMMA, - STATE(811), 1, - aux_sym_alter_table_change_repeat1, - [25296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_SQUOTE, - ACTIONS(1702), 1, + aux_sym_create_index_statement_token3, + STATE(1023), 1, + sym_if_not_exists, + STATE(1312), 1, sym_identifier, - STATE(566), 1, - sym_string, - [25309] = 4, + [36081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1706), 1, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1120), 1, + sym_into, + ACTIONS(1692), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(767), 1, - aux_sym_create_table_statement_repeat1, - [25322] = 2, + [36101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 3, - aux_sym_grant_targets_token1, - aux_sym_grant_targets_token2, - aux_sym_grant_targets_token3, - [25331] = 4, + ACTIONS(976), 1, + aux_sym_join_item_token3, + ACTIONS(978), 1, + aux_sym_join_type_token1, + STATE(736), 1, + sym_join_type, + ACTIONS(980), 3, + aux_sym_join_type_token2, + aux_sym_join_type_token4, + aux_sym_join_type_token5, + [36119] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1104), 1, + sym_into, + ACTIONS(1698), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36139] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(761), 1, + sym_into, + ACTIONS(1365), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36153] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1702), 1, + aux_sym_if_statement_token1, + STATE(870), 1, + sym_identifier, + STATE(1180), 1, + sym_if_exists, + ACTIONS(1700), 2, + aux_sym_conflict_target_token1, + aux_sym_alter_table_action_token2, + [36173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [36185] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(787), 1, + aux_sym_insert_returning_repeat1, + STATE(1197), 1, + sym_into, + ACTIONS(1561), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36205] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(785), 1, + sym_into, + ACTIONS(1320), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1194), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [36231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + STATE(1197), 1, + sym_into, + ACTIONS(1561), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36251] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(772), 1, + sym_into, + ACTIONS(912), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + aux_sym_where_filter_token1, + [36277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + aux_sym_create_type_statement_token2, + ACTIONS(1670), 1, + aux_sym_insert_conflict_token6, + ACTIONS(1672), 1, + aux_sym_alter_table_action_token3, + STATE(1142), 1, + sym_alter_column_action, + ACTIONS(1706), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [36297] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(784), 1, + sym_into, + ACTIONS(1194), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [36323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1664), 1, + sym__identifier, + STATE(984), 1, + sym__type, + STATE(1138), 1, + sym_alter_column_type, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [36343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1708), 1, + aux_sym_create_table_statement_token2, ACTIONS(1710), 1, - anon_sym_LPAREN, - ACTIONS(1712), 1, - aux_sym_index_using_token1, - STATE(1096), 1, - sym_index_using, - [25344] = 4, + aux_sym_return_setof_token1, + STATE(1316), 3, + sym_return_setof, + sym_return_table, + sym_identifier, + [36361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [36373] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(812), 1, + sym_into, + ACTIONS(1005), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + aux_sym_for_statement_token2, + [36399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(789), 1, + sym_into, + ACTIONS(894), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [36414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(772), 1, + sym_into, + ACTIONS(912), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [36429] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1714), 1, + anon_sym_COMMA, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(449), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [36444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(803), 1, + sym_into, + ACTIONS(1471), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [36459] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1142), 1, + sym_alter_table_fk_ref_action, + ACTIONS(1706), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(1717), 2, + aux_sym_fk_ref_action_token3, + aux_sym_fk_ref_action_token4, + [36474] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_SEMI, + STATE(1288), 1, + sym_function_volatility, + ACTIONS(1721), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [36489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1662), 1, + aux_sym_if_statement_token1, + ACTIONS(1723), 1, aux_sym_insert_conflict_token1, - ACTIONS(1716), 1, - aux_sym_index_using_token1, - STATE(337), 1, - sym_join_condition, - [25357] = 4, + STATE(1048), 1, + sym_if_not_exists, + STATE(1298), 1, + sym_identifier, + [36508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 1, + ACTIONS(1725), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1727), 1, + anon_sym_RPAREN, + ACTIONS(1729), 1, + aux_sym_insert_items_token1, + STATE(828), 1, + sym_identifier, + STATE(892), 1, + sym_var_declaration, + [36538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1731), 1, + anon_sym_COMMA, + STATE(848), 1, + aux_sym_with_query_repeat1, + ACTIONS(1733), 3, aux_sym_insert_statement_token1, - ACTIONS(1720), 1, aux_sym_delete_statement_token1, - ACTIONS(1722), 1, aux_sym_select_statement_token1, - [25370] = 4, + [36553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1724), 1, - aux_sym_alter_table_rename_column_token2, - STATE(768), 1, - aux_sym_grant_privileges_repeat1, - [25383] = 2, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1664), 1, + sym__identifier, + STATE(864), 1, + sym__type, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [36570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 3, + STATE(1323), 1, + sym_trigger_event, + ACTIONS(1735), 4, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token5, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [36583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1737), 1, + anon_sym_SEMI, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + STATE(1029), 1, + sym_index_includes, + STATE(1297), 1, + sym_where_filter, + [36602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [36613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, aux_sym_body_token1, + ACTIONS(1745), 1, aux_sym_declarations_token1, - sym_identifier, - [25392] = 4, + STATE(1239), 1, + sym_body, + STATE(906), 2, + sym_declarations, + aux_sym_block_repeat1, + [36630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - ACTIONS(1728), 1, - sym_identifier, - STATE(342), 1, - sym__list_of_identifiers, - [25405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - sym_identifier, - STATE(804), 1, - sym_index_col, - [25418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, - anon_sym_RPAREN, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(737), 1, - aux_sym_create_table_statement_repeat1, - [25431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1730), 1, - anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1732), 1, - aux_sym_sequence_min_token1, - ACTIONS(1734), 1, - aux_sym_sequence_max_token1, - ACTIONS(1736), 1, - aux_sym_sequence_cycle_token1, - [25457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1738), 1, - anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - aux_sym_index_using_token1, - ACTIONS(1740), 1, - anon_sym_LPAREN, - STATE(1137), 1, - sym_index_using, - [25483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 1, - anon_sym_RPAREN, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(725), 1, - aux_sym_create_table_statement_repeat1, - [25496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1742), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(806), 1, + sym_into, + ACTIONS(1095), 3, anon_sym_SEMI, - ACTIONS(1744), 1, - aux_sym_schema_role_token1, - STATE(1081), 1, - sym_schema_role, - [25509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1548), 1, - anon_sym_COMMA, - ACTIONS(1659), 1, anon_sym_RPAREN, - STATE(777), 1, - aux_sym_grant_function_repeat1, - [25522] = 4, + aux_sym_for_statement_token2, + [36645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1563), 1, + aux_sym_insert_returning_token1, + STATE(1197), 1, + sym_into, + ACTIONS(1561), 2, anon_sym_SEMI, - ACTIONS(1748), 1, - anon_sym_COMMA, - STATE(781), 1, - aux_sym_grant_roles_repeat1, - [25535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1750), 1, anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25548] = 4, + [36662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(784), 1, + sym_into, + ACTIONS(1194), 3, anon_sym_SEMI, - ACTIONS(1754), 1, - anon_sym_COMMA, - STATE(721), 1, - aux_sym_grant_roles_repeat1, - [25561] = 4, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [36677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1469), 1, + sym__identifier, + STATE(864), 1, + sym__type, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [36694] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + ACTIONS(1747), 1, + anon_sym_SEMI, + STATE(1060), 1, + sym_index_includes, + STATE(1334), 1, + sym_where_filter, + [36713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1553), 1, + aux_sym_insert_returning_token1, + STATE(1191), 1, + sym_into, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [36730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + STATE(1329), 1, + sym_identifier, + STATE(1330), 1, + sym_function_call, + ACTIONS(1749), 2, + aux_sym_grant_targets_token6, + aux_sym_grant_targets_token7, + [36747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 1, + aux_sym_constraint_when_token1, + STATE(1100), 1, + sym_constraint_when, + ACTIONS(1751), 3, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_RPAREN, + [36762] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1753), 1, + aux_sym_conflict_target_token1, + ACTIONS(1755), 1, + aux_sym_alter_table_action_token2, ACTIONS(1757), 1, - anon_sym_SEMI, - STATE(721), 1, - aux_sym_grant_roles_repeat1, - [25574] = 4, + aux_sym_alter_table_rename_column_token2, + STATE(1357), 1, + sym_identifier, + [36781] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1759), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_RPAREN, - STATE(723), 1, - aux_sym_insert_items_repeat1, - [25587] = 2, + aux_sym_for_statement_token3, + ACTIONS(1764), 1, + aux_sym_if_statement_token5, + STATE(842), 1, + aux_sym_if_statement_repeat1, + ACTIONS(1761), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [36798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 3, + ACTIONS(1766), 5, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_RPAREN, - [25596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 1, - anon_sym_COMMA, - ACTIONS(1706), 1, - anon_sym_RPAREN, - STATE(737), 1, - aux_sym_create_table_statement_repeat1, - [25609] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1766), 1, - sym_identifier, - STATE(1036), 1, - sym_if_not_exists, - [25622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1768), 1, - anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25635] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, - aux_sym_index_using_token1, - ACTIONS(1770), 1, + aux_sym_insert_statement_token2, aux_sym_insert_conflict_token1, - STATE(337), 1, - sym_join_condition, - [25648] = 4, + aux_sym_insert_returning_token1, + [36809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(593), 1, + ACTIONS(1768), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1322), 3, anon_sym_SEMI, - ACTIONS(595), 1, - anon_sym_COMMA, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1772), 1, anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25674] = 4, + aux_sym_insert_statement_token2, + [36824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1774), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(779), 1, + sym_into, + ACTIONS(1680), 3, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25687] = 4, + aux_sym_for_statement_token2, + [36839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1662), 1, + aux_sym_if_statement_token1, + ACTIONS(1694), 1, + aux_sym_insert_conflict_token1, + STATE(1023), 1, + sym_if_not_exists, + STATE(1312), 1, + sym_identifier, + [36858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + ACTIONS(1771), 1, + anon_sym_SEMI, + STATE(1064), 1, + sym_index_includes, + STATE(1421), 1, + sym_where_filter, + [36877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1773), 1, anon_sym_COMMA, + STATE(848), 1, + aux_sym_with_query_repeat1, + ACTIONS(1776), 3, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [36892] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, ACTIONS(1778), 1, - aux_sym_alter_table_rename_column_token2, - STATE(783), 1, - aux_sym_grant_targets_repeat1, - [25700] = 4, + anon_sym_SEMI, + STATE(968), 1, + sym_index_includes, + STATE(1499), 1, + sym_where_filter, + [36911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, + ACTIONS(952), 1, + anon_sym_LPAREN, ACTIONS(1780), 1, - anon_sym_RPAREN, - STATE(744), 1, - aux_sym_grant_privileges_repeat1, - [25713] = 4, + sym__identifier, + STATE(768), 1, + sym_update_set, + STATE(1420), 1, + sym_identifier, + STATE(1443), 1, + sym__list_of_identifiers, + [36930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1778), 1, - aux_sym_alter_table_rename_column_token2, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - [25726] = 4, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + STATE(514), 1, + sym_predefined_types, + STATE(666), 1, + sym_identifier, + STATE(962), 1, + sym__type, + [36949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1782), 1, + STATE(1405), 1, + sym_trigger_event, + ACTIONS(1735), 4, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token5, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [36962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 1, + aux_sym_constraint_when_token1, + STATE(959), 1, + sym_constraint_when, + ACTIONS(1782), 3, anon_sym_SEMI, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25739] = 4, + anon_sym_COMMA, + anon_sym_RPAREN, + [36977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + ACTIONS(1664), 1, + sym__identifier, + STATE(542), 1, + sym__type, + STATE(514), 2, + sym_predefined_types, + sym_identifier, + [36994] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, ACTIONS(1784), 1, + aux_sym_insert_returning_token1, + STATE(1252), 1, + sym_into, + ACTIONS(1648), 2, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25752] = 4, + [37011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(761), 1, + sym_into, + ACTIONS(1365), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [37026] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1786), 1, - anon_sym_COMMA, - ACTIONS(1789), 1, - anon_sym_RPAREN, - STATE(737), 1, - aux_sym_create_table_statement_repeat1, - [25765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1791), 1, - sym_identifier, - STATE(1026), 1, - sym_if_not_exists, - [25778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1793), 1, - anon_sym_RPAREN, - STATE(690), 1, - aux_sym_create_index_statement_repeat1, - [25791] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, anon_sym_SEMI, - ACTIONS(1797), 1, - anon_sym_COMMA, - STATE(763), 1, - aux_sym_insert_returning_repeat1, - [25804] = 4, + STATE(1341), 1, + sym_function_volatility, + ACTIONS(1721), 3, + aux_sym_function_volatility_token1, + aux_sym_function_volatility_token2, + aux_sym_function_volatility_token3, + [37041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - sym_identifier, - STATE(693), 1, - sym_index_col, - [25817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1694), 1, - anon_sym_COMMA, - ACTIONS(1799), 1, - anon_sym_RPAREN, - STATE(699), 1, - aux_sym_insert_items_repeat1, - [25830] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1801), 3, - aux_sym_body_token1, - aux_sym_declarations_token1, - sym_identifier, - [25839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RPAREN, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - [25852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - aux_sym_index_using_token1, - ACTIONS(1805), 1, - anon_sym_LPAREN, - STATE(1050), 1, - sym_index_using, - [25865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1430), 1, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(785), 1, + sym_into, + ACTIONS(1320), 3, anon_sym_SEMI, - STATE(1051), 1, - sym_where_filter, - [25878] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1807), 1, anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [25891] = 2, + aux_sym_for_statement_token2, + [37056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 3, - aux_sym_create_table_statement_token2, - aux_sym_create_table_statement_token3, - aux_sym_grant_targets_token5, - [25900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [25913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(797), 1, - aux_sym_create_index_statement_repeat1, - [25926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - sym_identifier, - STATE(798), 1, - sym_index_col, - [25939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_COMMA, - STATE(752), 1, - aux_sym_alter_table_change_repeat1, - [25952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - aux_sym_index_using_token1, - ACTIONS(1818), 1, - anon_sym_LPAREN, - STATE(1146), 1, - sym_index_using, - [25965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_RPAREN, - STATE(755), 1, - aux_sym_update_set_repeat1, - [25978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1822), 1, - anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(755), 1, - aux_sym_update_set_repeat1, - [25991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 1, - aux_sym_create_table_statement_token2, - ACTIONS(1829), 1, - aux_sym_create_table_statement_token3, - ACTIONS(1831), 1, - aux_sym_grant_targets_token5, - [26004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [26017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_COMMA, - ACTIONS(1667), 1, - anon_sym_RPAREN, - STATE(755), 1, - aux_sym_update_set_repeat1, - [26030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1835), 1, - sym_identifier, - STATE(1015), 1, - sym_if_exists, - [26043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_index_col_nulls_token1, - [26052] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1839), 1, - anon_sym_SEMI, - STATE(984), 1, - sym_where_filter, - [26065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1665), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RPAREN, - STATE(758), 1, - aux_sym_update_set_repeat1, - [26078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym_COMMA, - ACTIONS(1843), 1, - anon_sym_SEMI, - STATE(765), 1, - aux_sym_insert_returning_repeat1, - [26091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1462), 1, - anon_sym_SEMI, - STATE(991), 1, - sym_where_filter, - [26104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 1, - anon_sym_SEMI, - ACTIONS(1845), 1, - anon_sym_COMMA, - STATE(765), 1, - aux_sym_insert_returning_repeat1, - [26117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1848), 1, - aux_sym_insert_conflict_token1, - STATE(806), 1, - aux_sym_grant_privileges_repeat1, - [26130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1704), 1, - anon_sym_COMMA, - ACTIONS(1850), 1, - anon_sym_RPAREN, - STATE(737), 1, - aux_sym_create_table_statement_repeat1, - [26143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1852), 1, - aux_sym_alter_table_rename_column_token2, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - [26156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1793), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [26169] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1854), 1, - aux_sym_psql_statement_token1, - ACTIONS(1856), 1, - sym_identifier, - STATE(796), 1, - aux_sym_psql_statement_repeat1, - [26182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1858), 1, - aux_sym_insert_items_token1, - ACTIONS(1860), 1, - aux_sym_alter_column_action_token1, - ACTIONS(1862), 1, - aux_sym_alter_column_action_token4, - [26195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - anon_sym_COMMA, - ACTIONS(1864), 1, - anon_sym_RPAREN, - STATE(625), 1, - aux_sym_conflict_target_repeat1, - [26208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1866), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1868), 1, - aux_sym_trigger_event_token2, - STATE(782), 1, - aux_sym_trigger_event_repeat1, - [26221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1548), 1, - anon_sym_COMMA, - ACTIONS(1870), 1, - anon_sym_RPAREN, - STATE(777), 1, - aux_sym_grant_function_repeat1, - [26234] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 3, - aux_sym_insert_items_token1, - anon_sym_COMMA, - anon_sym_RPAREN, - [26243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1872), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [26254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1872), 1, - anon_sym_RPAREN, - ACTIONS(1874), 1, - anon_sym_COMMA, - STATE(777), 1, - aux_sym_grant_function_repeat1, - [26267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [26280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1472), 1, - anon_sym_SEMI, - STATE(992), 1, - sym_where_filter, - [26293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_COMMA, - ACTIONS(1879), 1, - anon_sym_SEMI, - STATE(722), 1, - aux_sym_grant_roles_repeat1, - [26306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1748), 1, - anon_sym_COMMA, - ACTIONS(1879), 1, - anon_sym_SEMI, - STATE(721), 1, - aux_sym_grant_roles_repeat1, - [26319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1868), 1, - aux_sym_trigger_event_token2, - ACTIONS(1881), 1, - aux_sym_insert_conflict_token1, - STATE(790), 1, - aux_sym_trigger_event_repeat1, - [26332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1883), 1, - anon_sym_COMMA, - ACTIONS(1886), 1, - aux_sym_alter_table_rename_column_token2, - STATE(783), 1, - aux_sym_grant_targets_repeat1, - [26345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1776), 1, - anon_sym_COMMA, - ACTIONS(1852), 1, - aux_sym_alter_table_rename_column_token2, - STATE(732), 1, - aux_sym_grant_targets_repeat1, - [26358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 1, - anon_sym_COMMA, - ACTIONS(1888), 1, - anon_sym_RPAREN, - STATE(692), 1, - aux_sym_return_table_repeat1, - [26371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1196), 1, - anon_sym_RPAREN, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(791), 1, - aux_sym_create_table_statement_repeat1, - [26384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - anon_sym_RPAREN, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(711), 1, - aux_sym_create_table_statement_repeat1, - [26397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, + ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(1890), 1, - sym_identifier, - STATE(574), 1, - sym_string, - [26410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1892), 1, - anon_sym_LPAREN, - ACTIONS(1894), 1, - aux_sym_alter_column_action_token1, - ACTIONS(1896), 1, - aux_sym_with_query_item_token1, - [26423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1898), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1900), 1, - aux_sym_trigger_event_token2, - STATE(790), 1, - aux_sym_trigger_event_repeat1, - [26436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - anon_sym_RPAREN, - ACTIONS(1704), 1, - anon_sym_COMMA, - STATE(737), 1, - aux_sym_create_table_statement_repeat1, - [26449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1903), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [26458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - sym_identifier, - STATE(739), 1, - sym_index_col, - [26471] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - aux_sym_index_using_token1, - ACTIONS(1905), 1, - anon_sym_LPAREN, - STATE(977), 1, - sym_index_using, - [26484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1494), 1, - anon_sym_SEMI, - STATE(1018), 1, - sym_where_filter, - [26497] = 4, - ACTIONS(1531), 1, - sym_comment, - ACTIONS(1907), 1, - aux_sym_psql_statement_token1, - ACTIONS(1909), 1, - sym_identifier, - STATE(796), 1, - aux_sym_psql_statement_repeat1, - [26510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1912), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [26523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1912), 1, - anon_sym_RPAREN, - STATE(801), 1, - aux_sym_create_index_statement_repeat1, - [26536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1663), 1, - sym_identifier, - STATE(800), 1, - sym_index_col, - [26549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1914), 1, - anon_sym_RPAREN, - STATE(778), 1, - aux_sym_create_index_statement_repeat1, - [26562] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1914), 1, - anon_sym_RPAREN, - STATE(688), 1, - aux_sym_create_index_statement_repeat1, - [26575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1852), 1, - aux_sym_alter_table_rename_column_token2, - STATE(734), 1, - aux_sym_grant_privileges_repeat1, - [26588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 1, - aux_sym_where_filter_token1, - ACTIONS(1476), 1, - anon_sym_SEMI, - STATE(1007), 1, - sym_where_filter, - [26601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1916), 1, - anon_sym_RPAREN, - STATE(769), 1, - aux_sym_create_index_statement_repeat1, - [26614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1918), 1, - sym_identifier, - STATE(966), 1, - sym_if_not_exists, - [26627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(997), 1, - anon_sym_COMMA, - ACTIONS(1920), 1, - aux_sym_insert_conflict_token1, - STATE(365), 1, - aux_sym_grant_privileges_repeat1, - [26640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1922), 3, - aux_sym_schema_role_token2, - aux_sym_schema_role_token3, - sym_identifier, - [26649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1109), 1, - aux_sym_if_not_exists_token1, - ACTIONS(1924), 1, - sym_identifier, - STATE(935), 1, - sym_if_not_exists, - [26662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(1926), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [26673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 1, - aux_sym_schema_role_token1, - ACTIONS(1928), 1, - anon_sym_SEMI, - STATE(961), 1, - sym_schema_role, - [26686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1700), 1, - anon_sym_COMMA, - ACTIONS(1930), 1, - anon_sym_SEMI, - STATE(752), 1, - aux_sym_alter_table_change_repeat1, - [26699] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1478), 1, - aux_sym_schema_role_token1, - ACTIONS(1932), 1, - sym_identifier, - STATE(961), 1, - sym_schema_role, - [26712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1594), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [26720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, + ACTIONS(1788), 1, anon_sym_DOLLAR, STATE(880), 1, sym_dollar_quote, - [26730] = 3, + STATE(1456), 2, + sym_block, + sym_string, + [37073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 1, - aux_sym_function_return_token1, - STATE(942), 1, - sym_function_return, - [26740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1936), 2, + ACTIONS(1790), 5, anon_sym_SEMI, anon_sym_RPAREN, - [26748] = 3, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [37084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - sym_identifier, - STATE(917), 1, - sym_function_signature, - [26758] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 2, - aux_sym_insert_items_token1, - aux_sym_alter_column_action_token2, - [26766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 2, + STATE(1110), 1, + sym_alter_table_fk_ref_action, + ACTIONS(1717), 2, + aux_sym_fk_ref_action_token3, + aux_sym_fk_ref_action_token4, + ACTIONS(1792), 2, + anon_sym_SEMI, anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [26774] = 3, + [37099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(1794), 1, + aux_sym_insert_conflict_token6, + ACTIONS(1796), 1, + aux_sym_fk_ref_action_token1, + STATE(589), 1, + sym_fk_ref_action, + ACTIONS(1798), 2, + aux_sym_fk_ref_action_token3, + aux_sym_fk_ref_action_token4, + [37116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(815), 1, + sym_into, + ACTIONS(157), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [37131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + anon_sym_COLON_EQ, + [37142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1559), 1, + aux_sym_insert_returning_token1, + STATE(1106), 1, + sym_into, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [37159] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1731), 1, + anon_sym_COMMA, + STATE(827), 1, + aux_sym_with_query_repeat1, + ACTIONS(1802), 3, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [37174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + ACTIONS(1804), 1, + anon_sym_SEMI, + STATE(1096), 1, + sym_index_includes, + STATE(1500), 1, + sym_where_filter, + [37193] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1806), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [37208] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + ACTIONS(1363), 1, + sym__identifier, + STATE(854), 1, sym_identifier, - STATE(775), 1, - sym_var_declaration, - [26784] = 3, + STATE(1088), 1, + sym_if_not_exists, + STATE(1125), 1, + sym_table_column_item, + [37227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(784), 1, + STATE(1125), 1, + sym_alter_table_fk_ref_action, + ACTIONS(1666), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(1717), 2, + aux_sym_fk_ref_action_token3, + aux_sym_fk_ref_action_token4, + [37242] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1363), 1, + sym__identifier, + ACTIONS(1467), 1, + aux_sym_predefined_types_token1, + STATE(514), 1, + sym_predefined_types, + STATE(648), 1, + sym_identifier, + STATE(1247), 1, + sym__type, + [37261] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + ACTIONS(1808), 1, + anon_sym_SEMI, + STATE(978), 1, + sym_index_includes, + STATE(1447), 1, + sym_where_filter, + [37280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(812), 1, + sym_into, + ACTIONS(1005), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_for_statement_token2, + [37295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1810), 1, + aux_sym_create_index_statement_token1, + ACTIONS(1812), 1, + aux_sym_table_constraint_ty_token1, + ACTIONS(1814), 1, + aux_sym_table_constraint_ty_token2, + ACTIONS(1816), 1, + aux_sym_table_constraint_ty_token4, + STATE(840), 1, + sym_table_constraint_ty, + [37314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, anon_sym_LPAREN, - STATE(644), 1, + ACTIONS(1780), 1, + sym__identifier, + STATE(733), 1, + sym_update_set, + STATE(1420), 1, + sym_identifier, + STATE(1443), 1, sym__list_of_identifiers, - [26794] = 2, + [37333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 2, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(1788), 1, + anon_sym_DOLLAR, + STATE(880), 1, + sym_dollar_quote, + STATE(1359), 2, + sym_block, + sym_string, + [37350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1818), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_conflict_token1, + aux_sym_insert_returning_token1, + [37361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_COMMA, + STATE(868), 1, + aux_sym_insert_returning_repeat1, + ACTIONS(1820), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + [37376] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1739), 1, + aux_sym_index_includes_token1, + ACTIONS(1822), 1, + anon_sym_SEMI, + STATE(1002), 1, + sym_index_includes, + STATE(1262), 1, + sym_where_filter, + [37395] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1743), 1, + aux_sym_body_token1, + ACTIONS(1745), 1, + aux_sym_declarations_token1, + STATE(1168), 1, + sym_body, + STATE(832), 2, + sym_declarations, + aux_sym_block_repeat1, + [37412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1824), 1, + aux_sym_for_statement_token3, + ACTIONS(1828), 1, + aux_sym_if_statement_token5, + STATE(842), 1, + aux_sym_if_statement_repeat1, + ACTIONS(1826), 2, + aux_sym_if_statement_token3, + aux_sym_if_statement_token4, + [37429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + ACTIONS(1609), 1, + aux_sym_insert_returning_token1, + STATE(1108), 1, + sym_into, + ACTIONS(1607), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [37446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1830), 4, anon_sym_SEMI, aux_sym_create_function_statement_token1, - [26802] = 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + [37456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1034), 1, + sym_index_col, + [37472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1836), 1, + anon_sym_COMMA, + ACTIONS(1838), 1, + anon_sym_RPAREN, + ACTIONS(1840), 1, + aux_sym_insert_items_token1, + STATE(940), 1, + aux_sym_create_type_statement_repeat2, + [37488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1842), 4, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token5, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [37498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(577), 1, + sym_identifier, + ACTIONS(1297), 2, anon_sym_SEMI, - ACTIONS(1950), 1, - aux_sym_index_using_token1, - [26812] = 2, + anon_sym_COMMA, + [37512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 2, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1006), 1, + sym_index_col, + [37528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 1, + aux_sym_alter_table_statement_token1, + ACTIONS(1483), 1, + aux_sym_alter_table_action_token1, + ACTIONS(1485), 1, + aux_sym_alter_table_action_token3, + STATE(1163), 1, + sym_alter_table_action, + [37544] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1083), 1, + sym_index_col, + [37560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1846), 1, + aux_sym_insert_conflict_token1, + ACTIONS(1848), 1, + aux_sym_insert_conflict_token3, + STATE(1369), 1, + sym_conflict_target, + [37576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1836), 1, + anon_sym_COMMA, + ACTIONS(1850), 1, + anon_sym_RPAREN, + ACTIONS(1852), 1, + aux_sym_insert_items_token1, + STATE(885), 1, + aux_sym_create_type_statement_repeat2, + [37592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1093), 1, + sym_index_col, + [37608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(1166), 1, + sym_into, + ACTIONS(1599), 2, anon_sym_SEMI, anon_sym_RPAREN, - [26820] = 2, + [37622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [26828] = 2, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1702), 1, + aux_sym_if_statement_token1, + STATE(822), 1, + sym_identifier, + STATE(1131), 1, + sym_if_exists, + [37638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 2, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(1118), 1, + sym_into, + ACTIONS(1603), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [37652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(796), 1, + aux_sym_index_using_token1, + STATE(1164), 1, + sym_execute_using, + ACTIONS(1854), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [37666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1856), 4, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [26836] = 3, + aux_sym_constraint_when_token1, + [37676] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(1224), 1, + sym_into, + ACTIONS(1684), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [37690] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1858), 1, + aux_sym_grant_privileges_token1, + STATE(976), 1, + sym_identifier, + STATE(1449), 1, + sym_grant_privileges, + [37706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(1115), 1, + sym_into, + ACTIONS(1860), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [37720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1862), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [37730] = 4, + ACTIONS(1864), 1, + anon_sym_SQUOTE, + ACTIONS(1869), 1, + sym_comment, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1866), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [37744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1871), 1, + sym__identifier, + STATE(369), 1, + sym_identifier, + STATE(417), 1, + sym__list_of_identifiers, + [37760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 4, + anon_sym_COMMA, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [37770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + aux_sym_body_token1, + ACTIONS(1875), 1, + aux_sym_declarations_token1, + STATE(906), 2, + sym_declarations, + aux_sym_block_repeat1, + [37784] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + ACTIONS(1597), 1, + aux_sym_trigger_cond_token1, + STATE(1153), 1, + sym_trigger_cond, + STATE(1400), 1, + sym_trigger_exec, + [37800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_SQUOTE, + ACTIONS(1780), 1, + sym__identifier, + STATE(1198), 1, + sym_identifier, + STATE(1199), 1, + sym_string, + [37816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1878), 4, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + aux_sym_body_token1, + aux_sym_declarations_token1, + [37826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(1780), 1, + sym__identifier, + STATE(823), 2, + sym_string, + sym_identifier, + [37840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + STATE(1208), 1, + sym_if_not_exists, + STATE(1278), 1, + sym_identifier, + [37856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1880), 4, + aux_sym_insert_statement_token1, + aux_sym_insert_conflict_token5, + aux_sym_delete_statement_token1, + aux_sym_trigger_event_token1, + [37866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1882), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [37876] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(852), 1, + sym_trigger_when, + ACTIONS(1884), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [37888] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1886), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [37902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + STATE(1258), 1, + sym_select_statement, + STATE(1336), 1, + sym_with_query, + [37918] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1890), 1, + anon_sym_SQUOTE, + STATE(919), 1, + aux_sym_string_repeat1, + ACTIONS(1892), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [37932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1894), 4, + anon_sym_COMMA, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [37942] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [37956] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1898), 1, + aux_sym_psql_statement_token1, + ACTIONS(1900), 1, + sym__identifier, + STATE(920), 2, + sym_identifier, + aux_sym_psql_statement_repeat1, + [37970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1622), 1, + aux_sym_index_col_nulls_token1, + STATE(1184), 1, + sym_index_col_nulls, + ACTIONS(1903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1062), 1, + sym_index_col, + [38000] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1905), 1, + anon_sym_SQUOTE, + STATE(928), 1, + aux_sym_string_repeat1, + ACTIONS(1907), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38014] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + STATE(483), 1, + sym_identifier, + STATE(1226), 1, + sym_if_not_exists, + [38030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_constraint_when_token1, + [38040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + ACTIONS(1780), 1, + sym__identifier, + STATE(369), 1, + sym_identifier, + STATE(417), 1, + sym__list_of_identifiers, + [38056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1095), 1, + sym_index_col, + [38072] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38086] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(829), 1, + sym_trigger_when, + ACTIONS(1884), 3, + aux_sym_trigger_when_token1, + aux_sym_trigger_when_token2, + aux_sym_trigger_when_token3, + [38098] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1913), 1, + anon_sym_SQUOTE, + STATE(933), 1, + aux_sym_string_repeat1, + ACTIONS(1915), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1917), 4, + anon_sym_COMMA, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [38122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1832), 1, + anon_sym_LPAREN, + ACTIONS(1834), 1, + sym__identifier, + STATE(746), 1, + sym_identifier, + STATE(1143), 1, + sym_index_col, + [38138] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1654), 1, + aux_sym_schema_role_token1, + STATE(1021), 1, + sym_identifier, + STATE(1317), 1, + sym_schema_role, + [38168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1622), 1, + aux_sym_index_col_nulls_token1, + STATE(1206), 1, + sym_index_col_nulls, + ACTIONS(1921), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38182] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_SQUOTE, + STATE(941), 1, + aux_sym_string_repeat1, + ACTIONS(1925), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [38206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + ACTIONS(1597), 1, + aux_sym_trigger_cond_token1, + STATE(1213), 1, + sym_trigger_cond, + STATE(1321), 1, + sym_trigger_exec, + [38222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(401), 1, + anon_sym_SQUOTE, + ACTIONS(1780), 1, + sym__identifier, + STATE(857), 2, + sym_string, + sym_identifier, + [38236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_COMMA, + STATE(940), 1, + aux_sym_create_type_statement_repeat2, + ACTIONS(1930), 2, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [38250] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1932), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + STATE(1318), 1, + sym_identifier, + ACTIONS(1934), 2, + aux_sym_schema_role_token2, + aux_sym_schema_role_token3, + [38278] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_SQUOTE, + STATE(945), 1, + aux_sym_string_repeat1, + ACTIONS(1938), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [38302] = 4, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(1942), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + STATE(1214), 1, + sym_if_not_exists, + STATE(1320), 1, + sym_identifier, + [38332] = 4, + ACTIONS(1869), 1, + sym_comment, ACTIONS(1944), 1, - sym_identifier, - STATE(785), 1, - sym_var_declaration, - [26846] = 2, + anon_sym_SQUOTE, + STATE(949), 1, + aux_sym_string_repeat1, + ACTIONS(1946), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [26854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1956), 2, - anon_sym_SEMI, + ACTIONS(1948), 4, anon_sym_COMMA, - [26862] = 3, - ACTIONS(3), 1, + aux_sym_insert_statement_token1, + aux_sym_delete_statement_token1, + aux_sym_select_statement_token1, + [38356] = 4, + ACTIONS(1869), 1, sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(889), 1, - sym__list_of_identifiers, - [26872] = 3, - ACTIONS(3), 1, + ACTIONS(1950), 1, + anon_sym_SQUOTE, + STATE(903), 1, + aux_sym_string_repeat1, + ACTIONS(1888), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38370] = 4, + ACTIONS(1869), 1, sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(647), 1, - sym__list_of_identifiers, - [26882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1898), 2, - aux_sym_insert_conflict_token1, - aux_sym_trigger_event_token2, - [26890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - STATE(1023), 1, - sym_trigger_exec, - [26900] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [26908] = 3, - ACTIONS(3), 1, + ACTIONS(1952), 1, + anon_sym_SQUOTE, + STATE(915), 1, + aux_sym_string_repeat1, + ACTIONS(1954), 2, + aux_sym_string_token1, + aux_sym_string_token2, + [38384] = 4, + ACTIONS(1869), 1, sym_comment, + ACTIONS(1956), 1, + aux_sym_psql_statement_token1, ACTIONS(1958), 1, - anon_sym_LPAREN, - ACTIONS(1960), 1, - aux_sym_update_set_token1, - [26918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1962), 1, + sym__identifier, + STATE(920), 2, sym_identifier, - STATE(658), 1, - sym_with_query_item, - [26928] = 2, + aux_sym_psql_statement_repeat1, + [38398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 2, + ACTIONS(21), 1, + aux_sym_sequence_start_token2, + ACTIONS(23), 1, + aux_sym_select_statement_token1, + STATE(1336), 1, + sym_with_query, + STATE(1346), 1, + sym_select_statement, + [38414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1702), 1, + aux_sym_if_statement_token1, + STATE(662), 1, + sym_identifier, + STATE(1179), 1, + sym_if_exists, + [38430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1960), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + aux_sym_insert_statement_token2, + aux_sym_insert_returning_token1, + [38440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + STATE(480), 1, + sym_identifier, + STATE(1161), 1, + sym_if_not_exists, + [38456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + aux_sym_insert_statement_token2, + STATE(1141), 1, + sym_into, + ACTIONS(1605), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [38470] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1361), 1, + aux_sym_if_statement_token1, + STATE(1152), 1, + sym_if_not_exists, + STATE(1403), 1, + sym_identifier, + [38486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + ACTIONS(1962), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [38500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 3, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_RPAREN, - [26936] = 3, + [38509] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1966), 1, - aux_sym_into_token1, - ACTIONS(1968), 1, - sym_identifier, - [26946] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1399), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1405), 1, - sym_identifier, - [26956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 2, - anon_sym_SEMI, anon_sym_COMMA, - [26964] = 2, + ACTIONS(1968), 1, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [38522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 2, - anon_sym_SEMI, + ACTIONS(1788), 1, + anon_sym_DOLLAR, + STATE(880), 1, + sym_dollar_quote, + STATE(1460), 1, + sym_block, + [38535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1970), 1, + anon_sym_COMMA, + ACTIONS(1972), 1, anon_sym_RPAREN, - [26972] = 3, + STATE(973), 1, + aux_sym_grant_function_repeat1, + [38548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(922), 1, + anon_sym_SEMI, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38561] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1974), 1, - sym_identifier, - STATE(337), 1, - sym_from_table, - [26982] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 2, anon_sym_COMMA, + ACTIONS(1977), 1, aux_sym_alter_table_rename_column_token2, - [26990] = 2, + STATE(964), 1, + aux_sym_grant_targets_repeat1, + [38574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [26998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - aux_sym_alter_column_action_token1, - ACTIONS(1980), 1, - aux_sym_insert_items_token1, - [27032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1369), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, + ACTIONS(1979), 1, + sym__identifier, + STATE(951), 2, sym_identifier, - STATE(910), 1, - sym_table_column_item, - [27050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1848), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1984), 1, - anon_sym_privileges, - [27060] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1986), 1, - sym_identifier, - STATE(1049), 1, - sym_function_call, - [27078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 2, - aux_sym_index_col_nulls_token2, - aux_sym_index_col_nulls_token3, - [27086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 2, - aux_sym_update_set_token1, - aux_sym_trigger_scope_token3, - [27102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1994), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [27110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1996), 1, - anon_sym_RPAREN, - ACTIONS(1998), 1, - sym_identifier, - [27120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2000), 1, - sym_identifier, - STATE(337), 1, - sym_from_table, - [27130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2002), 2, - aux_sym_insert_conflict_token1, - sym_identifier, - [27138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1813), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1825), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 1, - anon_sym_SEMI, - ACTIONS(2006), 1, - anon_sym_DOLLAR, - [27164] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2008), 2, - anon_sym_SEMI, - aux_sym_where_filter_token1, - [27172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 1, - aux_sym_alter_table_action_token2, - ACTIONS(2012), 1, - sym_identifier, - [27182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2014), 1, - anon_sym_LPAREN, - STATE(944), 1, - sym_function_parameters, - [27192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27200] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 2, - aux_sym_insert_conflict_token5, - aux_sym_delete_statement_token1, - [27216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2018), 1, - aux_sym_insert_conflict_token1, - ACTIONS(2020), 1, - sym_identifier, - [27226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2022), 1, - anon_sym_SEMI, - ACTIONS(2024), 1, - anon_sym_DOLLAR, - [27236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2026), 1, - anon_sym_SEMI, - ACTIONS(2028), 1, - anon_sym_COLON_EQ, - [27246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1938), 1, - sym_identifier, - STATE(815), 1, - sym_function_signature, - [27256] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - STATE(1064), 1, - sym_trigger_exec, - [27266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2030), 2, - aux_sym_constraint_when_token3, - aux_sym_constraint_when_token4, - [27274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2032), 1, - aux_sym_insert_conflict_token4, - ACTIONS(2034), 1, - aux_sym_insert_conflict_token5, - [27284] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2036), 2, - anon_sym_SEMI, - aux_sym_create_function_statement_token1, - [27316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1444), 1, - anon_sym_DOLLAR, - STATE(822), 1, - sym_dollar_quote, - [27326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2038), 1, - sym_identifier, - STATE(834), 1, - sym_grant_function, - [27344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2040), 2, - anon_sym_COMMA, - aux_sym_alter_table_rename_column_token2, - [27368] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1377), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1640), 1, - aux_sym_insert_conflict_token1, - ACTIONS(1642), 1, - sym_identifier, - [27386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(953), 1, - aux_sym_constraint_foreign_key_token1, - STATE(666), 1, - sym_constraint_foreign_key, - [27396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1672), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 1, - anon_sym_DOLLAR, - ACTIONS(2044), 1, - sym_identifier, - [27422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2046), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2048), 1, - aux_sym_sequence_increment_token2, - ACTIONS(2050), 1, - sym_number, - [27440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [27448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, - sym_identifier, - STATE(728), 1, - sym_from_table, - [27458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - aux_sym_sequence_start_token2, - ACTIONS(2058), 1, - sym_number, - [27468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2060), 1, - aux_sym_join_item_token3, - ACTIONS(2062), 1, - aux_sym_join_type_token3, - [27478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(776), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_COMMA, - ACTIONS(2066), 1, - anon_sym_RPAREN, - [27496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2002), 2, - aux_sym_schema_role_token1, - sym_identifier, - [27520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2068), 1, - sym_identifier, - STATE(337), 1, - sym_from_table, - [27530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2038), 1, - sym_identifier, - STATE(784), 1, - sym_grant_function, - [27540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(864), 1, - sym__list_of_identifiers, - [27558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - aux_sym_trigger_exec_token1, - STATE(1109), 1, - sym_trigger_exec, - [27568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 1, - aux_sym_delete_statement_token3, - ACTIONS(2072), 1, - sym_identifier, - [27578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1496), 2, - anon_sym_SEMI, - anon_sym_COMMA, - [27586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - sym_identifier, - STATE(849), 1, - sym_table_column_item, - [27596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1962), 1, - sym_identifier, - STATE(607), 1, - sym_with_query_item, - [27606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1188), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [27614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 1, - sym_identifier, - STATE(770), 1, aux_sym_psql_statement_repeat1, - [27624] = 3, + [38585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(784), 1, - anon_sym_LPAREN, - STATE(344), 1, - sym__list_of_identifiers, - [27634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 2, - aux_sym_trigger_exec_token1, - aux_sym_trigger_cond_token1, - [27642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - aux_sym_function_return_token1, - STATE(972), 1, - sym_function_return, - [27652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2054), 1, + ACTIONS(1780), 1, + sym__identifier, + STATE(866), 1, + sym_with_query_item, + STATE(1441), 1, sym_identifier, - STATE(705), 1, - sym_from_table, - [27662] = 2, + [38598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 2, - aux_sym_sequence_owned_token2, - sym_identifier, - [27670] = 2, + ACTIONS(1981), 1, + aux_sym_insert_statement_token1, + ACTIONS(1983), 1, + aux_sym_delete_statement_token1, + ACTIONS(1985), 1, + aux_sym_select_statement_token1, + [38611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 1, - sym_identifier, - [27677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2082), 1, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1808), 1, anon_sym_SEMI, - [27684] = 2, + STATE(1447), 1, + sym_where_filter, + [38624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, + ACTIONS(1780), 1, + sym__identifier, + STATE(1165), 1, sym_identifier, - [27691] = 2, + STATE(1196), 1, + sym_function_signature, + [38637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(1987), 3, + aux_sym_create_table_statement_token1, + aux_sym_create_table_statement_token2, + aux_sym_grant_targets_token5, + [38646] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1989), 1, + aux_sym_create_table_statement_token1, + ACTIONS(1991), 1, + aux_sym_create_table_statement_token2, + ACTIONS(1993), 1, + aux_sym_grant_targets_token5, + [38659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + ACTIONS(1995), 1, + anon_sym_DOLLAR, + STATE(1364), 1, sym_identifier, - [27698] = 2, + [38672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, - aux_sym_function_return_token1, - [27705] = 2, + ACTIONS(1970), 1, + anon_sym_COMMA, + ACTIONS(1997), 1, + anon_sym_RPAREN, + STATE(1090), 1, + aux_sym_grant_function_repeat1, + [38685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, - aux_sym_insert_conflict_token4, - [27712] = 2, + ACTIONS(1970), 1, + anon_sym_COMMA, + ACTIONS(1997), 1, + anon_sym_RPAREN, + STATE(1044), 1, + aux_sym_grant_function_repeat1, + [38698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - aux_sym_create_schema_statement_token1, - [27719] = 2, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(1999), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2001), 1, + aux_sym_insert_conflict_token1, + STATE(1013), 1, + aux_sym_grant_privileges_repeat1, + [38724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2003), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(2005), 1, + anon_sym_SEMI, + STATE(1432), 1, + sym_where_filter, + [38750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RPAREN, + STATE(987), 1, + aux_sym_update_set_repeat1, + [38763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2011), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, + ACTIONS(2013), 1, + aux_sym_into_token1, + STATE(553), 1, sym_identifier, - [27726] = 2, + [38789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 1, - aux_sym_with_query_item_token1, - [27733] = 2, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2015), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2017), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 1, + aux_sym_index_using_token1, + ACTIONS(2019), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [38826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2023), 1, + anon_sym_SEMI, + ACTIONS(2025), 1, + anon_sym_COMMA, + STATE(985), 1, + aux_sym_grant_roles_repeat1, + [38839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 1, + anon_sym_SEMI, + ACTIONS(2030), 1, + anon_sym_COMMA, + STATE(985), 1, + aux_sym_grant_roles_repeat1, + [38852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(2032), 1, + anon_sym_RPAREN, + STATE(993), 1, + aux_sym_update_set_repeat1, + [38865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(2032), 1, + anon_sym_RPAREN, + STATE(994), 1, + aux_sym_update_set_repeat1, + [38878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2034), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38891] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2036), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2038), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2040), 1, + anon_sym_COMMA, + ACTIONS(2043), 1, + anon_sym_RPAREN, + STATE(992), 1, + aux_sym_create_type_statement_repeat1, + [38930] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(2048), 1, + anon_sym_RPAREN, + STATE(993), 1, + aux_sym_update_set_repeat1, + [38943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2007), 1, + anon_sym_COMMA, + ACTIONS(2050), 1, + anon_sym_RPAREN, + STATE(993), 1, + aux_sym_update_set_repeat1, + [38956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_SEMI, + ACTIONS(2054), 1, + aux_sym_schema_role_token1, + STATE(1317), 1, + sym_schema_role, + [38969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2056), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [38982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1694), 1, + aux_sym_insert_conflict_token1, + STATE(1312), 1, + sym_identifier, + [38995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2058), 1, + anon_sym_SEMI, + STATE(985), 1, + aux_sym_grant_roles_repeat1, + [39008] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(2060), 1, + aux_sym_into_token1, + STATE(709), 1, + sym_identifier, + [39021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_COMMA, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(1000), 1, + aux_sym_insert_items_repeat1, + [39034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + sym__identifier, + [39043] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1747), 1, + anon_sym_SEMI, + STATE(1334), 1, + sym_where_filter, + [39056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2069), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [39069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1165), 1, + sym_identifier, + STATE(1225), 1, + sym_function_signature, + [39082] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [39095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_RPAREN, + STATE(1061), 1, + aux_sym_create_index_statement_repeat1, + [39108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_SEMI, + ACTIONS(2073), 1, + anon_sym_COMMA, + STATE(1007), 1, + aux_sym_insert_returning_repeat1, + [39121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 1, + anon_sym_RPAREN, + ACTIONS(2076), 1, + anon_sym_COMMA, + STATE(1008), 1, + aux_sym_create_type_statement_repeat2, + [39134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2079), 1, + anon_sym_COMMA, + ACTIONS(2081), 1, + anon_sym_RPAREN, + STATE(1000), 1, + aux_sym_insert_items_repeat1, + [39147] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + sym__identifier, + STATE(836), 1, + sym_identifier, + STATE(1018), 1, + sym_var_declaration, + [39160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2085), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [39173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2089), 1, + aux_sym_index_using_token1, + STATE(447), 1, + sym_join_condition, + [39186] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2091), 1, + aux_sym_insert_conflict_token1, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + [39199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2095), 1, + aux_sym_trigger_event_token2, + STATE(1014), 1, + aux_sym_trigger_event_repeat1, + [39212] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(905), 1, + sym_with_query_item, + STATE(1441), 1, + sym_identifier, + [39225] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2098), 1, - aux_sym_conflict_target_token1, - [27740] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(2100), 1, - aux_sym_alter_table_rename_column_token2, - [27747] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(790), 1, - aux_sym_select_limit_token2, - [27754] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_alter_column_action_token1, ACTIONS(2102), 1, + aux_sym_with_query_item_token1, + [39238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1329), 1, sym_identifier, - [27761] = 2, + STATE(1355), 1, + sym_function_call, + [39251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1930), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_insert_items_token1, + [39260] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2104), 1, - anon_sym_RPAREN, - [27768] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(2106), 1, - sym_identifier, - [27775] = 2, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_create_table_statement_repeat1, + [39273] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2058), 1, + anon_sym_SEMI, + STATE(986), 1, + aux_sym_grant_roles_repeat1, + [39286] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + aux_sym_schema_role_token1, ACTIONS(2108), 1, - sym_identifier, - [27782] = 2, + anon_sym_SEMI, + STATE(1293), 1, + sym_schema_role, + [39299] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2110), 1, - aux_sym_join_item_token3, - [27789] = 2, + anon_sym_COMMA, + ACTIONS(2112), 1, + anon_sym_RPAREN, + STATE(1046), 1, + aux_sym_create_type_statement_repeat2, + [39312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(1723), 1, + aux_sym_insert_conflict_token1, + STATE(1298), 1, sym_identifier, - [27796] = 2, + [39325] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2114), 1, - sym_identifier, - [27803] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(2116), 1, - aux_sym_insert_conflict_token3, - [27810] = 2, + aux_sym_index_using_token1, + STATE(1308), 1, + sym_index_using, + [39338] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2118), 1, - sym_identifier, - [27817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_SEMI, - [27824] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_min_token1, ACTIONS(2120), 1, - aux_sym_delete_statement_token3, - [27831] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_sequence_max_token1, ACTIONS(2122), 1, - sym_identifier, - [27838] = 2, + aux_sym_sequence_cycle_token1, + [39351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, - aux_sym_function_return_token1, - [27845] = 2, + ACTIONS(2124), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_index_col_nulls_token1, + [39360] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, ACTIONS(2126), 1, anon_sym_RPAREN, - [27852] = 2, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [39373] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, ACTIONS(2128), 1, - aux_sym_sequence_increment_token2, - [27859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 1, - anon_sym_SEMI, - [27866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2132), 1, - sym_number, - [27873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_LPAREN, - [27880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2136), 1, - aux_sym_delete_statement_token3, - [27887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_number, - [27894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1732), 1, - sym_number, - [27901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - sym_identifier, - [27908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2140), 1, - anon_sym_SEMI, - [27915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, anon_sym_RPAREN, - [27922] = 2, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [39386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 1, - aux_sym_time_expression_token3, - [27929] = 2, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1778), 1, + anon_sym_SEMI, + STATE(1499), 1, + sym_where_filter, + [39399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, + anon_sym_RPAREN, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [39412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 1, + aux_sym_index_using_token1, + ACTIONS(2132), 1, + anon_sym_LPAREN, + STATE(1461), 1, + sym_index_using, + [39425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, + anon_sym_RPAREN, + STATE(1019), 1, + aux_sym_create_table_statement_repeat1, + [39438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + ACTIONS(2136), 1, + anon_sym_RPAREN, + STATE(1053), 1, + sym_identifier, + [39451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2126), 1, + anon_sym_RPAREN, + STATE(960), 1, + aux_sym_create_index_statement_repeat1, + [39464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, + anon_sym_SEMI, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [39477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(2140), 1, + aux_sym_alter_table_action_token2, + STATE(774), 1, + sym_identifier, + [39490] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2144), 1, - aux_sym_insert_conflict_token1, - [27936] = 2, + aux_sym_trigger_scope_token2, + ACTIONS(2142), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [39501] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2146), 1, - sym_identifier, - [27943] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(2148), 1, + anon_sym_COMMA, + STATE(1065), 1, + aux_sym_alter_table_change_repeat1, + [39514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2150), 3, + aux_sym_grant_targets_token1, + aux_sym_grant_targets_token2, + aux_sym_grant_targets_token3, + [39523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1067), 1, + sym_grant_function, + STATE(1365), 1, sym_identifier, - [27950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2150), 1, - sym_identifier, - [27957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1742), 1, - anon_sym_SEMI, - [27964] = 2, + [39536] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, ACTIONS(2152), 1, - anon_sym_SEMI, - [27971] = 2, + aux_sym_alter_table_rename_column_token2, + STATE(1070), 1, + aux_sym_grant_privileges_repeat1, + [39549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + sym__identifier, + STATE(836), 1, + sym_identifier, + STATE(1079), 1, + sym_var_declaration, + [39562] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2154), 1, + anon_sym_COMMA, + ACTIONS(2157), 1, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_create_table_statement_repeat1, + [39575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1970), 1, + anon_sym_COMMA, + ACTIONS(2159), 1, + anon_sym_RPAREN, + STATE(1090), 1, + aux_sym_grant_function_repeat1, + [39588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1419), 1, + anon_sym_RPAREN, + ACTIONS(2104), 1, + anon_sym_COMMA, + STATE(1081), 1, + aux_sym_create_table_statement_repeat1, + [39601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2161), 1, + anon_sym_RPAREN, + STATE(1008), 1, + aux_sym_create_type_statement_repeat2, + [39614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 1, + aux_sym_index_using_token1, + ACTIONS(2163), 1, anon_sym_LPAREN, - [27978] = 2, + STATE(1418), 1, + sym_index_using, + [39627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 1, - aux_sym_if_not_exists_token2, - [27985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2158), 1, - aux_sym_table_constraint_ty_token3, - [27992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2160), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(2165), 1, + aux_sym_insert_conflict_token1, + STATE(1430), 1, sym_identifier, - [27999] = 2, + [39640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_LPAREN, - [28006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2164), 1, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(2167), 1, + aux_sym_sequence_owned_token2, + STATE(686), 1, sym_identifier, - [28013] = 2, + [39653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 1, - aux_sym_create_schema_statement_token1, - [28020] = 2, + ACTIONS(1442), 1, + anon_sym_RPAREN, + ACTIONS(2104), 1, + anon_sym_COMMA, + STATE(1043), 1, + aux_sym_create_table_statement_repeat1, + [39666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, - sym_identifier, - [28027] = 2, + ACTIONS(1442), 1, + anon_sym_RPAREN, + ACTIONS(2104), 1, + anon_sym_COMMA, + STATE(1099), 1, + aux_sym_create_table_statement_repeat1, + [39679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, - aux_sym_insert_conflict_token2, - [28034] = 2, + ACTIONS(2169), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2171), 1, + aux_sym_trigger_event_token2, + STATE(1089), 1, + aux_sym_trigger_event_repeat1, + [39692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, - aux_sym_delete_statement_token3, - [28041] = 2, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2173), 1, + anon_sym_RPAREN, + STATE(1098), 1, + aux_sym_grant_privileges_repeat1, + [39705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, - aux_sym_select_statement_token1, - [28048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2024), 1, - anon_sym_DOLLAR, - [28055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_SEMI, - [28062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - anon_sym_EQ, - [28069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1818), 1, - anon_sym_LPAREN, - [28076] = 2, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2175), 1, + anon_sym_RPAREN, + STATE(1008), 1, + aux_sym_create_type_statement_repeat2, + [39718] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2177), 1, + anon_sym_COMMA, ACTIONS(2180), 1, - sym_identifier, - [28083] = 2, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [39731] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2175), 1, + anon_sym_RPAREN, ACTIONS(2182), 1, - sym_identifier, - [28090] = 2, + anon_sym_COMMA, + STATE(1071), 1, + aux_sym_create_type_statement_repeat1, + [39744] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2184), 1, - anon_sym_SEMI, - [28097] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(2186), 1, - aux_sym_alter_table_rename_column_token2, - [28104] = 2, + aux_sym_grant_targets_token4, + STATE(1101), 1, + aux_sym_grant_privileges_repeat1, + [39757] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2188), 1, - aux_sym_alter_table_rename_column_token2, - [28111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - sym_identifier, - [28118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, anon_sym_SEMI, - [28125] = 2, + ACTIONS(2190), 1, + anon_sym_COMMA, + STATE(1097), 1, + aux_sym_insert_returning_repeat1, + [39770] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2192), 3, + aux_sym_body_token1, + aux_sym_declarations_token1, + sym__identifier, + [39779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1804), 1, + anon_sym_SEMI, + STATE(1500), 1, + sym_where_filter, + [39792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, ACTIONS(2194), 1, - anon_sym_LPAREN, - [28132] = 2, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [39805] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2194), 1, + anon_sym_RPAREN, + STATE(1094), 1, + aux_sym_create_index_statement_repeat1, + [39818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + sym__identifier, + STATE(854), 1, + sym_identifier, + STATE(1125), 1, + sym_table_column_item, + [39831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1822), 1, + anon_sym_SEMI, + STATE(1262), 1, + sym_where_filter, + [39844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 1, + anon_sym_COMMA, ACTIONS(2196), 1, - aux_sym_insert_items_token2, - [28139] = 2, + anon_sym_SEMI, + STATE(1076), 1, + aux_sym_alter_table_change_repeat1, + [39857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2198), 1, + aux_sym_alter_table_rename_column_token2, + STATE(1075), 1, + aux_sym_grant_privileges_repeat1, + [39870] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2198), 1, + aux_sym_alter_table_rename_column_token2, + ACTIONS(2200), 1, + anon_sym_COMMA, + STATE(1072), 1, + aux_sym_grant_targets_repeat1, + [39883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2202), 1, + anon_sym_SEMI, + STATE(998), 1, + aux_sym_grant_roles_repeat1, + [39896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(195), 1, + sym__identifier, + ACTIONS(2204), 1, + aux_sym_create_type_statement_token3, + STATE(408), 1, sym_identifier, - [28146] = 2, + [39909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2198), 1, + aux_sym_alter_table_rename_column_token2, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + [39922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2182), 1, + anon_sym_COMMA, + ACTIONS(2206), 1, + anon_sym_RPAREN, + STATE(992), 1, + aux_sym_create_type_statement_repeat1, + [39935] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2200), 1, - sym_identifier, - [28153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2202), 1, - aux_sym_insert_conflict_token1, - [28160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2204), 1, - sym_identifier, - [28167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1839), 1, - anon_sym_SEMI, - [28174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1462), 1, - anon_sym_SEMI, - [28181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 1, - anon_sym_LPAREN, - [28188] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(2208), 1, - anon_sym_LPAREN, - [28195] = 2, + aux_sym_alter_table_rename_column_token2, + STATE(964), 1, + aux_sym_grant_targets_repeat1, + [39948] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1105), 1, + sym_grant_function, + STATE(1365), 1, + sym_identifier, + [39961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 1, + sym__identifier, ACTIONS(2210), 1, - anon_sym_SEMI, - [28202] = 2, + aux_sym_create_type_statement_token3, + STATE(408), 1, + sym_identifier, + [39974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2208), 1, + aux_sym_alter_table_rename_column_token2, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + [39987] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2212), 1, - aux_sym_alter_table_rename_column_token2, - [28209] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_SEMI, ACTIONS(2214), 1, - aux_sym_function_return_token1, - [28216] = 2, + anon_sym_COMMA, + STATE(1076), 1, + aux_sym_alter_table_change_repeat1, + [40000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_time_expression_token2, - [28223] = 2, + ACTIONS(2089), 1, + aux_sym_index_using_token1, + ACTIONS(2217), 1, + aux_sym_insert_conflict_token1, + STATE(447), 1, + sym_join_condition, + [40013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_LPAREN, - [28230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - sym_identifier, - [28237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2222), 1, - sym_identifier, - [28244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - aux_sym_function_return_token1, - [28251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1722), 1, - aux_sym_select_statement_token1, - [28258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(826), 1, + ACTIONS(892), 1, + anon_sym_COMMA, + ACTIONS(2219), 1, anon_sym_RPAREN, - [28265] = 2, + STATE(820), 1, + aux_sym_conflict_target_repeat1, + [40026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2226), 1, + ACTIONS(2110), 1, + anon_sym_COMMA, + ACTIONS(2221), 1, + anon_sym_RPAREN, + STATE(1054), 1, + aux_sym_create_type_statement_repeat2, + [40039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 1, + anon_sym_RPAREN, + ACTIONS(2104), 1, + anon_sym_COMMA, + STATE(1050), 1, + aux_sym_create_table_statement_repeat1, + [40052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 1, + anon_sym_RPAREN, + ACTIONS(2104), 1, + anon_sym_COMMA, + STATE(1043), 1, + aux_sym_create_table_statement_repeat1, + [40065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 1, + aux_sym_index_using_token1, + ACTIONS(2223), 1, + anon_sym_LPAREN, + STATE(1302), 1, + sym_index_using, + [40078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2225), 1, + anon_sym_RPAREN, + STATE(1027), 1, + aux_sym_create_index_statement_repeat1, + [40091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 1, + aux_sym_grant_targets_token4, + ACTIONS(2227), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym_grant_privileges_repeat1, + [40104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + sym__identifier, + STATE(836), 1, sym_identifier, - [28272] = 2, + STATE(1022), 1, + sym_var_declaration, + [40117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2228), 1, - aux_sym_create_function_statement_token1, - [28279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1472), 1, - anon_sym_SEMI, - [28286] = 2, + ACTIONS(2083), 1, + sym__identifier, + STATE(828), 1, + sym_identifier, + STATE(1018), 1, + sym_var_declaration, + [40130] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2116), 1, + aux_sym_index_using_token1, ACTIONS(2230), 1, - anon_sym_SEMI, - [28293] = 2, + anon_sym_LPAREN, + STATE(1366), 1, + sym_index_using, + [40143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2083), 1, + sym__identifier, + STATE(854), 1, sym_identifier, - [28300] = 2, + STATE(1142), 1, + sym_table_column_item, + [40156] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + aux_sym_trigger_event_token2, + ACTIONS(2232), 1, + aux_sym_insert_conflict_token1, + STATE(1014), 1, + aux_sym_trigger_event_repeat1, + [40169] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2234), 1, - aux_sym_delete_statement_token3, - [28307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2236), 1, - aux_sym_create_function_statement_token1, - [28314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2238), 1, - aux_sym_trigger_exec_token1, - [28321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 1, - sym_identifier, - [28328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_insert_conflict_token1, - [28335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2242), 1, - sym_identifier, - [28342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2244), 1, + anon_sym_COMMA, + ACTIONS(2237), 1, anon_sym_RPAREN, - [28349] = 2, + STATE(1090), 1, + aux_sym_grant_function_repeat1, + [40182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, - aux_sym_if_not_exists_token2, - [28356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1476), 1, - anon_sym_SEMI, - [28363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_LPAREN, - [28370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2250), 1, - aux_sym_create_table_statement_token3, - [28377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - aux_sym_fk_ref_action_token2, - [28384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2252), 1, - aux_sym_grant_targets_token6, - [28391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2254), 1, - anon_sym_SEMI, - [28398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2256), 1, - anon_sym_EQ, - [28405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2258), 1, - anon_sym_EQ, - [28412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2260), 1, - sym_identifier, - [28419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - aux_sym_insert_statement_token2, - [28426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - aux_sym_insert_conflict_token1, - [28433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_SEMI, - [28440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - sym_identifier, - [28447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2270), 1, - anon_sym_LPAREN, - [28454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1492), 1, - anon_sym_SEMI, - [28461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1928), 1, - anon_sym_SEMI, - [28468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2272), 1, - sym_identifier, - [28475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2274), 1, - aux_sym_alter_column_action_token2, - [28482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2276), 1, - sym_identifier, - [28489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2278), 1, - anon_sym_LPAREN, - [28496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, + ACTIONS(2239), 1, + aux_sym_insert_items_token1, + ACTIONS(2241), 1, aux_sym_alter_column_action_token1, - [28503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, + ACTIONS(2243), 1, aux_sym_alter_column_action_token3, - [28510] = 2, + [40195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 1, - sym_identifier, - [28517] = 2, + ACTIONS(2079), 1, + anon_sym_COMMA, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_insert_items_repeat1, + [40208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2247), 1, + anon_sym_RPAREN, + STATE(1028), 1, + aux_sym_create_index_statement_repeat1, + [40221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(2247), 1, + anon_sym_RPAREN, + STATE(1055), 1, + aux_sym_create_index_statement_repeat1, + [40234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + anon_sym_COMMA, + ACTIONS(1968), 1, + anon_sym_RPAREN, + STATE(1005), 1, + aux_sym_create_index_statement_repeat1, + [40247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1557), 1, + aux_sym_where_filter_token1, + ACTIONS(1737), 1, anon_sym_SEMI, - [28524] = 2, + STATE(1297), 1, + sym_where_filter, + [40260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(2190), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, anon_sym_SEMI, - [28531] = 2, + STATE(1007), 1, + aux_sym_insert_returning_repeat1, + [40273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, - aux_sym_table_constraint_ty_token3, - [28538] = 2, + ACTIONS(1547), 1, + anon_sym_COMMA, + ACTIONS(2251), 1, + anon_sym_RPAREN, + STATE(681), 1, + aux_sym_grant_privileges_repeat1, + [40286] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_DOLLAR, - [28545] = 2, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_create_table_statement_repeat1, + [40299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - aux_sym_insert_conflict_token1, - [28552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2296), 1, - sym_identifier, - [28559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2298), 1, - aux_sym_delete_statement_token2, - [28566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - aux_sym_insert_statement_token2, - [28573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 1, + ACTIONS(2253), 3, anon_sym_SEMI, - [28580] = 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_LPAREN, - [28587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_SEMI, - [28594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - aux_sym_table_constraint_ty_token3, - [28601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - sym_identifier, - [28608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2308), 1, + ACTIONS(2184), 1, + anon_sym_COMMA, + ACTIONS(2255), 1, aux_sym_grant_targets_token4, - [28615] = 2, + STATE(1084), 1, + aux_sym_grant_privileges_repeat1, + [40321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2257), 2, + aux_sym_insert_conflict_token5, + aux_sym_delete_statement_token1, + [40329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1066), 1, sym_identifier, - [28622] = 2, + [40339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, + ACTIONS(2259), 2, anon_sym_SEMI, - [28629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2314), 1, - anon_sym_LPAREN, - [28636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2316), 1, - sym_identifier, - [28643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - anon_sym_SEMI, - [28650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(780), 1, anon_sym_RPAREN, - [28657] = 2, + [40347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - aux_sym_sequence_increment_token2, - [28664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2322), 1, - aux_sym_sequence_increment_token2, - [28671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 1, - aux_sym_insert_conflict_token1, - [28678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_SEMI, - [28685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 1, - anon_sym_RBRACK, - [28692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2330), 1, - aux_sym_if_not_exists_token2, - [28699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(661), 1, - anon_sym_RPAREN, - [28706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2332), 1, - aux_sym_insert_conflict_token3, - [28713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2334), 1, - aux_sym_time_expression_token3, - [28720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - sym_identifier, - [28727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 1, - anon_sym_RPAREN, - [28734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2340), 1, - aux_sym_delete_statement_token3, - [28741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2342), 1, - anon_sym_LPAREN, - [28748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2060), 1, - aux_sym_join_item_token3, - [28755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 1, - aux_sym_insert_conflict_token1, - [28762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - sym_number, - [28769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2348), 1, - aux_sym_function_return_token1, - [28776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2158), 1, - aux_sym_alter_column_action_token2, - [28783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2350), 1, - anon_sym_DOLLAR, - [28790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(806), 1, - anon_sym_RPAREN, - [28797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2352), 1, - anon_sym_SEMI, - [28804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2354), 1, - anon_sym_SEMI, - [28811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(300), 1, - anon_sym_LPAREN, - [28818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2356), 1, - aux_sym_if_not_exists_token2, - [28825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(677), 1, - anon_sym_RPAREN, - [28832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2358), 1, - sym_identifier, - [28839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2360), 1, - aux_sym_time_expression_token3, - [28846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1393), 1, - anon_sym_SEMI, - [28853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_SEMI, - [28860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - aux_sym_delete_statement_token3, - [28867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_SEMI, - [28874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2368), 1, - aux_sym_function_return_token1, - [28881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 1, - anon_sym_RPAREN, - [28888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 1, - aux_sym_grant_targets_token6, - [28895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2372), 1, - aux_sym_insert_conflict_token3, - [28902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 1, - anon_sym_LPAREN, - [28909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(683), 1, - anon_sym_RPAREN, - [28916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - aux_sym_or_replace_token1, - [28923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - aux_sym_time_expression_token3, - [28930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 1, - sym_identifier, - [28937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1430), 1, - anon_sym_SEMI, - [28944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(816), 1, - anon_sym_RPAREN, - [28951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2380), 1, - sym_identifier, - [28958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2382), 1, - sym_identifier, - [28965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2384), 1, - aux_sym_insert_conflict_token1, - [28972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(687), 1, - anon_sym_RPAREN, - [28979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 1, - anon_sym_SEMI, - [28986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2388), 1, - aux_sym_time_expression_token3, - [28993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2390), 1, - anon_sym_SEMI, - [29000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2392), 1, - anon_sym_RPAREN, - [29007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(820), 1, - anon_sym_RPAREN, - [29014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 1, - aux_sym_insert_conflict_token6, - [29021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - aux_sym_insert_conflict_token3, - [29028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2398), 1, - aux_sym_create_index_statement_token2, - [29035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - anon_sym_RPAREN, - [29042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - aux_sym_join_item_token3, - [29049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - aux_sym_time_expression_token3, - [29056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 1, - sym_number, - [29063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - sym_number, - [29070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(693), 1, - anon_sym_RPAREN, - [29077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1829), 1, - aux_sym_create_table_statement_token3, - [29084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2408), 1, - anon_sym_SEMI, - [29091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 1, - aux_sym_create_trigger_statement_token1, - [29098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(697), 1, - anon_sym_RPAREN, - [29105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2412), 1, - sym_identifier, - [29112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 1, - sym_identifier, - [29119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2416), 1, - anon_sym_SEMI, - [29126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(699), 1, - anon_sym_RPAREN, - [29133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 1, + ACTIONS(1977), 2, + anon_sym_COMMA, aux_sym_alter_table_rename_column_token2, - [29140] = 2, + [40355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, + ACTIONS(1561), 2, anon_sym_SEMI, - [29147] = 2, + anon_sym_RPAREN, + [40363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(1780), 1, + sym__identifier, + STATE(1139), 1, sym_identifier, - [29154] = 2, + [40373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - aux_sym_alter_column_action_token1, - [29161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2426), 1, - aux_sym_time_expression_token2, - [29168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, + ACTIONS(1648), 2, anon_sym_SEMI, - [29175] = 2, + anon_sym_RPAREN, + [40381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 1, - aux_sym_join_item_token3, - [29182] = 2, + ACTIONS(968), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, + ACTIONS(2261), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 2, + aux_sym_insert_items_token1, + aux_sym_alter_column_action_token2, + [40405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1458), 1, sym_identifier, - [29189] = 2, + [40415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1805), 1, - anon_sym_LPAREN, - [29196] = 2, + ACTIONS(1780), 1, + sym__identifier, + STATE(929), 1, + sym_identifier, + [40425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 1, - sym_number, - [29203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2436), 1, + ACTIONS(585), 1, anon_sym_SEMI, - [29210] = 2, + ACTIONS(2265), 1, + anon_sym_COMMA, + [40435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2267), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [40443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [40451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [40459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [40467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2271), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1652), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [40483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1009), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(638), 1, + sym_identifier, + [40501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 2, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + [40509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1467), 1, + sym_identifier, + [40519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1834), 1, + sym__identifier, + STATE(727), 1, + sym_identifier, + [40537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2241), 1, aux_sym_alter_column_action_token1, - [29217] = 2, + ACTIONS(2275), 1, + aux_sym_insert_items_token1, + [40547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - aux_sym_time_expression_token2, - [29224] = 2, + ACTIONS(2277), 1, + sym__identifier, + STATE(605), 1, + sym_identifier, + [40557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 1, - anon_sym_LPAREN, - [29231] = 2, + ACTIONS(2279), 2, + aux_sym_constraint_when_token3, + aux_sym_constraint_when_token4, + [40565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - aux_sym_join_item_token3, - [29238] = 2, + ACTIONS(2281), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [40573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - ts_builtin_sym_end, - [29245] = 2, + ACTIONS(1780), 1, + sym__identifier, + STATE(861), 1, + sym_identifier, + [40583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, + ACTIONS(2001), 1, + aux_sym_insert_conflict_token1, + ACTIONS(2283), 1, + anon_sym_privileges, + [40593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1475), 1, + sym_identifier, + [40603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(674), 1, + anon_sym_STAR, + STATE(77), 1, + sym_star, + [40613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2023), 2, anon_sym_SEMI, - [29252] = 2, + anon_sym_COMMA, + [40621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 1, + ACTIONS(2285), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1231), 1, + sym_identifier, + [40639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_SEMI, + ACTIONS(2291), 1, + aux_sym_create_type_statement_token3, + [40657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1031), 1, + sym_identifier, + [40667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [40675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1792), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2180), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(914), 1, + sym_identifier, + [40701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2293), 1, + aux_sym_insert_conflict_token4, + ACTIONS(2295), 1, + aux_sym_insert_conflict_token5, + [40711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, anon_sym_LPAREN, - [29259] = 2, + STATE(1242), 1, + sym__list_of_identifiers, + [40721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, - aux_sym_time_expression_token2, - [29266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, + ACTIONS(952), 1, anon_sym_LPAREN, - [29273] = 2, + STATE(925), 1, + sym__list_of_identifiers, + [40731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, - aux_sym_time_expression_token2, - [29280] = 2, + ACTIONS(2297), 2, + aux_sym_insert_conflict_token1, + sym__identifier, + [40739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 1, - aux_sym_create_table_statement_token3, - [29287] = 2, + ACTIONS(2043), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - aux_sym_time_expression_token2, - [29294] = 2, + ACTIONS(952), 1, + anon_sym_LPAREN, + STATE(1172), 1, + sym__list_of_identifiers, + [40757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - aux_sym_delete_statement_token2, - [29301] = 2, + ACTIONS(2048), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, - aux_sym_delete_statement_token3, - [29308] = 2, + ACTIONS(1780), 1, + sym__identifier, + STATE(1320), 1, + sym_identifier, + [40775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + STATE(1321), 1, + sym_trigger_exec, + [40785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(420), 1, + sym_identifier, + [40795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_SQUOTE, + STATE(1056), 1, + sym_string, + [40805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1314), 1, + sym_identifier, + [40815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1024), 1, + sym_identifier, + [40825] = 3, + ACTIONS(25), 1, + aux_sym_psql_statement_token1, + ACTIONS(27), 1, + sym__identifier, + ACTIONS(1869), 1, + sym_comment, + [40835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2299), 1, + anon_sym_COMMA, + ACTIONS(2301), 1, + anon_sym_RPAREN, + [40845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1463), 1, + sym_identifier, + [40855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(483), 1, + sym_identifier, + [40865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2303), 2, + anon_sym_LPAREN, + sym__identifier, + [40873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2212), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [40881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2305), 2, + anon_sym_SEMI, + aux_sym_for_statement_token2, + [40889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2307), 1, + anon_sym_LPAREN, + STATE(1299), 1, + sym_function_parameters, + [40899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1605), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [40907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1788), 1, + anon_sym_DOLLAR, + STATE(1236), 1, + sym_dollar_quote, + [40925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + sym__identifier, + STATE(1254), 1, + sym_identifier, + [40935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 1, + sym__identifier, + STATE(538), 1, + sym_identifier, + [40945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1020), 1, + sym_identifier, + [40955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 2, + anon_sym_SEMI, + aux_sym_where_filter_token1, + [40963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2297), 2, + aux_sym_schema_role_token1, + sym__identifier, + [40971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(707), 1, + sym_identifier, + [40981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(143), 1, + anon_sym_STAR, + STATE(151), 1, + sym_star, + [40991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1397), 1, + sym_identifier, + [41001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1411), 1, + sym_identifier, + [41011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1414), 1, + sym_identifier, + [41021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(657), 1, + sym_identifier, + [41031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(822), 1, + sym_identifier, + [41041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2313), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [41049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(538), 1, + sym_identifier, + [41059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1666), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [41067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2315), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 2, + aux_sym_insert_conflict_token1, + aux_sym_trigger_event_token2, + [41083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(810), 1, + sym_identifier, + [41093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1377), 1, + sym_identifier, + [41103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [41111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 1, + sym__identifier, + STATE(420), 1, + sym_identifier, + [41121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2319), 2, + anon_sym_LPAREN, + sym__identifier, + [41129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1495), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 1, + sym__identifier, + STATE(558), 1, + sym_identifier, + [41147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2321), 2, + aux_sym_update_set_token1, + aux_sym_trigger_scope_token3, + [41155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + STATE(423), 1, + sym__list_of_identifiers, + [41165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2323), 1, + anon_sym_SEMI, + ACTIONS(2325), 1, + anon_sym_DOLLAR, + [41175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 1, aux_sym_function_return_token1, + STATE(1301), 1, + sym_function_return, + [41185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_SQUOTE, + STATE(1114), 1, + sym_string, + [41203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2329), 1, + anon_sym_SEMI, + ACTIONS(2331), 1, + anon_sym_COMMA, + [41213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2065), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_SQUOTE, + STATE(1149), 1, + sym_string, + [41231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1603), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(209), 1, + anon_sym_STAR, + STATE(171), 1, + sym_star, + [41249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2333), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(658), 1, + sym_identifier, + [41267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1618), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2277), 1, + sym__identifier, + STATE(602), 1, + sym_identifier, + [41285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1477), 1, + sym_identifier, + [41295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, + aux_sym_create_type_statement_token4, + ACTIONS(2337), 1, + anon_sym_LPAREN, + [41305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_LPAREN, + ACTIONS(2341), 1, + aux_sym_update_set_token1, + [41315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1834), 1, + sym__identifier, + STATE(729), 1, + sym_identifier, + [41325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 1, + anon_sym_STAR, + STATE(470), 1, + sym_star, + [41335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + STATE(1473), 1, + sym_trigger_exec, + [41345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1278), 1, + sym_identifier, + [41355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1047), 1, + sym_identifier, + [41373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1452), 1, + sym_identifier, + [41383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2343), 2, + aux_sym_index_col_nulls_token2, + aux_sym_index_col_nulls_token3, + [41391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(565), 1, + sym_identifier, + [41401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1087), 1, + sym_identifier, + [41411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, + aux_sym_sequence_increment_token2, + ACTIONS(2347), 1, + sym_number, + [41421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2349), 1, + aux_sym_sequence_start_token2, + ACTIONS(2351), 1, + sym_number, + [41431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1445), 1, + sym_identifier, + [41441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 1, + aux_sym_function_return_token1, + STATE(1255), 1, + sym_function_return, + [41459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(504), 1, + sym_identifier, + [41469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(1082), 1, + sym_identifier, + [41479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(517), 1, + sym_identifier, + [41489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1595), 1, + aux_sym_trigger_exec_token1, + STATE(1400), 1, + sym_trigger_exec, + [41499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 1, + sym__identifier, + STATE(1057), 1, + sym_identifier, + [41509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2353), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [41517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1698), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_SEMI, + ACTIONS(2359), 1, + anon_sym_DOLLAR, + [41543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + anon_sym_SEMI, + ACTIONS(2363), 1, + anon_sym_COLON_EQ, + [41553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2365), 2, + anon_sym_SEMI, + aux_sym_create_function_statement_token1, + [41561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_LPAREN, + STATE(898), 1, + sym__list_of_identifiers, + [41571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(874), 1, + sym_identifier, + [41581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1788), 1, + anon_sym_DOLLAR, + STATE(1123), 1, + sym_dollar_quote, + [41591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(281), 1, + anon_sym_STAR, + STATE(183), 1, + sym_star, + [41609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1266), 1, + aux_sym_constraint_foreign_key_token1, + STATE(902), 1, + sym_constraint_foreign_key, + [41619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(403), 1, + anon_sym_STAR, + STATE(15), 1, + sym_star, + [41637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(563), 1, + anon_sym_STAR, + STATE(391), 1, + sym_star, + [41647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2367), 2, + anon_sym_COMMA, + aux_sym_alter_table_rename_column_token2, + [41655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 2, + anon_sym_SEMI, + anon_sym_COMMA, + [41671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + aux_sym_join_item_token3, + ACTIONS(2373), 1, + aux_sym_join_type_token3, + [41681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 2, + anon_sym_LPAREN, + sym__identifier, + [41689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2377), 2, + aux_sym_trigger_exec_token1, + aux_sym_trigger_cond_token1, + [41697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [41705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1780), 1, + sym__identifier, + STATE(704), 1, + sym_identifier, + [41715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 2, + anon_sym_COMMA, + aux_sym_grant_targets_token4, + [41723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 1, + aux_sym_create_type_statement_token3, + [41730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_insert_conflict_token3, + [41737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(930), 1, + anon_sym_RPAREN, + [41744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_RPAREN, + [41751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 1, + anon_sym_LPAREN, + [41758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 1, + aux_sym_with_query_item_token1, + [41765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2389), 1, + anon_sym_DOLLAR, + [41772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1747), 1, + anon_sym_SEMI, + [41779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + aux_sym_for_statement_token2, + [41786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 1, + aux_sym_alter_table_rename_column_token2, + [41793] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 1, + aux_sym_time_expression_token3, + [41800] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + aux_sym_join_item_token3, + [41807] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2397), 1, + aux_sym_function_return_token1, + [41814] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 1, + anon_sym_SEMI, + [41821] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 1, + aux_sym_alter_column_action_token2, + [41828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, + anon_sym_SEMI, + [41835] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2403), 1, + anon_sym_RPAREN, + [41842] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2405), 1, + aux_sym_table_constraint_ty_token3, + [41849] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2407), 1, + anon_sym_LPAREN, + [41856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2409), 1, + aux_sym_create_schema_statement_token1, + [41863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2411), 1, + sym__identifier, + [41870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, + aux_sym_if_statement_token1, + [41877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2415), 1, + anon_sym_LPAREN, + [41884] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + anon_sym_LPAREN, + [41891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2419), 1, + anon_sym_LPAREN, + [41898] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 1, + sym__identifier, + [41905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2423), 1, + anon_sym_SEMI, + [41912] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 1, + anon_sym_SEMI, + [41919] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2427), 1, + anon_sym_LPAREN, + [41926] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2429), 1, + anon_sym_EQ, + [41933] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_SEMI, + [41940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2399), 1, + aux_sym_table_constraint_ty_token3, + [41947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2433), 1, + aux_sym_table_constraint_ty_token3, + [41954] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 1, + anon_sym_SEMI, + [41961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2437), 1, + anon_sym_SEMI, + [41968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2439), 1, + aux_sym_if_statement_token1, + [41975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2441), 1, + anon_sym_LPAREN, + [41982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2443), 1, + aux_sym_insert_items_token2, + [41989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2445), 1, + anon_sym_SEMI, + [41996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2447), 1, + anon_sym_SEMI, + [42003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2449), 1, + aux_sym_for_statement_token2, + [42010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2451), 1, + anon_sym_DOLLAR, + [42017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1778), 1, + anon_sym_SEMI, + [42024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2453), 1, + aux_sym_insert_conflict_token1, + [42031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2455), 1, + aux_sym_function_return_token1, + [42038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + aux_sym_insert_conflict_token6, + [42045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2459), 1, + aux_sym_create_type_statement_token3, + [42052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 1, + anon_sym_LPAREN, + [42059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, + aux_sym_sequence_increment_token2, + [42066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2463), 1, + sym_number, + [42073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2465), 1, + aux_sym_create_type_statement_token3, + [42080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2120), 1, + sym_number, + [42087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + sym_number, + [42094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_LPAREN, + [42101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2467), 1, + sym_number, + [42108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + sym_number, + [42115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2471), 1, + anon_sym_SEMI, + [42122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2473), 1, + aux_sym_insert_conflict_token1, + [42129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2475), 1, + anon_sym_RPAREN, + [42136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2477), 1, + aux_sym_insert_conflict_token3, + [42143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2479), 1, + anon_sym_LPAREN, + [42150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2481), 1, + aux_sym_create_type_statement_token3, + [42157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 1, + anon_sym_SEMI, + [42164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2483), 1, + anon_sym_SEMI, + [42171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 1, + aux_sym_if_not_exists_token1, + [42178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 1, + anon_sym_LPAREN, + [42185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2489), 1, + anon_sym_SEMI, + [42192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2491), 1, + aux_sym_function_return_token1, + [42199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + aux_sym_insert_conflict_token1, + [42206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2495), 1, + aux_sym_trigger_exec_token1, + [42213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 1, + anon_sym_SEMI, + [42220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + aux_sym_time_expression_token2, + [42227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2501), 1, + aux_sym_insert_conflict_token2, + [42234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, + aux_sym_for_statement_token2, + [42241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(435), 1, + anon_sym_LPAREN, + [42248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + anon_sym_SEMI, + [42255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, + aux_sym_function_return_token1, + [42262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2325), 1, + anon_sym_DOLLAR, + [42269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + sym__identifier, + [42276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_SEMI, + [42283] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2511), 1, + aux_sym_dollar_quote_string_token1, + [42290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + aux_sym_select_statement_token1, + [42297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 1, + anon_sym_RPAREN, + [42304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + anon_sym_RPAREN, + [42311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, + aux_sym_function_return_token1, + [42318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + aux_sym_function_return_token1, + [42325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_SEMI, + [42332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2517), 1, + anon_sym_SEMI, + [42339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 1, + aux_sym_if_not_exists_token1, + [42346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2521), 1, + anon_sym_SEMI, + [42353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2523), 1, + anon_sym_SEMI, + [42360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2525), 1, + anon_sym_RPAREN, + [42367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 1, + aux_sym_create_type_statement_token3, + [42374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 1, + anon_sym_SEMI, + [42381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 1, + anon_sym_RPAREN, + [42388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(938), 1, + anon_sym_RPAREN, + [42395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + aux_sym_insert_conflict_token1, + [42402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 1, + aux_sym_time_expression_token3, + [42409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2535), 1, + anon_sym_SEMI, + [42416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + aux_sym_if_not_exists_token1, + [42423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2539), 1, + anon_sym_SEMI, + [42430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + aux_sym_select_statement_token1, + [42437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2543), 1, + aux_sym_alter_table_rename_column_token2, + [42444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2545), 1, + anon_sym_SEMI, + [42451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 1, + aux_sym_create_function_statement_token1, + [42458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2549), 1, + anon_sym_DOLLAR, + [42465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2551), 1, + aux_sym_grant_targets_token4, + [42472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2553), 1, + anon_sym_SEMI, + [42479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, + aux_sym_conflict_target_token1, + [42486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2557), 1, + anon_sym_DOLLAR, + [42493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 1, + anon_sym_LPAREN, + [42500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 1, + anon_sym_LPAREN, + [42507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1061), 1, + anon_sym_RPAREN, + [42514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2563), 1, + aux_sym_insert_conflict_token4, + [42521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2565), 1, + aux_sym_insert_conflict_token3, + [42528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 1, + aux_sym_create_table_statement_token2, + [42535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2569), 1, + aux_sym_if_not_exists_token1, + [42542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 1, + aux_sym_create_schema_statement_token1, + [42549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(924), 1, + anon_sym_RPAREN, + [42556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2573), 1, + aux_sym_grant_targets_token6, + [42563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2575), 1, + aux_sym_time_expression_token3, + [42570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + aux_sym_for_statement_token2, + [42577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_SEMI, + [42584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2581), 1, + anon_sym_SEMI, + [42591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_DOLLAR, + [42598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + aux_sym_insert_statement_token2, + [42605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2587), 1, + aux_sym_for_statement_token2, + [42612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2589), 1, + anon_sym_RPAREN, + [42619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 1, + anon_sym_RPAREN, + [42626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2591), 1, + anon_sym_LPAREN, + [42633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 1, + aux_sym_join_item_token3, + [42640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_insert_conflict_token1, + [42647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 1, + anon_sym_DOLLAR, + [42654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(928), 1, + anon_sym_RPAREN, + [42661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2599), 1, + aux_sym_insert_conflict_token3, + [42668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 1, + aux_sym_time_expression_token3, + [42675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + anon_sym_SEMI, + [42682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 1, + aux_sym_join_item_token3, + [42689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2607), 1, + anon_sym_SEMI, + [42696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 1, + anon_sym_DOLLAR, + [42703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2611), 1, + aux_sym_for_statement_token2, + [42710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_SEMI, + [42717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, + anon_sym_SEMI, + [42724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_RPAREN, + [42731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_SEMI, + [42738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_SEMI, + [42745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_SEMI, + [42752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(936), 1, + anon_sym_RPAREN, + [42759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 1, + anon_sym_LPAREN, + [42766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2623), 1, + aux_sym_time_expression_token3, + [42773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 1, + aux_sym_insert_conflict_token1, + [42780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_SEMI, + [42787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + anon_sym_DOLLAR, + [42794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, + anon_sym_SEMI, + [42801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 1, + anon_sym_RPAREN, + [42808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 1, + aux_sym_alter_column_action_token1, + [42815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2635), 1, + aux_sym_alter_table_rename_column_token2, + [42822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_SEMI, + [42829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(954), 1, + anon_sym_RPAREN, + [42836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 1, + aux_sym_alter_table_rename_column_token2, + [42843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + aux_sym_time_expression_token3, + [42850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + aux_sym_for_statement_token2, + [42857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_DOLLAR, + [42864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 1, + anon_sym_LPAREN, + [42871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1057), 1, + anon_sym_RPAREN, + [42878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_EQ, + [42885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 1, + anon_sym_SEMI, + [42892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 1, + aux_sym_delete_statement_token2, + [42899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(956), 1, + anon_sym_RPAREN, + [42906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2651), 1, + aux_sym_insert_statement_token2, + [42913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + aux_sym_time_expression_token3, + [42920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2655), 1, + aux_sym_for_statement_token2, + [42927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 1, + anon_sym_DOLLAR, + [42934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_SEMI, + [42941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(948), 1, + anon_sym_RPAREN, + [42948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2661), 1, + aux_sym_insert_conflict_token1, + [42955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2663), 1, + aux_sym_time_expression_token3, + [42962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 1, + anon_sym_SEMI, + [42969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2667), 1, + sym__identifier, + [42976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(934), 1, + anon_sym_RPAREN, + [42983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + aux_sym_sequence_increment_token2, + [42990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 1, + anon_sym_SEMI, + [42997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2673), 1, + aux_sym_sequence_increment_token2, + [43004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_RPAREN, + [43011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + aux_sym_alter_column_action_token2, + [43018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2677), 1, + aux_sym_for_statement_token2, + [43025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + aux_sym_create_type_statement_token3, + [43032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(932), 1, + anon_sym_RPAREN, + [43039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2681), 1, + anon_sym_EQ, + [43046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 1, + aux_sym_create_type_statement_token2, + [43053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2685), 1, + anon_sym_LPAREN, + [43060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(946), 1, + anon_sym_RPAREN, + [43067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2005), 1, + anon_sym_SEMI, + [43074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_SEMI, + [43081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 1, + aux_sym_insert_conflict_token1, + [43088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 1, + aux_sym_alter_column_action_token1, + [43095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, + aux_sym_for_statement_token2, + [43102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + aux_sym_create_type_statement_token3, + [43109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2697), 1, + aux_sym_time_expression_token2, + [43116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 1, + anon_sym_SEMI, + [43123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + aux_sym_join_item_token3, + [43130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 1, + aux_sym_create_function_statement_token1, + [43137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2705), 1, + aux_sym_function_return_token1, + [43144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + aux_sym_alter_table_rename_column_token2, + [43151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, + sym__identifier, + [43158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_SEMI, + [43165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 1, + anon_sym_LPAREN, + [43172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2713), 1, + aux_sym_if_statement_token1, + [43179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 1, + anon_sym_SEMI, + [43186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + aux_sym_alter_column_action_token1, + [43193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + aux_sym_grant_targets_token6, + [43200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + aux_sym_time_expression_token2, + [43207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 1, + anon_sym_SEMI, + [43214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + aux_sym_join_item_token3, + [43221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_LPAREN, + [43228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2729), 1, + aux_sym_or_replace_token1, + [43235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 1, + sym__identifier, + [43242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2733), 1, + aux_sym_select_statement_token1, + [43249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, + anon_sym_SEMI, + [43256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 1, + aux_sym_time_expression_token2, + [43263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2739), 1, + anon_sym_SEMI, + [43270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + aux_sym_join_item_token3, + [43277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 1, + anon_sym_LPAREN, + [43284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2745), 1, + anon_sym_DOLLAR, + [43291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + sym__identifier, + [43298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2749), 1, + aux_sym_create_index_statement_token2, + [43305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2263), 1, + aux_sym_fk_ref_action_token2, + [43312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + aux_sym_time_expression_token2, + [43319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + sym_number, + [43326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + aux_sym_join_item_token3, + [43333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2757), 1, + aux_sym_if_statement_token1, + [43340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + aux_sym_create_table_statement_token2, + [43347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 1, + sym__identifier, + [43354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 1, + aux_sym_create_trigger_statement_token1, + [43361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2763), 1, + sym_number, + [43368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2765), 1, + aux_sym_time_expression_token2, + [43375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 1, + sym__identifier, + [43382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 1, + anon_sym_RBRACK, + [43389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 1, + aux_sym_time_expression_token2, + [43396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2773), 1, + sym__identifier, + [43403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2775), 1, + aux_sym_time_expression_token2, + [43410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + anon_sym_SEMI, + [43417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2779), 1, + anon_sym_DOLLAR, + [43424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + ts_builtin_sym_end, + [43431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_SEMI, + [43438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1737), 1, + anon_sym_SEMI, + [43445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2783), 1, + anon_sym_SEMI, + [43452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + [43459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 1, + aux_sym_create_table_statement_token2, + [43466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2789), 1, + aux_sym_delete_statement_token2, + [43473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2791), 1, + anon_sym_DOLLAR, + [43480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2793), 1, + anon_sym_SEMI, + [43487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2795), 1, + anon_sym_DOLLAR, + [43494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 1, + anon_sym_DOLLAR, + [43501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_DOLLAR, + [43508] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2801), 1, + aux_sym_dollar_quote_string_token1, + [43515] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2803), 1, + aux_sym_dollar_quote_string_token1, + [43522] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2805), 1, + aux_sym_dollar_quote_string_token1, + [43529] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2807), 1, + aux_sym_dollar_quote_string_token1, + [43536] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2809), 1, + aux_sym_dollar_quote_string_token1, + [43543] = 2, + ACTIONS(1869), 1, + sym_comment, + ACTIONS(2811), 1, + aux_sym_dollar_quote_string_token1, + [43550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_DOLLAR, + [43557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + [43564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2817), 1, + anon_sym_DOLLAR, + [43571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2819), 1, + anon_sym_DOLLAR, + [43578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2821), 1, + anon_sym_DOLLAR, + [43585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2823), 1, + anon_sym_DOLLAR, + [43592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + sym__identifier, + [43599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2827), 1, + sym__identifier, + [43606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2829), 1, + sym__identifier, + [43613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 1, + sym__identifier, + [43620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + sym__identifier, + [43627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2835), 1, + sym__identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 62, - [SMALL_STATE(4)] = 142, - [SMALL_STATE(5)] = 216, - [SMALL_STATE(6)] = 272, - [SMALL_STATE(7)] = 348, - [SMALL_STATE(8)] = 412, - [SMALL_STATE(9)] = 468, - [SMALL_STATE(10)] = 544, - [SMALL_STATE(11)] = 608, - [SMALL_STATE(12)] = 676, - [SMALL_STATE(13)] = 748, - [SMALL_STATE(14)] = 806, - [SMALL_STATE(15)] = 918, - [SMALL_STATE(16)] = 970, - [SMALL_STATE(17)] = 1022, - [SMALL_STATE(18)] = 1074, - [SMALL_STATE(19)] = 1126, - [SMALL_STATE(20)] = 1238, - [SMALL_STATE(21)] = 1290, - [SMALL_STATE(22)] = 1342, - [SMALL_STATE(23)] = 1394, - [SMALL_STATE(24)] = 1446, - [SMALL_STATE(25)] = 1556, - [SMALL_STATE(26)] = 1666, - [SMALL_STATE(27)] = 1735, - [SMALL_STATE(28)] = 1790, - [SMALL_STATE(29)] = 1861, - [SMALL_STATE(30)] = 1924, - [SMALL_STATE(31)] = 1995, - [SMALL_STATE(32)] = 2060, - [SMALL_STATE(33)] = 2113, - [SMALL_STATE(34)] = 2172, - [SMALL_STATE(35)] = 2227, - [SMALL_STATE(36)] = 2296, - [SMALL_STATE(37)] = 2345, - [SMALL_STATE(38)] = 2400, - [SMALL_STATE(39)] = 2473, - [SMALL_STATE(40)] = 2524, - [SMALL_STATE(41)] = 2567, - [SMALL_STATE(42)] = 2632, - [SMALL_STATE(43)] = 2675, - [SMALL_STATE(44)] = 2734, - [SMALL_STATE(45)] = 2795, - [SMALL_STATE(46)] = 2844, - [SMALL_STATE(47)] = 2887, - [SMALL_STATE(48)] = 2952, - [SMALL_STATE(49)] = 2995, - [SMALL_STATE(50)] = 3068, - [SMALL_STATE(51)] = 3111, - [SMALL_STATE(52)] = 3180, - [SMALL_STATE(53)] = 3253, - [SMALL_STATE(54)] = 3296, - [SMALL_STATE(55)] = 3347, - [SMALL_STATE(56)] = 3390, - [SMALL_STATE(57)] = 3433, - [SMALL_STATE(58)] = 3476, - [SMALL_STATE(59)] = 3549, - [SMALL_STATE(60)] = 3592, - [SMALL_STATE(61)] = 3659, - [SMALL_STATE(62)] = 3718, - [SMALL_STATE(63)] = 3775, - [SMALL_STATE(64)] = 3838, - [SMALL_STATE(65)] = 3887, - [SMALL_STATE(66)] = 3950, - [SMALL_STATE(67)] = 4021, - [SMALL_STATE(68)] = 4070, - [SMALL_STATE(69)] = 4123, - [SMALL_STATE(70)] = 4170, - [SMALL_STATE(71)] = 4215, - [SMALL_STATE(72)] = 4280, - [SMALL_STATE(73)] = 4318, - [SMALL_STATE(74)] = 4356, - [SMALL_STATE(75)] = 4420, - [SMALL_STATE(76)] = 4458, - [SMALL_STATE(77)] = 4497, - [SMALL_STATE(78)] = 4536, - [SMALL_STATE(79)] = 4575, - [SMALL_STATE(80)] = 4614, - [SMALL_STATE(81)] = 4653, - [SMALL_STATE(82)] = 4696, - [SMALL_STATE(83)] = 4763, - [SMALL_STATE(84)] = 4830, - [SMALL_STATE(85)] = 4869, - [SMALL_STATE(86)] = 4908, - [SMALL_STATE(87)] = 4947, - [SMALL_STATE(88)] = 4986, - [SMALL_STATE(89)] = 5025, - [SMALL_STATE(90)] = 5087, - [SMALL_STATE(91)] = 5149, - [SMALL_STATE(92)] = 5186, - [SMALL_STATE(93)] = 5223, - [SMALL_STATE(94)] = 5260, - [SMALL_STATE(95)] = 5297, - [SMALL_STATE(96)] = 5334, - [SMALL_STATE(97)] = 5371, - [SMALL_STATE(98)] = 5408, - [SMALL_STATE(99)] = 5445, - [SMALL_STATE(100)] = 5482, - [SMALL_STATE(101)] = 5519, - [SMALL_STATE(102)] = 5589, - [SMALL_STATE(103)] = 5659, - [SMALL_STATE(104)] = 5729, - [SMALL_STATE(105)] = 5799, - [SMALL_STATE(106)] = 5859, - [SMALL_STATE(107)] = 5929, - [SMALL_STATE(108)] = 5999, - [SMALL_STATE(109)] = 6069, - [SMALL_STATE(110)] = 6139, - [SMALL_STATE(111)] = 6209, - [SMALL_STATE(112)] = 6276, - [SMALL_STATE(113)] = 6343, - [SMALL_STATE(114)] = 6410, - [SMALL_STATE(115)] = 6477, - [SMALL_STATE(116)] = 6544, - [SMALL_STATE(117)] = 6611, - [SMALL_STATE(118)] = 6671, - [SMALL_STATE(119)] = 6727, - [SMALL_STATE(120)] = 6785, - [SMALL_STATE(121)] = 6827, - [SMALL_STATE(122)] = 6869, - [SMALL_STATE(123)] = 6933, - [SMALL_STATE(124)] = 6979, - [SMALL_STATE(125)] = 7019, - [SMALL_STATE(126)] = 7083, - [SMALL_STATE(127)] = 7141, - [SMALL_STATE(128)] = 7193, - [SMALL_STATE(129)] = 7251, - [SMALL_STATE(130)] = 7301, - [SMALL_STATE(131)] = 7357, - [SMALL_STATE(132)] = 7414, - [SMALL_STATE(133)] = 7475, - [SMALL_STATE(134)] = 7536, - [SMALL_STATE(135)] = 7597, - [SMALL_STATE(136)] = 7658, - [SMALL_STATE(137)] = 7719, - [SMALL_STATE(138)] = 7780, - [SMALL_STATE(139)] = 7838, - [SMALL_STATE(140)] = 7878, - [SMALL_STATE(141)] = 7940, - [SMALL_STATE(142)] = 7998, - [SMALL_STATE(143)] = 8056, - [SMALL_STATE(144)] = 8114, - [SMALL_STATE(145)] = 8172, - [SMALL_STATE(146)] = 8230, - [SMALL_STATE(147)] = 8288, - [SMALL_STATE(148)] = 8346, - [SMALL_STATE(149)] = 8404, - [SMALL_STATE(150)] = 8460, - [SMALL_STATE(151)] = 8518, - [SMALL_STATE(152)] = 8578, - [SMALL_STATE(153)] = 8636, - [SMALL_STATE(154)] = 8694, - [SMALL_STATE(155)] = 8752, - [SMALL_STATE(156)] = 8796, - [SMALL_STATE(157)] = 8834, - [SMALL_STATE(158)] = 8892, - [SMALL_STATE(159)] = 8942, - [SMALL_STATE(160)] = 8990, - [SMALL_STATE(161)] = 9044, - [SMALL_STATE(162)] = 9102, - [SMALL_STATE(163)] = 9160, - [SMALL_STATE(164)] = 9218, - [SMALL_STATE(165)] = 9276, - [SMALL_STATE(166)] = 9316, - [SMALL_STATE(167)] = 9370, - [SMALL_STATE(168)] = 9406, - [SMALL_STATE(169)] = 9461, - [SMALL_STATE(170)] = 9516, - [SMALL_STATE(171)] = 9571, - [SMALL_STATE(172)] = 9626, - [SMALL_STATE(173)] = 9681, - [SMALL_STATE(174)] = 9736, - [SMALL_STATE(175)] = 9791, - [SMALL_STATE(176)] = 9846, - [SMALL_STATE(177)] = 9901, - [SMALL_STATE(178)] = 9956, - [SMALL_STATE(179)] = 10011, - [SMALL_STATE(180)] = 10066, - [SMALL_STATE(181)] = 10121, - [SMALL_STATE(182)] = 10176, - [SMALL_STATE(183)] = 10231, - [SMALL_STATE(184)] = 10286, - [SMALL_STATE(185)] = 10341, - [SMALL_STATE(186)] = 10396, - [SMALL_STATE(187)] = 10451, - [SMALL_STATE(188)] = 10506, - [SMALL_STATE(189)] = 10561, - [SMALL_STATE(190)] = 10616, - [SMALL_STATE(191)] = 10671, - [SMALL_STATE(192)] = 10726, - [SMALL_STATE(193)] = 10781, - [SMALL_STATE(194)] = 10836, - [SMALL_STATE(195)] = 10891, - [SMALL_STATE(196)] = 10946, - [SMALL_STATE(197)] = 11001, - [SMALL_STATE(198)] = 11056, - [SMALL_STATE(199)] = 11111, - [SMALL_STATE(200)] = 11166, - [SMALL_STATE(201)] = 11221, - [SMALL_STATE(202)] = 11276, - [SMALL_STATE(203)] = 11335, - [SMALL_STATE(204)] = 11394, - [SMALL_STATE(205)] = 11449, - [SMALL_STATE(206)] = 11504, - [SMALL_STATE(207)] = 11559, - [SMALL_STATE(208)] = 11614, - [SMALL_STATE(209)] = 11669, - [SMALL_STATE(210)] = 11724, - [SMALL_STATE(211)] = 11779, - [SMALL_STATE(212)] = 11834, - [SMALL_STATE(213)] = 11889, - [SMALL_STATE(214)] = 11944, - [SMALL_STATE(215)] = 11999, - [SMALL_STATE(216)] = 12054, - [SMALL_STATE(217)] = 12113, - [SMALL_STATE(218)] = 12168, - [SMALL_STATE(219)] = 12223, - [SMALL_STATE(220)] = 12278, - [SMALL_STATE(221)] = 12333, - [SMALL_STATE(222)] = 12388, - [SMALL_STATE(223)] = 12443, - [SMALL_STATE(224)] = 12498, - [SMALL_STATE(225)] = 12553, - [SMALL_STATE(226)] = 12608, - [SMALL_STATE(227)] = 12663, - [SMALL_STATE(228)] = 12722, - [SMALL_STATE(229)] = 12777, - [SMALL_STATE(230)] = 12832, - [SMALL_STATE(231)] = 12887, - [SMALL_STATE(232)] = 12942, - [SMALL_STATE(233)] = 12997, - [SMALL_STATE(234)] = 13052, - [SMALL_STATE(235)] = 13107, - [SMALL_STATE(236)] = 13166, - [SMALL_STATE(237)] = 13221, - [SMALL_STATE(238)] = 13276, - [SMALL_STATE(239)] = 13331, - [SMALL_STATE(240)] = 13386, - [SMALL_STATE(241)] = 13441, - [SMALL_STATE(242)] = 13496, - [SMALL_STATE(243)] = 13551, - [SMALL_STATE(244)] = 13606, - [SMALL_STATE(245)] = 13665, - [SMALL_STATE(246)] = 13720, - [SMALL_STATE(247)] = 13775, - [SMALL_STATE(248)] = 13834, - [SMALL_STATE(249)] = 13889, - [SMALL_STATE(250)] = 13948, - [SMALL_STATE(251)] = 14003, - [SMALL_STATE(252)] = 14062, - [SMALL_STATE(253)] = 14121, - [SMALL_STATE(254)] = 14176, - [SMALL_STATE(255)] = 14231, - [SMALL_STATE(256)] = 14290, - [SMALL_STATE(257)] = 14349, - [SMALL_STATE(258)] = 14404, - [SMALL_STATE(259)] = 14459, - [SMALL_STATE(260)] = 14514, - [SMALL_STATE(261)] = 14544, - [SMALL_STATE(262)] = 14574, - [SMALL_STATE(263)] = 14628, - [SMALL_STATE(264)] = 14670, - [SMALL_STATE(265)] = 14732, - [SMALL_STATE(266)] = 14762, - [SMALL_STATE(267)] = 14792, - [SMALL_STATE(268)] = 14834, - [SMALL_STATE(269)] = 14864, - [SMALL_STATE(270)] = 14894, - [SMALL_STATE(271)] = 14936, - [SMALL_STATE(272)] = 14990, - [SMALL_STATE(273)] = 15052, - [SMALL_STATE(274)] = 15114, - [SMALL_STATE(275)] = 15148, - [SMALL_STATE(276)] = 15210, - [SMALL_STATE(277)] = 15246, - [SMALL_STATE(278)] = 15276, - [SMALL_STATE(279)] = 15330, - [SMALL_STATE(280)] = 15360, - [SMALL_STATE(281)] = 15390, - [SMALL_STATE(282)] = 15420, - [SMALL_STATE(283)] = 15473, - [SMALL_STATE(284)] = 15526, - [SMALL_STATE(285)] = 15557, - [SMALL_STATE(286)] = 15588, - [SMALL_STATE(287)] = 15641, - [SMALL_STATE(288)] = 15694, - [SMALL_STATE(289)] = 15747, - [SMALL_STATE(290)] = 15776, - [SMALL_STATE(291)] = 15805, - [SMALL_STATE(292)] = 15834, - [SMALL_STATE(293)] = 15867, - [SMALL_STATE(294)] = 15900, - [SMALL_STATE(295)] = 15953, - [SMALL_STATE(296)] = 16006, - [SMALL_STATE(297)] = 16059, - [SMALL_STATE(298)] = 16112, - [SMALL_STATE(299)] = 16165, - [SMALL_STATE(300)] = 16218, - [SMALL_STATE(301)] = 16271, - [SMALL_STATE(302)] = 16324, - [SMALL_STATE(303)] = 16377, - [SMALL_STATE(304)] = 16430, - [SMALL_STATE(305)] = 16483, - [SMALL_STATE(306)] = 16536, - [SMALL_STATE(307)] = 16589, - [SMALL_STATE(308)] = 16617, - [SMALL_STATE(309)] = 16679, - [SMALL_STATE(310)] = 16707, - [SMALL_STATE(311)] = 16735, - [SMALL_STATE(312)] = 16763, - [SMALL_STATE(313)] = 16791, - [SMALL_STATE(314)] = 16817, - [SMALL_STATE(315)] = 16843, - [SMALL_STATE(316)] = 16871, - [SMALL_STATE(317)] = 16901, - [SMALL_STATE(318)] = 16963, - [SMALL_STATE(319)] = 17025, - [SMALL_STATE(320)] = 17087, - [SMALL_STATE(321)] = 17115, - [SMALL_STATE(322)] = 17143, - [SMALL_STATE(323)] = 17171, - [SMALL_STATE(324)] = 17199, - [SMALL_STATE(325)] = 17244, - [SMALL_STATE(326)] = 17289, - [SMALL_STATE(327)] = 17328, - [SMALL_STATE(328)] = 17381, - [SMALL_STATE(329)] = 17434, - [SMALL_STATE(330)] = 17459, - [SMALL_STATE(331)] = 17484, - [SMALL_STATE(332)] = 17537, - [SMALL_STATE(333)] = 17576, - [SMALL_STATE(334)] = 17629, - [SMALL_STATE(335)] = 17674, - [SMALL_STATE(336)] = 17719, - [SMALL_STATE(337)] = 17752, - [SMALL_STATE(338)] = 17777, - [SMALL_STATE(339)] = 17822, - [SMALL_STATE(340)] = 17847, - [SMALL_STATE(341)] = 17892, - [SMALL_STATE(342)] = 17931, - [SMALL_STATE(343)] = 17956, - [SMALL_STATE(344)] = 18001, - [SMALL_STATE(345)] = 18026, - [SMALL_STATE(346)] = 18052, - [SMALL_STATE(347)] = 18078, - [SMALL_STATE(348)] = 18108, - [SMALL_STATE(349)] = 18134, - [SMALL_STATE(350)] = 18164, - [SMALL_STATE(351)] = 18211, - [SMALL_STATE(352)] = 18258, - [SMALL_STATE(353)] = 18305, - [SMALL_STATE(354)] = 18336, - [SMALL_STATE(355)] = 18363, - [SMALL_STATE(356)] = 18410, - [SMALL_STATE(357)] = 18457, - [SMALL_STATE(358)] = 18493, - [SMALL_STATE(359)] = 18523, - [SMALL_STATE(360)] = 18559, - [SMALL_STATE(361)] = 18595, - [SMALL_STATE(362)] = 18645, - [SMALL_STATE(363)] = 18695, - [SMALL_STATE(364)] = 18739, - [SMALL_STATE(365)] = 18789, - [SMALL_STATE(366)] = 18815, - [SMALL_STATE(367)] = 18841, - [SMALL_STATE(368)] = 18891, - [SMALL_STATE(369)] = 18916, - [SMALL_STATE(370)] = 18939, - [SMALL_STATE(371)] = 18962, - [SMALL_STATE(372)] = 18983, - [SMALL_STATE(373)] = 19006, - [SMALL_STATE(374)] = 19047, - [SMALL_STATE(375)] = 19074, - [SMALL_STATE(376)] = 19099, - [SMALL_STATE(377)] = 19126, - [SMALL_STATE(378)] = 19151, - [SMALL_STATE(379)] = 19176, - [SMALL_STATE(380)] = 19201, - [SMALL_STATE(381)] = 19226, - [SMALL_STATE(382)] = 19251, - [SMALL_STATE(383)] = 19292, - [SMALL_STATE(384)] = 19313, - [SMALL_STATE(385)] = 19338, - [SMALL_STATE(386)] = 19362, - [SMALL_STATE(387)] = 19400, - [SMALL_STATE(388)] = 19424, - [SMALL_STATE(389)] = 19462, - [SMALL_STATE(390)] = 19482, - [SMALL_STATE(391)] = 19528, - [SMALL_STATE(392)] = 19548, - [SMALL_STATE(393)] = 19570, - [SMALL_STATE(394)] = 19608, - [SMALL_STATE(395)] = 19628, - [SMALL_STATE(396)] = 19666, - [SMALL_STATE(397)] = 19704, - [SMALL_STATE(398)] = 19742, - [SMALL_STATE(399)] = 19762, - [SMALL_STATE(400)] = 19786, - [SMALL_STATE(401)] = 19805, - [SMALL_STATE(402)] = 19824, - [SMALL_STATE(403)] = 19847, - [SMALL_STATE(404)] = 19870, - [SMALL_STATE(405)] = 19889, - [SMALL_STATE(406)] = 19908, - [SMALL_STATE(407)] = 19931, - [SMALL_STATE(408)] = 19954, - [SMALL_STATE(409)] = 19977, - [SMALL_STATE(410)] = 19996, - [SMALL_STATE(411)] = 20015, - [SMALL_STATE(412)] = 20033, - [SMALL_STATE(413)] = 20065, - [SMALL_STATE(414)] = 20083, - [SMALL_STATE(415)] = 20115, - [SMALL_STATE(416)] = 20137, - [SMALL_STATE(417)] = 20169, - [SMALL_STATE(418)] = 20191, - [SMALL_STATE(419)] = 20209, - [SMALL_STATE(420)] = 20241, - [SMALL_STATE(421)] = 20273, - [SMALL_STATE(422)] = 20293, - [SMALL_STATE(423)] = 20311, - [SMALL_STATE(424)] = 20343, - [SMALL_STATE(425)] = 20375, - [SMALL_STATE(426)] = 20413, - [SMALL_STATE(427)] = 20444, - [SMALL_STATE(428)] = 20461, - [SMALL_STATE(429)] = 20480, - [SMALL_STATE(430)] = 20497, - [SMALL_STATE(431)] = 20516, - [SMALL_STATE(432)] = 20551, - [SMALL_STATE(433)] = 20582, - [SMALL_STATE(434)] = 20619, - [SMALL_STATE(435)] = 20638, - [SMALL_STATE(436)] = 20673, - [SMALL_STATE(437)] = 20694, - [SMALL_STATE(438)] = 20715, - [SMALL_STATE(439)] = 20734, - [SMALL_STATE(440)] = 20753, - [SMALL_STATE(441)] = 20772, - [SMALL_STATE(442)] = 20791, - [SMALL_STATE(443)] = 20826, - [SMALL_STATE(444)] = 20861, - [SMALL_STATE(445)] = 20880, - [SMALL_STATE(446)] = 20915, - [SMALL_STATE(447)] = 20950, - [SMALL_STATE(448)] = 20967, - [SMALL_STATE(449)] = 20984, - [SMALL_STATE(450)] = 21021, - [SMALL_STATE(451)] = 21037, - [SMALL_STATE(452)] = 21053, - [SMALL_STATE(453)] = 21069, - [SMALL_STATE(454)] = 21089, - [SMALL_STATE(455)] = 21115, - [SMALL_STATE(456)] = 21131, - [SMALL_STATE(457)] = 21147, - [SMALL_STATE(458)] = 21163, - [SMALL_STATE(459)] = 21189, - [SMALL_STATE(460)] = 21209, - [SMALL_STATE(461)] = 21235, - [SMALL_STATE(462)] = 21251, - [SMALL_STATE(463)] = 21277, - [SMALL_STATE(464)] = 21303, - [SMALL_STATE(465)] = 21319, - [SMALL_STATE(466)] = 21351, - [SMALL_STATE(467)] = 21383, - [SMALL_STATE(468)] = 21415, - [SMALL_STATE(469)] = 21441, - [SMALL_STATE(470)] = 21457, - [SMALL_STATE(471)] = 21473, - [SMALL_STATE(472)] = 21489, - [SMALL_STATE(473)] = 21515, - [SMALL_STATE(474)] = 21541, - [SMALL_STATE(475)] = 21557, - [SMALL_STATE(476)] = 21577, - [SMALL_STATE(477)] = 21596, - [SMALL_STATE(478)] = 21615, - [SMALL_STATE(479)] = 21640, - [SMALL_STATE(480)] = 21669, - [SMALL_STATE(481)] = 21700, - [SMALL_STATE(482)] = 21725, - [SMALL_STATE(483)] = 21754, - [SMALL_STATE(484)] = 21773, - [SMALL_STATE(485)] = 21796, - [SMALL_STATE(486)] = 21825, - [SMALL_STATE(487)] = 21850, - [SMALL_STATE(488)] = 21881, - [SMALL_STATE(489)] = 21910, - [SMALL_STATE(490)] = 21930, - [SMALL_STATE(491)] = 21952, - [SMALL_STATE(492)] = 21966, - [SMALL_STATE(493)] = 21992, - [SMALL_STATE(494)] = 22012, - [SMALL_STATE(495)] = 22032, - [SMALL_STATE(496)] = 22058, - [SMALL_STATE(497)] = 22072, - [SMALL_STATE(498)] = 22092, - [SMALL_STATE(499)] = 22106, - [SMALL_STATE(500)] = 22128, - [SMALL_STATE(501)] = 22148, - [SMALL_STATE(502)] = 22174, - [SMALL_STATE(503)] = 22200, - [SMALL_STATE(504)] = 22220, - [SMALL_STATE(505)] = 22246, - [SMALL_STATE(506)] = 22272, - [SMALL_STATE(507)] = 22292, - [SMALL_STATE(508)] = 22312, - [SMALL_STATE(509)] = 22332, - [SMALL_STATE(510)] = 22357, - [SMALL_STATE(511)] = 22378, - [SMALL_STATE(512)] = 22397, - [SMALL_STATE(513)] = 22418, - [SMALL_STATE(514)] = 22435, - [SMALL_STATE(515)] = 22452, - [SMALL_STATE(516)] = 22471, - [SMALL_STATE(517)] = 22494, - [SMALL_STATE(518)] = 22519, - [SMALL_STATE(519)] = 22540, - [SMALL_STATE(520)] = 22557, - [SMALL_STATE(521)] = 22580, - [SMALL_STATE(522)] = 22601, - [SMALL_STATE(523)] = 22626, - [SMALL_STATE(524)] = 22647, - [SMALL_STATE(525)] = 22670, - [SMALL_STATE(526)] = 22691, - [SMALL_STATE(527)] = 22712, - [SMALL_STATE(528)] = 22735, - [SMALL_STATE(529)] = 22756, - [SMALL_STATE(530)] = 22773, - [SMALL_STATE(531)] = 22791, - [SMALL_STATE(532)] = 22811, - [SMALL_STATE(533)] = 22831, - [SMALL_STATE(534)] = 22849, - [SMALL_STATE(535)] = 22869, - [SMALL_STATE(536)] = 22889, - [SMALL_STATE(537)] = 22907, - [SMALL_STATE(538)] = 22927, - [SMALL_STATE(539)] = 22947, - [SMALL_STATE(540)] = 22967, - [SMALL_STATE(541)] = 22979, - [SMALL_STATE(542)] = 22991, - [SMALL_STATE(543)] = 23003, - [SMALL_STATE(544)] = 23023, - [SMALL_STATE(545)] = 23035, - [SMALL_STATE(546)] = 23047, - [SMALL_STATE(547)] = 23059, - [SMALL_STATE(548)] = 23077, - [SMALL_STATE(549)] = 23091, - [SMALL_STATE(550)] = 23111, - [SMALL_STATE(551)] = 23131, - [SMALL_STATE(552)] = 23151, - [SMALL_STATE(553)] = 23171, - [SMALL_STATE(554)] = 23189, - [SMALL_STATE(555)] = 23209, - [SMALL_STATE(556)] = 23225, - [SMALL_STATE(557)] = 23245, - [SMALL_STATE(558)] = 23265, - [SMALL_STATE(559)] = 23283, - [SMALL_STATE(560)] = 23303, - [SMALL_STATE(561)] = 23323, - [SMALL_STATE(562)] = 23343, - [SMALL_STATE(563)] = 23354, - [SMALL_STATE(564)] = 23365, - [SMALL_STATE(565)] = 23376, - [SMALL_STATE(566)] = 23393, - [SMALL_STATE(567)] = 23408, - [SMALL_STATE(568)] = 23425, - [SMALL_STATE(569)] = 23444, - [SMALL_STATE(570)] = 23459, - [SMALL_STATE(571)] = 23470, - [SMALL_STATE(572)] = 23485, - [SMALL_STATE(573)] = 23502, - [SMALL_STATE(574)] = 23513, - [SMALL_STATE(575)] = 23528, - [SMALL_STATE(576)] = 23543, - [SMALL_STATE(577)] = 23558, - [SMALL_STATE(578)] = 23573, - [SMALL_STATE(579)] = 23584, - [SMALL_STATE(580)] = 23601, - [SMALL_STATE(581)] = 23612, - [SMALL_STATE(582)] = 23623, - [SMALL_STATE(583)] = 23642, - [SMALL_STATE(584)] = 23659, - [SMALL_STATE(585)] = 23678, - [SMALL_STATE(586)] = 23695, - [SMALL_STATE(587)] = 23706, - [SMALL_STATE(588)] = 23721, - [SMALL_STATE(589)] = 23738, - [SMALL_STATE(590)] = 23749, - [SMALL_STATE(591)] = 23760, - [SMALL_STATE(592)] = 23775, - [SMALL_STATE(593)] = 23788, - [SMALL_STATE(594)] = 23805, - [SMALL_STATE(595)] = 23824, - [SMALL_STATE(596)] = 23835, - [SMALL_STATE(597)] = 23846, - [SMALL_STATE(598)] = 23865, - [SMALL_STATE(599)] = 23884, - [SMALL_STATE(600)] = 23901, - [SMALL_STATE(601)] = 23916, - [SMALL_STATE(602)] = 23935, - [SMALL_STATE(603)] = 23952, - [SMALL_STATE(604)] = 23963, - [SMALL_STATE(605)] = 23976, - [SMALL_STATE(606)] = 23995, - [SMALL_STATE(607)] = 24014, - [SMALL_STATE(608)] = 24029, - [SMALL_STATE(609)] = 24046, - [SMALL_STATE(610)] = 24063, - [SMALL_STATE(611)] = 24080, - [SMALL_STATE(612)] = 24099, - [SMALL_STATE(613)] = 24110, - [SMALL_STATE(614)] = 24125, - [SMALL_STATE(615)] = 24144, - [SMALL_STATE(616)] = 24159, - [SMALL_STATE(617)] = 24176, - [SMALL_STATE(618)] = 24187, - [SMALL_STATE(619)] = 24202, - [SMALL_STATE(620)] = 24215, - [SMALL_STATE(621)] = 24231, - [SMALL_STATE(622)] = 24241, - [SMALL_STATE(623)] = 24255, - [SMALL_STATE(624)] = 24269, - [SMALL_STATE(625)] = 24283, - [SMALL_STATE(626)] = 24297, - [SMALL_STATE(627)] = 24311, - [SMALL_STATE(628)] = 24325, - [SMALL_STATE(629)] = 24341, - [SMALL_STATE(630)] = 24355, - [SMALL_STATE(631)] = 24371, - [SMALL_STATE(632)] = 24385, - [SMALL_STATE(633)] = 24399, - [SMALL_STATE(634)] = 24409, - [SMALL_STATE(635)] = 24425, - [SMALL_STATE(636)] = 24441, - [SMALL_STATE(637)] = 24455, - [SMALL_STATE(638)] = 24465, - [SMALL_STATE(639)] = 24479, - [SMALL_STATE(640)] = 24495, - [SMALL_STATE(641)] = 24511, - [SMALL_STATE(642)] = 24525, - [SMALL_STATE(643)] = 24539, - [SMALL_STATE(644)] = 24553, - [SMALL_STATE(645)] = 24563, - [SMALL_STATE(646)] = 24579, - [SMALL_STATE(647)] = 24589, - [SMALL_STATE(648)] = 24599, - [SMALL_STATE(649)] = 24613, - [SMALL_STATE(650)] = 24629, - [SMALL_STATE(651)] = 24643, - [SMALL_STATE(652)] = 24657, - [SMALL_STATE(653)] = 24671, - [SMALL_STATE(654)] = 24687, - [SMALL_STATE(655)] = 24697, - [SMALL_STATE(656)] = 24707, - [SMALL_STATE(657)] = 24721, - [SMALL_STATE(658)] = 24735, - [SMALL_STATE(659)] = 24745, - [SMALL_STATE(660)] = 24757, - [SMALL_STATE(661)] = 24773, - [SMALL_STATE(662)] = 24787, - [SMALL_STATE(663)] = 24801, - [SMALL_STATE(664)] = 24815, - [SMALL_STATE(665)] = 24831, - [SMALL_STATE(666)] = 24841, - [SMALL_STATE(667)] = 24851, - [SMALL_STATE(668)] = 24861, - [SMALL_STATE(669)] = 24875, - [SMALL_STATE(670)] = 24889, - [SMALL_STATE(671)] = 24903, - [SMALL_STATE(672)] = 24919, - [SMALL_STATE(673)] = 24929, - [SMALL_STATE(674)] = 24939, - [SMALL_STATE(675)] = 24955, - [SMALL_STATE(676)] = 24971, - [SMALL_STATE(677)] = 24985, - [SMALL_STATE(678)] = 24997, - [SMALL_STATE(679)] = 25011, - [SMALL_STATE(680)] = 25027, - [SMALL_STATE(681)] = 25041, - [SMALL_STATE(682)] = 25055, - [SMALL_STATE(683)] = 25065, - [SMALL_STATE(684)] = 25081, - [SMALL_STATE(685)] = 25094, - [SMALL_STATE(686)] = 25107, - [SMALL_STATE(687)] = 25120, - [SMALL_STATE(688)] = 25133, - [SMALL_STATE(689)] = 25146, - [SMALL_STATE(690)] = 25157, - [SMALL_STATE(691)] = 25170, - [SMALL_STATE(692)] = 25183, - [SMALL_STATE(693)] = 25196, - [SMALL_STATE(694)] = 25209, - [SMALL_STATE(695)] = 25222, - [SMALL_STATE(696)] = 25233, - [SMALL_STATE(697)] = 25246, - [SMALL_STATE(698)] = 25259, - [SMALL_STATE(699)] = 25270, - [SMALL_STATE(700)] = 25283, - [SMALL_STATE(701)] = 25296, - [SMALL_STATE(702)] = 25309, - [SMALL_STATE(703)] = 25322, - [SMALL_STATE(704)] = 25331, - [SMALL_STATE(705)] = 25344, - [SMALL_STATE(706)] = 25357, - [SMALL_STATE(707)] = 25370, - [SMALL_STATE(708)] = 25383, - [SMALL_STATE(709)] = 25392, - [SMALL_STATE(710)] = 25405, - [SMALL_STATE(711)] = 25418, - [SMALL_STATE(712)] = 25431, - [SMALL_STATE(713)] = 25444, - [SMALL_STATE(714)] = 25457, - [SMALL_STATE(715)] = 25470, - [SMALL_STATE(716)] = 25483, - [SMALL_STATE(717)] = 25496, - [SMALL_STATE(718)] = 25509, - [SMALL_STATE(719)] = 25522, - [SMALL_STATE(720)] = 25535, - [SMALL_STATE(721)] = 25548, - [SMALL_STATE(722)] = 25561, - [SMALL_STATE(723)] = 25574, - [SMALL_STATE(724)] = 25587, - [SMALL_STATE(725)] = 25596, - [SMALL_STATE(726)] = 25609, - [SMALL_STATE(727)] = 25622, - [SMALL_STATE(728)] = 25635, - [SMALL_STATE(729)] = 25648, - [SMALL_STATE(730)] = 25661, - [SMALL_STATE(731)] = 25674, - [SMALL_STATE(732)] = 25687, - [SMALL_STATE(733)] = 25700, - [SMALL_STATE(734)] = 25713, - [SMALL_STATE(735)] = 25726, - [SMALL_STATE(736)] = 25739, - [SMALL_STATE(737)] = 25752, - [SMALL_STATE(738)] = 25765, - [SMALL_STATE(739)] = 25778, - [SMALL_STATE(740)] = 25791, - [SMALL_STATE(741)] = 25804, - [SMALL_STATE(742)] = 25817, - [SMALL_STATE(743)] = 25830, - [SMALL_STATE(744)] = 25839, - [SMALL_STATE(745)] = 25852, - [SMALL_STATE(746)] = 25865, - [SMALL_STATE(747)] = 25878, - [SMALL_STATE(748)] = 25891, - [SMALL_STATE(749)] = 25900, - [SMALL_STATE(750)] = 25913, - [SMALL_STATE(751)] = 25926, - [SMALL_STATE(752)] = 25939, - [SMALL_STATE(753)] = 25952, - [SMALL_STATE(754)] = 25965, - [SMALL_STATE(755)] = 25978, - [SMALL_STATE(756)] = 25991, - [SMALL_STATE(757)] = 26004, - [SMALL_STATE(758)] = 26017, - [SMALL_STATE(759)] = 26030, - [SMALL_STATE(760)] = 26043, - [SMALL_STATE(761)] = 26052, - [SMALL_STATE(762)] = 26065, - [SMALL_STATE(763)] = 26078, - [SMALL_STATE(764)] = 26091, - [SMALL_STATE(765)] = 26104, - [SMALL_STATE(766)] = 26117, - [SMALL_STATE(767)] = 26130, - [SMALL_STATE(768)] = 26143, - [SMALL_STATE(769)] = 26156, - [SMALL_STATE(770)] = 26169, - [SMALL_STATE(771)] = 26182, - [SMALL_STATE(772)] = 26195, - [SMALL_STATE(773)] = 26208, - [SMALL_STATE(774)] = 26221, - [SMALL_STATE(775)] = 26234, - [SMALL_STATE(776)] = 26243, - [SMALL_STATE(777)] = 26254, - [SMALL_STATE(778)] = 26267, - [SMALL_STATE(779)] = 26280, - [SMALL_STATE(780)] = 26293, - [SMALL_STATE(781)] = 26306, - [SMALL_STATE(782)] = 26319, - [SMALL_STATE(783)] = 26332, - [SMALL_STATE(784)] = 26345, - [SMALL_STATE(785)] = 26358, - [SMALL_STATE(786)] = 26371, - [SMALL_STATE(787)] = 26384, - [SMALL_STATE(788)] = 26397, - [SMALL_STATE(789)] = 26410, - [SMALL_STATE(790)] = 26423, - [SMALL_STATE(791)] = 26436, - [SMALL_STATE(792)] = 26449, - [SMALL_STATE(793)] = 26458, - [SMALL_STATE(794)] = 26471, - [SMALL_STATE(795)] = 26484, - [SMALL_STATE(796)] = 26497, - [SMALL_STATE(797)] = 26510, - [SMALL_STATE(798)] = 26523, - [SMALL_STATE(799)] = 26536, - [SMALL_STATE(800)] = 26549, - [SMALL_STATE(801)] = 26562, - [SMALL_STATE(802)] = 26575, - [SMALL_STATE(803)] = 26588, - [SMALL_STATE(804)] = 26601, - [SMALL_STATE(805)] = 26614, - [SMALL_STATE(806)] = 26627, - [SMALL_STATE(807)] = 26640, - [SMALL_STATE(808)] = 26649, - [SMALL_STATE(809)] = 26662, - [SMALL_STATE(810)] = 26673, - [SMALL_STATE(811)] = 26686, - [SMALL_STATE(812)] = 26699, - [SMALL_STATE(813)] = 26712, - [SMALL_STATE(814)] = 26720, - [SMALL_STATE(815)] = 26730, - [SMALL_STATE(816)] = 26740, - [SMALL_STATE(817)] = 26748, - [SMALL_STATE(818)] = 26758, - [SMALL_STATE(819)] = 26766, - [SMALL_STATE(820)] = 26774, - [SMALL_STATE(821)] = 26784, - [SMALL_STATE(822)] = 26794, - [SMALL_STATE(823)] = 26802, - [SMALL_STATE(824)] = 26812, - [SMALL_STATE(825)] = 26820, - [SMALL_STATE(826)] = 26828, - [SMALL_STATE(827)] = 26836, - [SMALL_STATE(828)] = 26846, - [SMALL_STATE(829)] = 26854, - [SMALL_STATE(830)] = 26862, - [SMALL_STATE(831)] = 26872, - [SMALL_STATE(832)] = 26882, - [SMALL_STATE(833)] = 26890, - [SMALL_STATE(834)] = 26900, - [SMALL_STATE(835)] = 26908, - [SMALL_STATE(836)] = 26918, - [SMALL_STATE(837)] = 26928, - [SMALL_STATE(838)] = 26936, - [SMALL_STATE(839)] = 26946, - [SMALL_STATE(840)] = 26956, - [SMALL_STATE(841)] = 26964, - [SMALL_STATE(842)] = 26972, - [SMALL_STATE(843)] = 26982, - [SMALL_STATE(844)] = 26990, - [SMALL_STATE(845)] = 26998, - [SMALL_STATE(846)] = 27006, - [SMALL_STATE(847)] = 27014, - [SMALL_STATE(848)] = 27022, - [SMALL_STATE(849)] = 27032, - [SMALL_STATE(850)] = 27040, - [SMALL_STATE(851)] = 27050, - [SMALL_STATE(852)] = 27060, - [SMALL_STATE(853)] = 27068, - [SMALL_STATE(854)] = 27078, - [SMALL_STATE(855)] = 27086, - [SMALL_STATE(856)] = 27094, - [SMALL_STATE(857)] = 27102, - [SMALL_STATE(858)] = 27110, - [SMALL_STATE(859)] = 27120, - [SMALL_STATE(860)] = 27130, - [SMALL_STATE(861)] = 27138, - [SMALL_STATE(862)] = 27146, - [SMALL_STATE(863)] = 27154, - [SMALL_STATE(864)] = 27164, - [SMALL_STATE(865)] = 27172, - [SMALL_STATE(866)] = 27182, - [SMALL_STATE(867)] = 27192, - [SMALL_STATE(868)] = 27200, - [SMALL_STATE(869)] = 27208, - [SMALL_STATE(870)] = 27216, - [SMALL_STATE(871)] = 27226, - [SMALL_STATE(872)] = 27236, - [SMALL_STATE(873)] = 27246, - [SMALL_STATE(874)] = 27256, - [SMALL_STATE(875)] = 27266, - [SMALL_STATE(876)] = 27274, - [SMALL_STATE(877)] = 27284, - [SMALL_STATE(878)] = 27292, - [SMALL_STATE(879)] = 27300, - [SMALL_STATE(880)] = 27308, - [SMALL_STATE(881)] = 27316, - [SMALL_STATE(882)] = 27326, - [SMALL_STATE(883)] = 27334, - [SMALL_STATE(884)] = 27344, - [SMALL_STATE(885)] = 27352, - [SMALL_STATE(886)] = 27360, - [SMALL_STATE(887)] = 27368, - [SMALL_STATE(888)] = 27376, - [SMALL_STATE(889)] = 27386, - [SMALL_STATE(890)] = 27396, - [SMALL_STATE(891)] = 27404, - [SMALL_STATE(892)] = 27412, - [SMALL_STATE(893)] = 27422, - [SMALL_STATE(894)] = 27430, - [SMALL_STATE(895)] = 27440, - [SMALL_STATE(896)] = 27448, - [SMALL_STATE(897)] = 27458, - [SMALL_STATE(898)] = 27468, - [SMALL_STATE(899)] = 27478, - [SMALL_STATE(900)] = 27486, - [SMALL_STATE(901)] = 27496, - [SMALL_STATE(902)] = 27504, - [SMALL_STATE(903)] = 27512, - [SMALL_STATE(904)] = 27520, - [SMALL_STATE(905)] = 27530, - [SMALL_STATE(906)] = 27540, - [SMALL_STATE(907)] = 27548, - [SMALL_STATE(908)] = 27558, - [SMALL_STATE(909)] = 27568, - [SMALL_STATE(910)] = 27578, - [SMALL_STATE(911)] = 27586, - [SMALL_STATE(912)] = 27596, - [SMALL_STATE(913)] = 27606, - [SMALL_STATE(914)] = 27614, - [SMALL_STATE(915)] = 27624, - [SMALL_STATE(916)] = 27634, - [SMALL_STATE(917)] = 27642, - [SMALL_STATE(918)] = 27652, - [SMALL_STATE(919)] = 27662, - [SMALL_STATE(920)] = 27670, - [SMALL_STATE(921)] = 27677, - [SMALL_STATE(922)] = 27684, - [SMALL_STATE(923)] = 27691, - [SMALL_STATE(924)] = 27698, - [SMALL_STATE(925)] = 27705, - [SMALL_STATE(926)] = 27712, - [SMALL_STATE(927)] = 27719, - [SMALL_STATE(928)] = 27726, - [SMALL_STATE(929)] = 27733, - [SMALL_STATE(930)] = 27740, - [SMALL_STATE(931)] = 27747, - [SMALL_STATE(932)] = 27754, - [SMALL_STATE(933)] = 27761, - [SMALL_STATE(934)] = 27768, - [SMALL_STATE(935)] = 27775, - [SMALL_STATE(936)] = 27782, - [SMALL_STATE(937)] = 27789, - [SMALL_STATE(938)] = 27796, - [SMALL_STATE(939)] = 27803, - [SMALL_STATE(940)] = 27810, - [SMALL_STATE(941)] = 27817, - [SMALL_STATE(942)] = 27824, - [SMALL_STATE(943)] = 27831, - [SMALL_STATE(944)] = 27838, - [SMALL_STATE(945)] = 27845, - [SMALL_STATE(946)] = 27852, - [SMALL_STATE(947)] = 27859, - [SMALL_STATE(948)] = 27866, - [SMALL_STATE(949)] = 27873, - [SMALL_STATE(950)] = 27880, - [SMALL_STATE(951)] = 27887, - [SMALL_STATE(952)] = 27894, - [SMALL_STATE(953)] = 27901, - [SMALL_STATE(954)] = 27908, - [SMALL_STATE(955)] = 27915, - [SMALL_STATE(956)] = 27922, - [SMALL_STATE(957)] = 27929, - [SMALL_STATE(958)] = 27936, - [SMALL_STATE(959)] = 27943, - [SMALL_STATE(960)] = 27950, - [SMALL_STATE(961)] = 27957, - [SMALL_STATE(962)] = 27964, - [SMALL_STATE(963)] = 27971, - [SMALL_STATE(964)] = 27978, - [SMALL_STATE(965)] = 27985, - [SMALL_STATE(966)] = 27992, - [SMALL_STATE(967)] = 27999, - [SMALL_STATE(968)] = 28006, - [SMALL_STATE(969)] = 28013, - [SMALL_STATE(970)] = 28020, - [SMALL_STATE(971)] = 28027, - [SMALL_STATE(972)] = 28034, - [SMALL_STATE(973)] = 28041, - [SMALL_STATE(974)] = 28048, - [SMALL_STATE(975)] = 28055, - [SMALL_STATE(976)] = 28062, - [SMALL_STATE(977)] = 28069, - [SMALL_STATE(978)] = 28076, - [SMALL_STATE(979)] = 28083, - [SMALL_STATE(980)] = 28090, - [SMALL_STATE(981)] = 28097, - [SMALL_STATE(982)] = 28104, - [SMALL_STATE(983)] = 28111, - [SMALL_STATE(984)] = 28118, - [SMALL_STATE(985)] = 28125, - [SMALL_STATE(986)] = 28132, - [SMALL_STATE(987)] = 28139, - [SMALL_STATE(988)] = 28146, - [SMALL_STATE(989)] = 28153, - [SMALL_STATE(990)] = 28160, - [SMALL_STATE(991)] = 28167, - [SMALL_STATE(992)] = 28174, - [SMALL_STATE(993)] = 28181, - [SMALL_STATE(994)] = 28188, - [SMALL_STATE(995)] = 28195, - [SMALL_STATE(996)] = 28202, - [SMALL_STATE(997)] = 28209, - [SMALL_STATE(998)] = 28216, - [SMALL_STATE(999)] = 28223, - [SMALL_STATE(1000)] = 28230, - [SMALL_STATE(1001)] = 28237, - [SMALL_STATE(1002)] = 28244, - [SMALL_STATE(1003)] = 28251, - [SMALL_STATE(1004)] = 28258, - [SMALL_STATE(1005)] = 28265, - [SMALL_STATE(1006)] = 28272, - [SMALL_STATE(1007)] = 28279, - [SMALL_STATE(1008)] = 28286, - [SMALL_STATE(1009)] = 28293, - [SMALL_STATE(1010)] = 28300, - [SMALL_STATE(1011)] = 28307, - [SMALL_STATE(1012)] = 28314, - [SMALL_STATE(1013)] = 28321, - [SMALL_STATE(1014)] = 28328, - [SMALL_STATE(1015)] = 28335, - [SMALL_STATE(1016)] = 28342, - [SMALL_STATE(1017)] = 28349, - [SMALL_STATE(1018)] = 28356, - [SMALL_STATE(1019)] = 28363, - [SMALL_STATE(1020)] = 28370, - [SMALL_STATE(1021)] = 28377, - [SMALL_STATE(1022)] = 28384, - [SMALL_STATE(1023)] = 28391, - [SMALL_STATE(1024)] = 28398, - [SMALL_STATE(1025)] = 28405, - [SMALL_STATE(1026)] = 28412, - [SMALL_STATE(1027)] = 28419, - [SMALL_STATE(1028)] = 28426, - [SMALL_STATE(1029)] = 28433, - [SMALL_STATE(1030)] = 28440, - [SMALL_STATE(1031)] = 28447, - [SMALL_STATE(1032)] = 28454, - [SMALL_STATE(1033)] = 28461, - [SMALL_STATE(1034)] = 28468, - [SMALL_STATE(1035)] = 28475, - [SMALL_STATE(1036)] = 28482, - [SMALL_STATE(1037)] = 28489, - [SMALL_STATE(1038)] = 28496, - [SMALL_STATE(1039)] = 28503, - [SMALL_STATE(1040)] = 28510, - [SMALL_STATE(1041)] = 28517, - [SMALL_STATE(1042)] = 28524, - [SMALL_STATE(1043)] = 28531, - [SMALL_STATE(1044)] = 28538, - [SMALL_STATE(1045)] = 28545, - [SMALL_STATE(1046)] = 28552, - [SMALL_STATE(1047)] = 28559, - [SMALL_STATE(1048)] = 28566, - [SMALL_STATE(1049)] = 28573, - [SMALL_STATE(1050)] = 28580, - [SMALL_STATE(1051)] = 28587, - [SMALL_STATE(1052)] = 28594, - [SMALL_STATE(1053)] = 28601, - [SMALL_STATE(1054)] = 28608, - [SMALL_STATE(1055)] = 28615, - [SMALL_STATE(1056)] = 28622, - [SMALL_STATE(1057)] = 28629, - [SMALL_STATE(1058)] = 28636, - [SMALL_STATE(1059)] = 28643, - [SMALL_STATE(1060)] = 28650, - [SMALL_STATE(1061)] = 28657, - [SMALL_STATE(1062)] = 28664, - [SMALL_STATE(1063)] = 28671, - [SMALL_STATE(1064)] = 28678, - [SMALL_STATE(1065)] = 28685, - [SMALL_STATE(1066)] = 28692, - [SMALL_STATE(1067)] = 28699, - [SMALL_STATE(1068)] = 28706, - [SMALL_STATE(1069)] = 28713, - [SMALL_STATE(1070)] = 28720, - [SMALL_STATE(1071)] = 28727, - [SMALL_STATE(1072)] = 28734, - [SMALL_STATE(1073)] = 28741, - [SMALL_STATE(1074)] = 28748, - [SMALL_STATE(1075)] = 28755, - [SMALL_STATE(1076)] = 28762, - [SMALL_STATE(1077)] = 28769, - [SMALL_STATE(1078)] = 28776, - [SMALL_STATE(1079)] = 28783, - [SMALL_STATE(1080)] = 28790, - [SMALL_STATE(1081)] = 28797, - [SMALL_STATE(1082)] = 28804, - [SMALL_STATE(1083)] = 28811, - [SMALL_STATE(1084)] = 28818, - [SMALL_STATE(1085)] = 28825, - [SMALL_STATE(1086)] = 28832, - [SMALL_STATE(1087)] = 28839, - [SMALL_STATE(1088)] = 28846, - [SMALL_STATE(1089)] = 28853, - [SMALL_STATE(1090)] = 28860, - [SMALL_STATE(1091)] = 28867, - [SMALL_STATE(1092)] = 28874, - [SMALL_STATE(1093)] = 28881, - [SMALL_STATE(1094)] = 28888, - [SMALL_STATE(1095)] = 28895, - [SMALL_STATE(1096)] = 28902, - [SMALL_STATE(1097)] = 28909, - [SMALL_STATE(1098)] = 28916, - [SMALL_STATE(1099)] = 28923, - [SMALL_STATE(1100)] = 28930, - [SMALL_STATE(1101)] = 28937, - [SMALL_STATE(1102)] = 28944, - [SMALL_STATE(1103)] = 28951, - [SMALL_STATE(1104)] = 28958, - [SMALL_STATE(1105)] = 28965, - [SMALL_STATE(1106)] = 28972, - [SMALL_STATE(1107)] = 28979, - [SMALL_STATE(1108)] = 28986, - [SMALL_STATE(1109)] = 28993, - [SMALL_STATE(1110)] = 29000, - [SMALL_STATE(1111)] = 29007, - [SMALL_STATE(1112)] = 29014, - [SMALL_STATE(1113)] = 29021, - [SMALL_STATE(1114)] = 29028, - [SMALL_STATE(1115)] = 29035, - [SMALL_STATE(1116)] = 29042, - [SMALL_STATE(1117)] = 29049, - [SMALL_STATE(1118)] = 29056, - [SMALL_STATE(1119)] = 29063, - [SMALL_STATE(1120)] = 29070, - [SMALL_STATE(1121)] = 29077, - [SMALL_STATE(1122)] = 29084, - [SMALL_STATE(1123)] = 29091, - [SMALL_STATE(1124)] = 29098, - [SMALL_STATE(1125)] = 29105, - [SMALL_STATE(1126)] = 29112, - [SMALL_STATE(1127)] = 29119, - [SMALL_STATE(1128)] = 29126, - [SMALL_STATE(1129)] = 29133, - [SMALL_STATE(1130)] = 29140, - [SMALL_STATE(1131)] = 29147, - [SMALL_STATE(1132)] = 29154, - [SMALL_STATE(1133)] = 29161, - [SMALL_STATE(1134)] = 29168, - [SMALL_STATE(1135)] = 29175, - [SMALL_STATE(1136)] = 29182, - [SMALL_STATE(1137)] = 29189, - [SMALL_STATE(1138)] = 29196, - [SMALL_STATE(1139)] = 29203, - [SMALL_STATE(1140)] = 29210, - [SMALL_STATE(1141)] = 29217, - [SMALL_STATE(1142)] = 29224, - [SMALL_STATE(1143)] = 29231, - [SMALL_STATE(1144)] = 29238, - [SMALL_STATE(1145)] = 29245, - [SMALL_STATE(1146)] = 29252, - [SMALL_STATE(1147)] = 29259, - [SMALL_STATE(1148)] = 29266, - [SMALL_STATE(1149)] = 29273, - [SMALL_STATE(1150)] = 29280, - [SMALL_STATE(1151)] = 29287, - [SMALL_STATE(1152)] = 29294, - [SMALL_STATE(1153)] = 29301, - [SMALL_STATE(1154)] = 29308, + [SMALL_STATE(3)] = 0, + [SMALL_STATE(4)] = 62, + [SMALL_STATE(5)] = 124, + [SMALL_STATE(6)] = 190, + [SMALL_STATE(7)] = 262, + [SMALL_STATE(8)] = 330, + [SMALL_STATE(9)] = 412, + [SMALL_STATE(10)] = 494, + [SMALL_STATE(11)] = 570, + [SMALL_STATE(12)] = 638, + [SMALL_STATE(13)] = 724, + [SMALL_STATE(14)] = 802, + [SMALL_STATE(15)] = 867, + [SMALL_STATE(16)] = 925, + [SMALL_STATE(17)] = 983, + [SMALL_STATE(18)] = 1041, + [SMALL_STATE(19)] = 1099, + [SMALL_STATE(20)] = 1157, + [SMALL_STATE(21)] = 1215, + [SMALL_STATE(22)] = 1273, + [SMALL_STATE(23)] = 1331, + [SMALL_STATE(24)] = 1389, + [SMALL_STATE(25)] = 1514, + [SMALL_STATE(26)] = 1639, + [SMALL_STATE(27)] = 1738, + [SMALL_STATE(28)] = 1861, + [SMALL_STATE(29)] = 1984, + [SMALL_STATE(30)] = 2076, + [SMALL_STATE(31)] = 2168, + [SMALL_STATE(32)] = 2290, + [SMALL_STATE(33)] = 2412, + [SMALL_STATE(34)] = 2501, + [SMALL_STATE(35)] = 2590, + [SMALL_STATE(36)] = 2679, + [SMALL_STATE(37)] = 2768, + [SMALL_STATE(38)] = 2857, + [SMALL_STATE(39)] = 2946, + [SMALL_STATE(40)] = 3035, + [SMALL_STATE(41)] = 3124, + [SMALL_STATE(42)] = 3213, + [SMALL_STATE(43)] = 3302, + [SMALL_STATE(44)] = 3391, + [SMALL_STATE(45)] = 3480, + [SMALL_STATE(46)] = 3569, + [SMALL_STATE(47)] = 3658, + [SMALL_STATE(48)] = 3747, + [SMALL_STATE(49)] = 3836, + [SMALL_STATE(50)] = 3925, + [SMALL_STATE(51)] = 4014, + [SMALL_STATE(52)] = 4103, + [SMALL_STATE(53)] = 4189, + [SMALL_STATE(54)] = 4275, + [SMALL_STATE(55)] = 4361, + [SMALL_STATE(56)] = 4447, + [SMALL_STATE(57)] = 4501, + [SMALL_STATE(58)] = 4561, + [SMALL_STATE(59)] = 4617, + [SMALL_STATE(60)] = 4687, + [SMALL_STATE(61)] = 4735, + [SMALL_STATE(62)] = 4799, + [SMALL_STATE(63)] = 4871, + [SMALL_STATE(64)] = 4937, + [SMALL_STATE(65)] = 5007, + [SMALL_STATE(66)] = 5079, + [SMALL_STATE(67)] = 5135, + [SMALL_STATE(68)] = 5188, + [SMALL_STATE(69)] = 5232, + [SMALL_STATE(70)] = 5308, + [SMALL_STATE(71)] = 5352, + [SMALL_STATE(72)] = 5396, + [SMALL_STATE(73)] = 5440, + [SMALL_STATE(74)] = 5484, + [SMALL_STATE(75)] = 5528, + [SMALL_STATE(76)] = 5572, + [SMALL_STATE(77)] = 5616, + [SMALL_STATE(78)] = 5660, + [SMALL_STATE(79)] = 5704, + [SMALL_STATE(80)] = 5748, + [SMALL_STATE(81)] = 5792, + [SMALL_STATE(82)] = 5853, + [SMALL_STATE(83)] = 5918, + [SMALL_STATE(84)] = 5985, + [SMALL_STATE(85)] = 6034, + [SMALL_STATE(86)] = 6103, + [SMALL_STATE(87)] = 6162, + [SMALL_STATE(88)] = 6213, + [SMALL_STATE(89)] = 6278, + [SMALL_STATE(90)] = 6329, + [SMALL_STATE(91)] = 6384, + [SMALL_STATE(92)] = 6424, + [SMALL_STATE(93)] = 6464, + [SMALL_STATE(94)] = 6512, + [SMALL_STATE(95)] = 6586, + [SMALL_STATE(96)] = 6628, + [SMALL_STATE(97)] = 6668, + [SMALL_STATE(98)] = 6721, + [SMALL_STATE(99)] = 6784, + [SMALL_STATE(100)] = 6833, + [SMALL_STATE(101)] = 6882, + [SMALL_STATE(102)] = 6955, + [SMALL_STATE(103)] = 7002, + [SMALL_STATE(104)] = 7061, + [SMALL_STATE(105)] = 7118, + [SMALL_STATE(106)] = 7199, + [SMALL_STATE(107)] = 7262, + [SMALL_STATE(108)] = 7343, + [SMALL_STATE(109)] = 7410, + [SMALL_STATE(110)] = 7478, + [SMALL_STATE(111)] = 7544, + [SMALL_STATE(112)] = 7612, + [SMALL_STATE(113)] = 7660, + [SMALL_STATE(114)] = 7706, + [SMALL_STATE(115)] = 7768, + [SMALL_STATE(116)] = 7832, + [SMALL_STATE(117)] = 7878, + [SMALL_STATE(118)] = 7926, + [SMALL_STATE(119)] = 7978, + [SMALL_STATE(120)] = 8018, + [SMALL_STATE(121)] = 8076, + [SMALL_STATE(122)] = 8132, + [SMALL_STATE(123)] = 8194, + [SMALL_STATE(124)] = 8251, + [SMALL_STATE(125)] = 8328, + [SMALL_STATE(126)] = 8367, + [SMALL_STATE(127)] = 8444, + [SMALL_STATE(128)] = 8507, + [SMALL_STATE(129)] = 8566, + [SMALL_STATE(130)] = 8621, + [SMALL_STATE(131)] = 8660, + [SMALL_STATE(132)] = 8723, + [SMALL_STATE(133)] = 8800, + [SMALL_STATE(134)] = 8877, + [SMALL_STATE(135)] = 8928, + [SMALL_STATE(136)] = 8967, + [SMALL_STATE(137)] = 9006, + [SMALL_STATE(138)] = 9083, + [SMALL_STATE(139)] = 9160, + [SMALL_STATE(140)] = 9237, + [SMALL_STATE(141)] = 9276, + [SMALL_STATE(142)] = 9323, + [SMALL_STATE(143)] = 9386, + [SMALL_STATE(144)] = 9425, + [SMALL_STATE(145)] = 9470, + [SMALL_STATE(146)] = 9509, + [SMALL_STATE(147)] = 9586, + [SMALL_STATE(148)] = 9625, + [SMALL_STATE(149)] = 9664, + [SMALL_STATE(150)] = 9703, + [SMALL_STATE(151)] = 9780, + [SMALL_STATE(152)] = 9819, + [SMALL_STATE(153)] = 9896, + [SMALL_STATE(154)] = 9935, + [SMALL_STATE(155)] = 9980, + [SMALL_STATE(156)] = 10039, + [SMALL_STATE(157)] = 10116, + [SMALL_STATE(158)] = 10163, + [SMALL_STATE(159)] = 10240, + [SMALL_STATE(160)] = 10314, + [SMALL_STATE(161)] = 10388, + [SMALL_STATE(162)] = 10462, + [SMALL_STATE(163)] = 10536, + [SMALL_STATE(164)] = 10610, + [SMALL_STATE(165)] = 10684, + [SMALL_STATE(166)] = 10728, + [SMALL_STATE(167)] = 10802, + [SMALL_STATE(168)] = 10839, + [SMALL_STATE(169)] = 10904, + [SMALL_STATE(170)] = 10975, + [SMALL_STATE(171)] = 11012, + [SMALL_STATE(172)] = 11049, + [SMALL_STATE(173)] = 11086, + [SMALL_STATE(174)] = 11123, + [SMALL_STATE(175)] = 11160, + [SMALL_STATE(176)] = 11197, + [SMALL_STATE(177)] = 11234, + [SMALL_STATE(178)] = 11271, + [SMALL_STATE(179)] = 11308, + [SMALL_STATE(180)] = 11345, + [SMALL_STATE(181)] = 11406, + [SMALL_STATE(182)] = 11474, + [SMALL_STATE(183)] = 11510, + [SMALL_STATE(184)] = 11546, + [SMALL_STATE(185)] = 11582, + [SMALL_STATE(186)] = 11618, + [SMALL_STATE(187)] = 11654, + [SMALL_STATE(188)] = 11690, + [SMALL_STATE(189)] = 11726, + [SMALL_STATE(190)] = 11794, + [SMALL_STATE(191)] = 11830, + [SMALL_STATE(192)] = 11866, + [SMALL_STATE(193)] = 11934, + [SMALL_STATE(194)] = 11970, + [SMALL_STATE(195)] = 12038, + [SMALL_STATE(196)] = 12074, + [SMALL_STATE(197)] = 12142, + [SMALL_STATE(198)] = 12210, + [SMALL_STATE(199)] = 12275, + [SMALL_STATE(200)] = 12340, + [SMALL_STATE(201)] = 12405, + [SMALL_STATE(202)] = 12470, + [SMALL_STATE(203)] = 12537, + [SMALL_STATE(204)] = 12602, + [SMALL_STATE(205)] = 12667, + [SMALL_STATE(206)] = 12732, + [SMALL_STATE(207)] = 12797, + [SMALL_STATE(208)] = 12862, + [SMALL_STATE(209)] = 12927, + [SMALL_STATE(210)] = 12992, + [SMALL_STATE(211)] = 13051, + [SMALL_STATE(212)] = 13110, + [SMALL_STATE(213)] = 13175, + [SMALL_STATE(214)] = 13240, + [SMALL_STATE(215)] = 13299, + [SMALL_STATE(216)] = 13364, + [SMALL_STATE(217)] = 13429, + [SMALL_STATE(218)] = 13494, + [SMALL_STATE(219)] = 13559, + [SMALL_STATE(220)] = 13624, + [SMALL_STATE(221)] = 13689, + [SMALL_STATE(222)] = 13751, + [SMALL_STATE(223)] = 13813, + [SMALL_STATE(224)] = 13875, + [SMALL_STATE(225)] = 13937, + [SMALL_STATE(226)] = 13999, + [SMALL_STATE(227)] = 14061, + [SMALL_STATE(228)] = 14123, + [SMALL_STATE(229)] = 14183, + [SMALL_STATE(230)] = 14245, + [SMALL_STATE(231)] = 14307, + [SMALL_STATE(232)] = 14369, + [SMALL_STATE(233)] = 14431, + [SMALL_STATE(234)] = 14493, + [SMALL_STATE(235)] = 14555, + [SMALL_STATE(236)] = 14617, + [SMALL_STATE(237)] = 14679, + [SMALL_STATE(238)] = 14735, + [SMALL_STATE(239)] = 14797, + [SMALL_STATE(240)] = 14847, + [SMALL_STATE(241)] = 14899, + [SMALL_STATE(242)] = 14945, + [SMALL_STATE(243)] = 15007, + [SMALL_STATE(244)] = 15049, + [SMALL_STATE(245)] = 15111, + [SMALL_STATE(246)] = 15167, + [SMALL_STATE(247)] = 15209, + [SMALL_STATE(248)] = 15271, + [SMALL_STATE(249)] = 15333, + [SMALL_STATE(250)] = 15395, + [SMALL_STATE(251)] = 15457, + [SMALL_STATE(252)] = 15519, + [SMALL_STATE(253)] = 15581, + [SMALL_STATE(254)] = 15643, + [SMALL_STATE(255)] = 15705, + [SMALL_STATE(256)] = 15767, + [SMALL_STATE(257)] = 15829, + [SMALL_STATE(258)] = 15891, + [SMALL_STATE(259)] = 15953, + [SMALL_STATE(260)] = 16015, + [SMALL_STATE(261)] = 16077, + [SMALL_STATE(262)] = 16139, + [SMALL_STATE(263)] = 16201, + [SMALL_STATE(264)] = 16263, + [SMALL_STATE(265)] = 16325, + [SMALL_STATE(266)] = 16387, + [SMALL_STATE(267)] = 16449, + [SMALL_STATE(268)] = 16511, + [SMALL_STATE(269)] = 16573, + [SMALL_STATE(270)] = 16635, + [SMALL_STATE(271)] = 16697, + [SMALL_STATE(272)] = 16759, + [SMALL_STATE(273)] = 16821, + [SMALL_STATE(274)] = 16883, + [SMALL_STATE(275)] = 16945, + [SMALL_STATE(276)] = 17007, + [SMALL_STATE(277)] = 17069, + [SMALL_STATE(278)] = 17131, + [SMALL_STATE(279)] = 17193, + [SMALL_STATE(280)] = 17255, + [SMALL_STATE(281)] = 17317, + [SMALL_STATE(282)] = 17379, + [SMALL_STATE(283)] = 17441, + [SMALL_STATE(284)] = 17503, + [SMALL_STATE(285)] = 17543, + [SMALL_STATE(286)] = 17605, + [SMALL_STATE(287)] = 17667, + [SMALL_STATE(288)] = 17729, + [SMALL_STATE(289)] = 17791, + [SMALL_STATE(290)] = 17853, + [SMALL_STATE(291)] = 17915, + [SMALL_STATE(292)] = 17977, + [SMALL_STATE(293)] = 18039, + [SMALL_STATE(294)] = 18101, + [SMALL_STATE(295)] = 18163, + [SMALL_STATE(296)] = 18225, + [SMALL_STATE(297)] = 18287, + [SMALL_STATE(298)] = 18349, + [SMALL_STATE(299)] = 18415, + [SMALL_STATE(300)] = 18477, + [SMALL_STATE(301)] = 18539, + [SMALL_STATE(302)] = 18601, + [SMALL_STATE(303)] = 18663, + [SMALL_STATE(304)] = 18725, + [SMALL_STATE(305)] = 18787, + [SMALL_STATE(306)] = 18849, + [SMALL_STATE(307)] = 18911, + [SMALL_STATE(308)] = 18973, + [SMALL_STATE(309)] = 19035, + [SMALL_STATE(310)] = 19097, + [SMALL_STATE(311)] = 19159, + [SMALL_STATE(312)] = 19221, + [SMALL_STATE(313)] = 19283, + [SMALL_STATE(314)] = 19345, + [SMALL_STATE(315)] = 19407, + [SMALL_STATE(316)] = 19469, + [SMALL_STATE(317)] = 19531, + [SMALL_STATE(318)] = 19593, + [SMALL_STATE(319)] = 19655, + [SMALL_STATE(320)] = 19717, + [SMALL_STATE(321)] = 19779, + [SMALL_STATE(322)] = 19841, + [SMALL_STATE(323)] = 19903, + [SMALL_STATE(324)] = 19965, + [SMALL_STATE(325)] = 20027, + [SMALL_STATE(326)] = 20085, + [SMALL_STATE(327)] = 20147, + [SMALL_STATE(328)] = 20209, + [SMALL_STATE(329)] = 20271, + [SMALL_STATE(330)] = 20333, + [SMALL_STATE(331)] = 20395, + [SMALL_STATE(332)] = 20457, + [SMALL_STATE(333)] = 20519, + [SMALL_STATE(334)] = 20581, + [SMALL_STATE(335)] = 20643, + [SMALL_STATE(336)] = 20705, + [SMALL_STATE(337)] = 20767, + [SMALL_STATE(338)] = 20806, + [SMALL_STATE(339)] = 20839, + [SMALL_STATE(340)] = 20902, + [SMALL_STATE(341)] = 20956, + [SMALL_STATE(342)] = 20996, + [SMALL_STATE(343)] = 21040, + [SMALL_STATE(344)] = 21100, + [SMALL_STATE(345)] = 21156, + [SMALL_STATE(346)] = 21206, + [SMALL_STATE(347)] = 21262, + [SMALL_STATE(348)] = 21300, + [SMALL_STATE(349)] = 21348, + [SMALL_STATE(350)] = 21416, + [SMALL_STATE(351)] = 21484, + [SMALL_STATE(352)] = 21538, + [SMALL_STATE(353)] = 21596, + [SMALL_STATE(354)] = 21664, + [SMALL_STATE(355)] = 21704, + [SMALL_STATE(356)] = 21772, + [SMALL_STATE(357)] = 21811, + [SMALL_STATE(358)] = 21870, + [SMALL_STATE(359)] = 21929, + [SMALL_STATE(360)] = 21988, + [SMALL_STATE(361)] = 22047, + [SMALL_STATE(362)] = 22106, + [SMALL_STATE(363)] = 22165, + [SMALL_STATE(364)] = 22224, + [SMALL_STATE(365)] = 22283, + [SMALL_STATE(366)] = 22342, + [SMALL_STATE(367)] = 22379, + [SMALL_STATE(368)] = 22438, + [SMALL_STATE(369)] = 22497, + [SMALL_STATE(370)] = 22530, + [SMALL_STATE(371)] = 22589, + [SMALL_STATE(372)] = 22648, + [SMALL_STATE(373)] = 22681, + [SMALL_STATE(374)] = 22712, + [SMALL_STATE(375)] = 22771, + [SMALL_STATE(376)] = 22830, + [SMALL_STATE(377)] = 22860, + [SMALL_STATE(378)] = 22922, + [SMALL_STATE(379)] = 22990, + [SMALL_STATE(380)] = 23044, + [SMALL_STATE(381)] = 23086, + [SMALL_STATE(382)] = 23128, + [SMALL_STATE(383)] = 23158, + [SMALL_STATE(384)] = 23214, + [SMALL_STATE(385)] = 23268, + [SMALL_STATE(386)] = 23300, + [SMALL_STATE(387)] = 23368, + [SMALL_STATE(388)] = 23430, + [SMALL_STATE(389)] = 23462, + [SMALL_STATE(390)] = 23492, + [SMALL_STATE(391)] = 23554, + [SMALL_STATE(392)] = 23584, + [SMALL_STATE(393)] = 23638, + [SMALL_STATE(394)] = 23668, + [SMALL_STATE(395)] = 23736, + [SMALL_STATE(396)] = 23798, + [SMALL_STATE(397)] = 23854, + [SMALL_STATE(398)] = 23922, + [SMALL_STATE(399)] = 23958, + [SMALL_STATE(400)] = 23988, + [SMALL_STATE(401)] = 24018, + [SMALL_STATE(402)] = 24048, + [SMALL_STATE(403)] = 24078, + [SMALL_STATE(404)] = 24120, + [SMALL_STATE(405)] = 24150, + [SMALL_STATE(406)] = 24206, + [SMALL_STATE(407)] = 24236, + [SMALL_STATE(408)] = 24266, + [SMALL_STATE(409)] = 24293, + [SMALL_STATE(410)] = 24346, + [SMALL_STATE(411)] = 24399, + [SMALL_STATE(412)] = 24452, + [SMALL_STATE(413)] = 24505, + [SMALL_STATE(414)] = 24558, + [SMALL_STATE(415)] = 24591, + [SMALL_STATE(416)] = 24644, + [SMALL_STATE(417)] = 24697, + [SMALL_STATE(418)] = 24724, + [SMALL_STATE(419)] = 24777, + [SMALL_STATE(420)] = 24804, + [SMALL_STATE(421)] = 24831, + [SMALL_STATE(422)] = 24884, + [SMALL_STATE(423)] = 24937, + [SMALL_STATE(424)] = 24964, + [SMALL_STATE(425)] = 25031, + [SMALL_STATE(426)] = 25084, + [SMALL_STATE(427)] = 25137, + [SMALL_STATE(428)] = 25190, + [SMALL_STATE(429)] = 25243, + [SMALL_STATE(430)] = 25296, + [SMALL_STATE(431)] = 25349, + [SMALL_STATE(432)] = 25416, + [SMALL_STATE(433)] = 25469, + [SMALL_STATE(434)] = 25536, + [SMALL_STATE(435)] = 25589, + [SMALL_STATE(436)] = 25626, + [SMALL_STATE(437)] = 25679, + [SMALL_STATE(438)] = 25732, + [SMALL_STATE(439)] = 25785, + [SMALL_STATE(440)] = 25838, + [SMALL_STATE(441)] = 25867, + [SMALL_STATE(442)] = 25896, + [SMALL_STATE(443)] = 25963, + [SMALL_STATE(444)] = 25992, + [SMALL_STATE(445)] = 26045, + [SMALL_STATE(446)] = 26072, + [SMALL_STATE(447)] = 26125, + [SMALL_STATE(448)] = 26152, + [SMALL_STATE(449)] = 26179, + [SMALL_STATE(450)] = 26232, + [SMALL_STATE(451)] = 26260, + [SMALL_STATE(452)] = 26288, + [SMALL_STATE(453)] = 26350, + [SMALL_STATE(454)] = 26412, + [SMALL_STATE(455)] = 26468, + [SMALL_STATE(456)] = 26524, + [SMALL_STATE(457)] = 26552, + [SMALL_STATE(458)] = 26580, + [SMALL_STATE(459)] = 26608, + [SMALL_STATE(460)] = 26648, + [SMALL_STATE(461)] = 26688, + [SMALL_STATE(462)] = 26744, + [SMALL_STATE(463)] = 26772, + [SMALL_STATE(464)] = 26800, + [SMALL_STATE(465)] = 26828, + [SMALL_STATE(466)] = 26856, + [SMALL_STATE(467)] = 26918, + [SMALL_STATE(468)] = 26948, + [SMALL_STATE(469)] = 26976, + [SMALL_STATE(470)] = 27032, + [SMALL_STATE(471)] = 27060, + [SMALL_STATE(472)] = 27096, + [SMALL_STATE(473)] = 27126, + [SMALL_STATE(474)] = 27154, + [SMALL_STATE(475)] = 27194, + [SMALL_STATE(476)] = 27250, + [SMALL_STATE(477)] = 27284, + [SMALL_STATE(478)] = 27312, + [SMALL_STATE(479)] = 27374, + [SMALL_STATE(480)] = 27435, + [SMALL_STATE(481)] = 27480, + [SMALL_STATE(482)] = 27537, + [SMALL_STATE(483)] = 27566, + [SMALL_STATE(484)] = 27611, + [SMALL_STATE(485)] = 27656, + [SMALL_STATE(486)] = 27713, + [SMALL_STATE(487)] = 27770, + [SMALL_STATE(488)] = 27797, + [SMALL_STATE(489)] = 27842, + [SMALL_STATE(490)] = 27869, + [SMALL_STATE(491)] = 27896, + [SMALL_STATE(492)] = 27953, + [SMALL_STATE(493)] = 27984, + [SMALL_STATE(494)] = 28011, + [SMALL_STATE(495)] = 28072, + [SMALL_STATE(496)] = 28117, + [SMALL_STATE(497)] = 28178, + [SMALL_STATE(498)] = 28217, + [SMALL_STATE(499)] = 28250, + [SMALL_STATE(500)] = 28311, + [SMALL_STATE(501)] = 28368, + [SMALL_STATE(502)] = 28407, + [SMALL_STATE(503)] = 28452, + [SMALL_STATE(504)] = 28481, + [SMALL_STATE(505)] = 28526, + [SMALL_STATE(506)] = 28565, + [SMALL_STATE(507)] = 28595, + [SMALL_STATE(508)] = 28621, + [SMALL_STATE(509)] = 28647, + [SMALL_STATE(510)] = 28675, + [SMALL_STATE(511)] = 28701, + [SMALL_STATE(512)] = 28748, + [SMALL_STATE(513)] = 28795, + [SMALL_STATE(514)] = 28842, + [SMALL_STATE(515)] = 28871, + [SMALL_STATE(516)] = 28918, + [SMALL_STATE(517)] = 28943, + [SMALL_STATE(518)] = 28974, + [SMALL_STATE(519)] = 29021, + [SMALL_STATE(520)] = 29068, + [SMALL_STATE(521)] = 29101, + [SMALL_STATE(522)] = 29123, + [SMALL_STATE(523)] = 29149, + [SMALL_STATE(524)] = 29179, + [SMALL_STATE(525)] = 29227, + [SMALL_STATE(526)] = 29275, + [SMALL_STATE(527)] = 29299, + [SMALL_STATE(528)] = 29347, + [SMALL_STATE(529)] = 29373, + [SMALL_STATE(530)] = 29421, + [SMALL_STATE(531)] = 29469, + [SMALL_STATE(532)] = 29491, + [SMALL_STATE(533)] = 29513, + [SMALL_STATE(534)] = 29535, + [SMALL_STATE(535)] = 29571, + [SMALL_STATE(536)] = 29619, + [SMALL_STATE(537)] = 29655, + [SMALL_STATE(538)] = 29691, + [SMALL_STATE(539)] = 29713, + [SMALL_STATE(540)] = 29762, + [SMALL_STATE(541)] = 29787, + [SMALL_STATE(542)] = 29812, + [SMALL_STATE(543)] = 29853, + [SMALL_STATE(544)] = 29878, + [SMALL_STATE(545)] = 29919, + [SMALL_STATE(546)] = 29942, + [SMALL_STATE(547)] = 29983, + [SMALL_STATE(548)] = 30008, + [SMALL_STATE(549)] = 30049, + [SMALL_STATE(550)] = 30090, + [SMALL_STATE(551)] = 30113, + [SMALL_STATE(552)] = 30136, + [SMALL_STATE(553)] = 30177, + [SMALL_STATE(554)] = 30202, + [SMALL_STATE(555)] = 30229, + [SMALL_STATE(556)] = 30270, + [SMALL_STATE(557)] = 30297, + [SMALL_STATE(558)] = 30322, + [SMALL_STATE(559)] = 30347, + [SMALL_STATE(560)] = 30372, + [SMALL_STATE(561)] = 30413, + [SMALL_STATE(562)] = 30438, + [SMALL_STATE(563)] = 30463, + [SMALL_STATE(564)] = 30504, + [SMALL_STATE(565)] = 30529, + [SMALL_STATE(566)] = 30550, + [SMALL_STATE(567)] = 30591, + [SMALL_STATE(568)] = 30633, + [SMALL_STATE(569)] = 30653, + [SMALL_STATE(570)] = 30695, + [SMALL_STATE(571)] = 30737, + [SMALL_STATE(572)] = 30779, + [SMALL_STATE(573)] = 30821, + [SMALL_STATE(574)] = 30845, + [SMALL_STATE(575)] = 30887, + [SMALL_STATE(576)] = 30907, + [SMALL_STATE(577)] = 30949, + [SMALL_STATE(578)] = 30969, + [SMALL_STATE(579)] = 30989, + [SMALL_STATE(580)] = 31024, + [SMALL_STATE(581)] = 31045, + [SMALL_STATE(582)] = 31080, + [SMALL_STATE(583)] = 31115, + [SMALL_STATE(584)] = 31140, + [SMALL_STATE(585)] = 31175, + [SMALL_STATE(586)] = 31194, + [SMALL_STATE(587)] = 31213, + [SMALL_STATE(588)] = 31248, + [SMALL_STATE(589)] = 31283, + [SMALL_STATE(590)] = 31302, + [SMALL_STATE(591)] = 31325, + [SMALL_STATE(592)] = 31360, + [SMALL_STATE(593)] = 31383, + [SMALL_STATE(594)] = 31406, + [SMALL_STATE(595)] = 31433, + [SMALL_STATE(596)] = 31474, + [SMALL_STATE(597)] = 31509, + [SMALL_STATE(598)] = 31528, + [SMALL_STATE(599)] = 31551, + [SMALL_STATE(600)] = 31574, + [SMALL_STATE(601)] = 31593, + [SMALL_STATE(602)] = 31629, + [SMALL_STATE(603)] = 31667, + [SMALL_STATE(604)] = 31685, + [SMALL_STATE(605)] = 31705, + [SMALL_STATE(606)] = 31743, + [SMALL_STATE(607)] = 31779, + [SMALL_STATE(608)] = 31815, + [SMALL_STATE(609)] = 31839, + [SMALL_STATE(610)] = 31875, + [SMALL_STATE(611)] = 31911, + [SMALL_STATE(612)] = 31935, + [SMALL_STATE(613)] = 31955, + [SMALL_STATE(614)] = 31975, + [SMALL_STATE(615)] = 31995, + [SMALL_STATE(616)] = 32031, + [SMALL_STATE(617)] = 32069, + [SMALL_STATE(618)] = 32105, + [SMALL_STATE(619)] = 32127, + [SMALL_STATE(620)] = 32159, + [SMALL_STATE(621)] = 32197, + [SMALL_STATE(622)] = 32215, + [SMALL_STATE(623)] = 32247, + [SMALL_STATE(624)] = 32283, + [SMALL_STATE(625)] = 32305, + [SMALL_STATE(626)] = 32327, + [SMALL_STATE(627)] = 32349, + [SMALL_STATE(628)] = 32369, + [SMALL_STATE(629)] = 32389, + [SMALL_STATE(630)] = 32411, + [SMALL_STATE(631)] = 32443, + [SMALL_STATE(632)] = 32481, + [SMALL_STATE(633)] = 32501, + [SMALL_STATE(634)] = 32539, + [SMALL_STATE(635)] = 32557, + [SMALL_STATE(636)] = 32577, + [SMALL_STATE(637)] = 32597, + [SMALL_STATE(638)] = 32632, + [SMALL_STATE(639)] = 32669, + [SMALL_STATE(640)] = 32704, + [SMALL_STATE(641)] = 32723, + [SMALL_STATE(642)] = 32752, + [SMALL_STATE(643)] = 32769, + [SMALL_STATE(644)] = 32786, + [SMALL_STATE(645)] = 32803, + [SMALL_STATE(646)] = 32832, + [SMALL_STATE(647)] = 32853, + [SMALL_STATE(648)] = 32874, + [SMALL_STATE(649)] = 32905, + [SMALL_STATE(650)] = 32934, + [SMALL_STATE(651)] = 32951, + [SMALL_STATE(652)] = 32980, + [SMALL_STATE(653)] = 33009, + [SMALL_STATE(654)] = 33038, + [SMALL_STATE(655)] = 33055, + [SMALL_STATE(656)] = 33072, + [SMALL_STATE(657)] = 33101, + [SMALL_STATE(658)] = 33132, + [SMALL_STATE(659)] = 33169, + [SMALL_STATE(660)] = 33190, + [SMALL_STATE(661)] = 33207, + [SMALL_STATE(662)] = 33236, + [SMALL_STATE(663)] = 33267, + [SMALL_STATE(664)] = 33296, + [SMALL_STATE(665)] = 33317, + [SMALL_STATE(666)] = 33334, + [SMALL_STATE(667)] = 33365, + [SMALL_STATE(668)] = 33400, + [SMALL_STATE(669)] = 33421, + [SMALL_STATE(670)] = 33437, + [SMALL_STATE(671)] = 33467, + [SMALL_STATE(672)] = 33483, + [SMALL_STATE(673)] = 33499, + [SMALL_STATE(674)] = 33525, + [SMALL_STATE(675)] = 33555, + [SMALL_STATE(676)] = 33571, + [SMALL_STATE(677)] = 33587, + [SMALL_STATE(678)] = 33603, + [SMALL_STATE(679)] = 33623, + [SMALL_STATE(680)] = 33643, + [SMALL_STATE(681)] = 33673, + [SMALL_STATE(682)] = 33693, + [SMALL_STATE(683)] = 33723, + [SMALL_STATE(684)] = 33753, + [SMALL_STATE(685)] = 33769, + [SMALL_STATE(686)] = 33785, + [SMALL_STATE(687)] = 33801, + [SMALL_STATE(688)] = 33831, + [SMALL_STATE(689)] = 33851, + [SMALL_STATE(690)] = 33881, + [SMALL_STATE(691)] = 33901, + [SMALL_STATE(692)] = 33921, + [SMALL_STATE(693)] = 33951, + [SMALL_STATE(694)] = 33971, + [SMALL_STATE(695)] = 34001, + [SMALL_STATE(696)] = 34017, + [SMALL_STATE(697)] = 34033, + [SMALL_STATE(698)] = 34058, + [SMALL_STATE(699)] = 34083, + [SMALL_STATE(700)] = 34102, + [SMALL_STATE(701)] = 34133, + [SMALL_STATE(702)] = 34148, + [SMALL_STATE(703)] = 34163, + [SMALL_STATE(704)] = 34178, + [SMALL_STATE(705)] = 34207, + [SMALL_STATE(706)] = 34226, + [SMALL_STATE(707)] = 34251, + [SMALL_STATE(708)] = 34270, + [SMALL_STATE(709)] = 34299, + [SMALL_STATE(710)] = 34318, + [SMALL_STATE(711)] = 34347, + [SMALL_STATE(712)] = 34378, + [SMALL_STATE(713)] = 34407, + [SMALL_STATE(714)] = 34425, + [SMALL_STATE(715)] = 34449, + [SMALL_STATE(716)] = 34473, + [SMALL_STATE(717)] = 34497, + [SMALL_STATE(718)] = 34515, + [SMALL_STATE(719)] = 34539, + [SMALL_STATE(720)] = 34563, + [SMALL_STATE(721)] = 34587, + [SMALL_STATE(722)] = 34609, + [SMALL_STATE(723)] = 34633, + [SMALL_STATE(724)] = 34659, + [SMALL_STATE(725)] = 34683, + [SMALL_STATE(726)] = 34707, + [SMALL_STATE(727)] = 34731, + [SMALL_STATE(728)] = 34757, + [SMALL_STATE(729)] = 34781, + [SMALL_STATE(730)] = 34807, + [SMALL_STATE(731)] = 34831, + [SMALL_STATE(732)] = 34857, + [SMALL_STATE(733)] = 34881, + [SMALL_STATE(734)] = 34903, + [SMALL_STATE(735)] = 34929, + [SMALL_STATE(736)] = 34953, + [SMALL_STATE(737)] = 34977, + [SMALL_STATE(738)] = 35003, + [SMALL_STATE(739)] = 35018, + [SMALL_STATE(740)] = 35041, + [SMALL_STATE(741)] = 35066, + [SMALL_STATE(742)] = 35079, + [SMALL_STATE(743)] = 35100, + [SMALL_STATE(744)] = 35121, + [SMALL_STATE(745)] = 35146, + [SMALL_STATE(746)] = 35169, + [SMALL_STATE(747)] = 35190, + [SMALL_STATE(748)] = 35213, + [SMALL_STATE(749)] = 35238, + [SMALL_STATE(750)] = 35259, + [SMALL_STATE(751)] = 35280, + [SMALL_STATE(752)] = 35293, + [SMALL_STATE(753)] = 35310, + [SMALL_STATE(754)] = 35333, + [SMALL_STATE(755)] = 35350, + [SMALL_STATE(756)] = 35367, + [SMALL_STATE(757)] = 35388, + [SMALL_STATE(758)] = 35405, + [SMALL_STATE(759)] = 35425, + [SMALL_STATE(760)] = 35439, + [SMALL_STATE(761)] = 35451, + [SMALL_STATE(762)] = 35463, + [SMALL_STATE(763)] = 35483, + [SMALL_STATE(764)] = 35501, + [SMALL_STATE(765)] = 35521, + [SMALL_STATE(766)] = 35543, + [SMALL_STATE(767)] = 35565, + [SMALL_STATE(768)] = 35585, + [SMALL_STATE(769)] = 35597, + [SMALL_STATE(770)] = 35617, + [SMALL_STATE(771)] = 35635, + [SMALL_STATE(772)] = 35653, + [SMALL_STATE(773)] = 35665, + [SMALL_STATE(774)] = 35683, + [SMALL_STATE(775)] = 35703, + [SMALL_STATE(776)] = 35721, + [SMALL_STATE(777)] = 35741, + [SMALL_STATE(778)] = 35753, + [SMALL_STATE(779)] = 35773, + [SMALL_STATE(780)] = 35785, + [SMALL_STATE(781)] = 35805, + [SMALL_STATE(782)] = 35819, + [SMALL_STATE(783)] = 35833, + [SMALL_STATE(784)] = 35845, + [SMALL_STATE(785)] = 35857, + [SMALL_STATE(786)] = 35869, + [SMALL_STATE(787)] = 35889, + [SMALL_STATE(788)] = 35909, + [SMALL_STATE(789)] = 35929, + [SMALL_STATE(790)] = 35941, + [SMALL_STATE(791)] = 35959, + [SMALL_STATE(792)] = 35979, + [SMALL_STATE(793)] = 35991, + [SMALL_STATE(794)] = 36005, + [SMALL_STATE(795)] = 36025, + [SMALL_STATE(796)] = 36039, + [SMALL_STATE(797)] = 36059, + [SMALL_STATE(798)] = 36081, + [SMALL_STATE(799)] = 36101, + [SMALL_STATE(800)] = 36119, + [SMALL_STATE(801)] = 36139, + [SMALL_STATE(802)] = 36153, + [SMALL_STATE(803)] = 36173, + [SMALL_STATE(804)] = 36185, + [SMALL_STATE(805)] = 36205, + [SMALL_STATE(806)] = 36219, + [SMALL_STATE(807)] = 36231, + [SMALL_STATE(808)] = 36251, + [SMALL_STATE(809)] = 36265, + [SMALL_STATE(810)] = 36277, + [SMALL_STATE(811)] = 36297, + [SMALL_STATE(812)] = 36311, + [SMALL_STATE(813)] = 36323, + [SMALL_STATE(814)] = 36343, + [SMALL_STATE(815)] = 36361, + [SMALL_STATE(816)] = 36373, + [SMALL_STATE(817)] = 36387, + [SMALL_STATE(818)] = 36399, + [SMALL_STATE(819)] = 36414, + [SMALL_STATE(820)] = 36429, + [SMALL_STATE(821)] = 36444, + [SMALL_STATE(822)] = 36459, + [SMALL_STATE(823)] = 36474, + [SMALL_STATE(824)] = 36489, + [SMALL_STATE(825)] = 36508, + [SMALL_STATE(826)] = 36519, + [SMALL_STATE(827)] = 36538, + [SMALL_STATE(828)] = 36553, + [SMALL_STATE(829)] = 36570, + [SMALL_STATE(830)] = 36583, + [SMALL_STATE(831)] = 36602, + [SMALL_STATE(832)] = 36613, + [SMALL_STATE(833)] = 36630, + [SMALL_STATE(834)] = 36645, + [SMALL_STATE(835)] = 36662, + [SMALL_STATE(836)] = 36677, + [SMALL_STATE(837)] = 36694, + [SMALL_STATE(838)] = 36713, + [SMALL_STATE(839)] = 36730, + [SMALL_STATE(840)] = 36747, + [SMALL_STATE(841)] = 36762, + [SMALL_STATE(842)] = 36781, + [SMALL_STATE(843)] = 36798, + [SMALL_STATE(844)] = 36809, + [SMALL_STATE(845)] = 36824, + [SMALL_STATE(846)] = 36839, + [SMALL_STATE(847)] = 36858, + [SMALL_STATE(848)] = 36877, + [SMALL_STATE(849)] = 36892, + [SMALL_STATE(850)] = 36911, + [SMALL_STATE(851)] = 36930, + [SMALL_STATE(852)] = 36949, + [SMALL_STATE(853)] = 36962, + [SMALL_STATE(854)] = 36977, + [SMALL_STATE(855)] = 36994, + [SMALL_STATE(856)] = 37011, + [SMALL_STATE(857)] = 37026, + [SMALL_STATE(858)] = 37041, + [SMALL_STATE(859)] = 37056, + [SMALL_STATE(860)] = 37073, + [SMALL_STATE(861)] = 37084, + [SMALL_STATE(862)] = 37099, + [SMALL_STATE(863)] = 37116, + [SMALL_STATE(864)] = 37131, + [SMALL_STATE(865)] = 37142, + [SMALL_STATE(866)] = 37159, + [SMALL_STATE(867)] = 37174, + [SMALL_STATE(868)] = 37193, + [SMALL_STATE(869)] = 37208, + [SMALL_STATE(870)] = 37227, + [SMALL_STATE(871)] = 37242, + [SMALL_STATE(872)] = 37261, + [SMALL_STATE(873)] = 37280, + [SMALL_STATE(874)] = 37295, + [SMALL_STATE(875)] = 37314, + [SMALL_STATE(876)] = 37333, + [SMALL_STATE(877)] = 37350, + [SMALL_STATE(878)] = 37361, + [SMALL_STATE(879)] = 37376, + [SMALL_STATE(880)] = 37395, + [SMALL_STATE(881)] = 37412, + [SMALL_STATE(882)] = 37429, + [SMALL_STATE(883)] = 37446, + [SMALL_STATE(884)] = 37456, + [SMALL_STATE(885)] = 37472, + [SMALL_STATE(886)] = 37488, + [SMALL_STATE(887)] = 37498, + [SMALL_STATE(888)] = 37512, + [SMALL_STATE(889)] = 37528, + [SMALL_STATE(890)] = 37544, + [SMALL_STATE(891)] = 37560, + [SMALL_STATE(892)] = 37576, + [SMALL_STATE(893)] = 37592, + [SMALL_STATE(894)] = 37608, + [SMALL_STATE(895)] = 37622, + [SMALL_STATE(896)] = 37638, + [SMALL_STATE(897)] = 37652, + [SMALL_STATE(898)] = 37666, + [SMALL_STATE(899)] = 37676, + [SMALL_STATE(900)] = 37690, + [SMALL_STATE(901)] = 37706, + [SMALL_STATE(902)] = 37720, + [SMALL_STATE(903)] = 37730, + [SMALL_STATE(904)] = 37744, + [SMALL_STATE(905)] = 37760, + [SMALL_STATE(906)] = 37770, + [SMALL_STATE(907)] = 37784, + [SMALL_STATE(908)] = 37800, + [SMALL_STATE(909)] = 37816, + [SMALL_STATE(910)] = 37826, + [SMALL_STATE(911)] = 37840, + [SMALL_STATE(912)] = 37856, + [SMALL_STATE(913)] = 37866, + [SMALL_STATE(914)] = 37876, + [SMALL_STATE(915)] = 37888, + [SMALL_STATE(916)] = 37902, + [SMALL_STATE(917)] = 37918, + [SMALL_STATE(918)] = 37932, + [SMALL_STATE(919)] = 37942, + [SMALL_STATE(920)] = 37956, + [SMALL_STATE(921)] = 37970, + [SMALL_STATE(922)] = 37984, + [SMALL_STATE(923)] = 38000, + [SMALL_STATE(924)] = 38014, + [SMALL_STATE(925)] = 38030, + [SMALL_STATE(926)] = 38040, + [SMALL_STATE(927)] = 38056, + [SMALL_STATE(928)] = 38072, + [SMALL_STATE(929)] = 38086, + [SMALL_STATE(930)] = 38098, + [SMALL_STATE(931)] = 38112, + [SMALL_STATE(932)] = 38122, + [SMALL_STATE(933)] = 38138, + [SMALL_STATE(934)] = 38152, + [SMALL_STATE(935)] = 38168, + [SMALL_STATE(936)] = 38182, + [SMALL_STATE(937)] = 38196, + [SMALL_STATE(938)] = 38206, + [SMALL_STATE(939)] = 38222, + [SMALL_STATE(940)] = 38236, + [SMALL_STATE(941)] = 38250, + [SMALL_STATE(942)] = 38264, + [SMALL_STATE(943)] = 38278, + [SMALL_STATE(944)] = 38292, + [SMALL_STATE(945)] = 38302, + [SMALL_STATE(946)] = 38316, + [SMALL_STATE(947)] = 38332, + [SMALL_STATE(948)] = 38346, + [SMALL_STATE(949)] = 38356, + [SMALL_STATE(950)] = 38370, + [SMALL_STATE(951)] = 38384, + [SMALL_STATE(952)] = 38398, + [SMALL_STATE(953)] = 38414, + [SMALL_STATE(954)] = 38430, + [SMALL_STATE(955)] = 38440, + [SMALL_STATE(956)] = 38456, + [SMALL_STATE(957)] = 38470, + [SMALL_STATE(958)] = 38486, + [SMALL_STATE(959)] = 38500, + [SMALL_STATE(960)] = 38509, + [SMALL_STATE(961)] = 38522, + [SMALL_STATE(962)] = 38535, + [SMALL_STATE(963)] = 38548, + [SMALL_STATE(964)] = 38561, + [SMALL_STATE(965)] = 38574, + [SMALL_STATE(966)] = 38585, + [SMALL_STATE(967)] = 38598, + [SMALL_STATE(968)] = 38611, + [SMALL_STATE(969)] = 38624, + [SMALL_STATE(970)] = 38637, + [SMALL_STATE(971)] = 38646, + [SMALL_STATE(972)] = 38659, + [SMALL_STATE(973)] = 38672, + [SMALL_STATE(974)] = 38685, + [SMALL_STATE(975)] = 38698, + [SMALL_STATE(976)] = 38711, + [SMALL_STATE(977)] = 38724, + [SMALL_STATE(978)] = 38737, + [SMALL_STATE(979)] = 38750, + [SMALL_STATE(980)] = 38763, + [SMALL_STATE(981)] = 38776, + [SMALL_STATE(982)] = 38789, + [SMALL_STATE(983)] = 38802, + [SMALL_STATE(984)] = 38815, + [SMALL_STATE(985)] = 38826, + [SMALL_STATE(986)] = 38839, + [SMALL_STATE(987)] = 38852, + [SMALL_STATE(988)] = 38865, + [SMALL_STATE(989)] = 38878, + [SMALL_STATE(990)] = 38891, + [SMALL_STATE(991)] = 38904, + [SMALL_STATE(992)] = 38917, + [SMALL_STATE(993)] = 38930, + [SMALL_STATE(994)] = 38943, + [SMALL_STATE(995)] = 38956, + [SMALL_STATE(996)] = 38969, + [SMALL_STATE(997)] = 38982, + [SMALL_STATE(998)] = 38995, + [SMALL_STATE(999)] = 39008, + [SMALL_STATE(1000)] = 39021, + [SMALL_STATE(1001)] = 39034, + [SMALL_STATE(1002)] = 39043, + [SMALL_STATE(1003)] = 39056, + [SMALL_STATE(1004)] = 39069, + [SMALL_STATE(1005)] = 39082, + [SMALL_STATE(1006)] = 39095, + [SMALL_STATE(1007)] = 39108, + [SMALL_STATE(1008)] = 39121, + [SMALL_STATE(1009)] = 39134, + [SMALL_STATE(1010)] = 39147, + [SMALL_STATE(1011)] = 39160, + [SMALL_STATE(1012)] = 39173, + [SMALL_STATE(1013)] = 39186, + [SMALL_STATE(1014)] = 39199, + [SMALL_STATE(1015)] = 39212, + [SMALL_STATE(1016)] = 39225, + [SMALL_STATE(1017)] = 39238, + [SMALL_STATE(1018)] = 39251, + [SMALL_STATE(1019)] = 39260, + [SMALL_STATE(1020)] = 39273, + [SMALL_STATE(1021)] = 39286, + [SMALL_STATE(1022)] = 39299, + [SMALL_STATE(1023)] = 39312, + [SMALL_STATE(1024)] = 39325, + [SMALL_STATE(1025)] = 39338, + [SMALL_STATE(1026)] = 39351, + [SMALL_STATE(1027)] = 39360, + [SMALL_STATE(1028)] = 39373, + [SMALL_STATE(1029)] = 39386, + [SMALL_STATE(1030)] = 39399, + [SMALL_STATE(1031)] = 39412, + [SMALL_STATE(1032)] = 39425, + [SMALL_STATE(1033)] = 39438, + [SMALL_STATE(1034)] = 39451, + [SMALL_STATE(1035)] = 39464, + [SMALL_STATE(1036)] = 39477, + [SMALL_STATE(1037)] = 39490, + [SMALL_STATE(1038)] = 39501, + [SMALL_STATE(1039)] = 39514, + [SMALL_STATE(1040)] = 39523, + [SMALL_STATE(1041)] = 39536, + [SMALL_STATE(1042)] = 39549, + [SMALL_STATE(1043)] = 39562, + [SMALL_STATE(1044)] = 39575, + [SMALL_STATE(1045)] = 39588, + [SMALL_STATE(1046)] = 39601, + [SMALL_STATE(1047)] = 39614, + [SMALL_STATE(1048)] = 39627, + [SMALL_STATE(1049)] = 39640, + [SMALL_STATE(1050)] = 39653, + [SMALL_STATE(1051)] = 39666, + [SMALL_STATE(1052)] = 39679, + [SMALL_STATE(1053)] = 39692, + [SMALL_STATE(1054)] = 39705, + [SMALL_STATE(1055)] = 39718, + [SMALL_STATE(1056)] = 39731, + [SMALL_STATE(1057)] = 39744, + [SMALL_STATE(1058)] = 39757, + [SMALL_STATE(1059)] = 39770, + [SMALL_STATE(1060)] = 39779, + [SMALL_STATE(1061)] = 39792, + [SMALL_STATE(1062)] = 39805, + [SMALL_STATE(1063)] = 39818, + [SMALL_STATE(1064)] = 39831, + [SMALL_STATE(1065)] = 39844, + [SMALL_STATE(1066)] = 39857, + [SMALL_STATE(1067)] = 39870, + [SMALL_STATE(1068)] = 39883, + [SMALL_STATE(1069)] = 39896, + [SMALL_STATE(1070)] = 39909, + [SMALL_STATE(1071)] = 39922, + [SMALL_STATE(1072)] = 39935, + [SMALL_STATE(1073)] = 39948, + [SMALL_STATE(1074)] = 39961, + [SMALL_STATE(1075)] = 39974, + [SMALL_STATE(1076)] = 39987, + [SMALL_STATE(1077)] = 40000, + [SMALL_STATE(1078)] = 40013, + [SMALL_STATE(1079)] = 40026, + [SMALL_STATE(1080)] = 40039, + [SMALL_STATE(1081)] = 40052, + [SMALL_STATE(1082)] = 40065, + [SMALL_STATE(1083)] = 40078, + [SMALL_STATE(1084)] = 40091, + [SMALL_STATE(1085)] = 40104, + [SMALL_STATE(1086)] = 40117, + [SMALL_STATE(1087)] = 40130, + [SMALL_STATE(1088)] = 40143, + [SMALL_STATE(1089)] = 40156, + [SMALL_STATE(1090)] = 40169, + [SMALL_STATE(1091)] = 40182, + [SMALL_STATE(1092)] = 40195, + [SMALL_STATE(1093)] = 40208, + [SMALL_STATE(1094)] = 40221, + [SMALL_STATE(1095)] = 40234, + [SMALL_STATE(1096)] = 40247, + [SMALL_STATE(1097)] = 40260, + [SMALL_STATE(1098)] = 40273, + [SMALL_STATE(1099)] = 40286, + [SMALL_STATE(1100)] = 40299, + [SMALL_STATE(1101)] = 40308, + [SMALL_STATE(1102)] = 40321, + [SMALL_STATE(1103)] = 40329, + [SMALL_STATE(1104)] = 40339, + [SMALL_STATE(1105)] = 40347, + [SMALL_STATE(1106)] = 40355, + [SMALL_STATE(1107)] = 40363, + [SMALL_STATE(1108)] = 40373, + [SMALL_STATE(1109)] = 40381, + [SMALL_STATE(1110)] = 40389, + [SMALL_STATE(1111)] = 40397, + [SMALL_STATE(1112)] = 40405, + [SMALL_STATE(1113)] = 40415, + [SMALL_STATE(1114)] = 40425, + [SMALL_STATE(1115)] = 40435, + [SMALL_STATE(1116)] = 40443, + [SMALL_STATE(1117)] = 40451, + [SMALL_STATE(1118)] = 40459, + [SMALL_STATE(1119)] = 40467, + [SMALL_STATE(1120)] = 40475, + [SMALL_STATE(1121)] = 40483, + [SMALL_STATE(1122)] = 40491, + [SMALL_STATE(1123)] = 40501, + [SMALL_STATE(1124)] = 40509, + [SMALL_STATE(1125)] = 40519, + [SMALL_STATE(1126)] = 40527, + [SMALL_STATE(1127)] = 40537, + [SMALL_STATE(1128)] = 40547, + [SMALL_STATE(1129)] = 40557, + [SMALL_STATE(1130)] = 40565, + [SMALL_STATE(1131)] = 40573, + [SMALL_STATE(1132)] = 40583, + [SMALL_STATE(1133)] = 40593, + [SMALL_STATE(1134)] = 40603, + [SMALL_STATE(1135)] = 40613, + [SMALL_STATE(1136)] = 40621, + [SMALL_STATE(1137)] = 40629, + [SMALL_STATE(1138)] = 40639, + [SMALL_STATE(1139)] = 40647, + [SMALL_STATE(1140)] = 40657, + [SMALL_STATE(1141)] = 40667, + [SMALL_STATE(1142)] = 40675, + [SMALL_STATE(1143)] = 40683, + [SMALL_STATE(1144)] = 40691, + [SMALL_STATE(1145)] = 40701, + [SMALL_STATE(1146)] = 40711, + [SMALL_STATE(1147)] = 40721, + [SMALL_STATE(1148)] = 40731, + [SMALL_STATE(1149)] = 40739, + [SMALL_STATE(1150)] = 40747, + [SMALL_STATE(1151)] = 40757, + [SMALL_STATE(1152)] = 40765, + [SMALL_STATE(1153)] = 40775, + [SMALL_STATE(1154)] = 40785, + [SMALL_STATE(1155)] = 40795, + [SMALL_STATE(1156)] = 40805, + [SMALL_STATE(1157)] = 40815, + [SMALL_STATE(1158)] = 40825, + [SMALL_STATE(1159)] = 40835, + [SMALL_STATE(1160)] = 40845, + [SMALL_STATE(1161)] = 40855, + [SMALL_STATE(1162)] = 40865, + [SMALL_STATE(1163)] = 40873, + [SMALL_STATE(1164)] = 40881, + [SMALL_STATE(1165)] = 40889, + [SMALL_STATE(1166)] = 40899, + [SMALL_STATE(1167)] = 40907, + [SMALL_STATE(1168)] = 40915, + [SMALL_STATE(1169)] = 40925, + [SMALL_STATE(1170)] = 40935, + [SMALL_STATE(1171)] = 40945, + [SMALL_STATE(1172)] = 40955, + [SMALL_STATE(1173)] = 40963, + [SMALL_STATE(1174)] = 40971, + [SMALL_STATE(1175)] = 40981, + [SMALL_STATE(1176)] = 40991, + [SMALL_STATE(1177)] = 41001, + [SMALL_STATE(1178)] = 41011, + [SMALL_STATE(1179)] = 41021, + [SMALL_STATE(1180)] = 41031, + [SMALL_STATE(1181)] = 41041, + [SMALL_STATE(1182)] = 41049, + [SMALL_STATE(1183)] = 41059, + [SMALL_STATE(1184)] = 41067, + [SMALL_STATE(1185)] = 41075, + [SMALL_STATE(1186)] = 41083, + [SMALL_STATE(1187)] = 41093, + [SMALL_STATE(1188)] = 41103, + [SMALL_STATE(1189)] = 41111, + [SMALL_STATE(1190)] = 41121, + [SMALL_STATE(1191)] = 41129, + [SMALL_STATE(1192)] = 41137, + [SMALL_STATE(1193)] = 41147, + [SMALL_STATE(1194)] = 41155, + [SMALL_STATE(1195)] = 41165, + [SMALL_STATE(1196)] = 41175, + [SMALL_STATE(1197)] = 41185, + [SMALL_STATE(1198)] = 41193, + [SMALL_STATE(1199)] = 41203, + [SMALL_STATE(1200)] = 41213, + [SMALL_STATE(1201)] = 41221, + [SMALL_STATE(1202)] = 41231, + [SMALL_STATE(1203)] = 41239, + [SMALL_STATE(1204)] = 41249, + [SMALL_STATE(1205)] = 41257, + [SMALL_STATE(1206)] = 41267, + [SMALL_STATE(1207)] = 41275, + [SMALL_STATE(1208)] = 41285, + [SMALL_STATE(1209)] = 41295, + [SMALL_STATE(1210)] = 41305, + [SMALL_STATE(1211)] = 41315, + [SMALL_STATE(1212)] = 41325, + [SMALL_STATE(1213)] = 41335, + [SMALL_STATE(1214)] = 41345, + [SMALL_STATE(1215)] = 41355, + [SMALL_STATE(1216)] = 41363, + [SMALL_STATE(1217)] = 41373, + [SMALL_STATE(1218)] = 41383, + [SMALL_STATE(1219)] = 41391, + [SMALL_STATE(1220)] = 41401, + [SMALL_STATE(1221)] = 41411, + [SMALL_STATE(1222)] = 41421, + [SMALL_STATE(1223)] = 41431, + [SMALL_STATE(1224)] = 41441, + [SMALL_STATE(1225)] = 41449, + [SMALL_STATE(1226)] = 41459, + [SMALL_STATE(1227)] = 41469, + [SMALL_STATE(1228)] = 41479, + [SMALL_STATE(1229)] = 41489, + [SMALL_STATE(1230)] = 41499, + [SMALL_STATE(1231)] = 41509, + [SMALL_STATE(1232)] = 41517, + [SMALL_STATE(1233)] = 41525, + [SMALL_STATE(1234)] = 41533, + [SMALL_STATE(1235)] = 41543, + [SMALL_STATE(1236)] = 41553, + [SMALL_STATE(1237)] = 41561, + [SMALL_STATE(1238)] = 41571, + [SMALL_STATE(1239)] = 41581, + [SMALL_STATE(1240)] = 41591, + [SMALL_STATE(1241)] = 41599, + [SMALL_STATE(1242)] = 41609, + [SMALL_STATE(1243)] = 41619, + [SMALL_STATE(1244)] = 41627, + [SMALL_STATE(1245)] = 41637, + [SMALL_STATE(1246)] = 41647, + [SMALL_STATE(1247)] = 41655, + [SMALL_STATE(1248)] = 41663, + [SMALL_STATE(1249)] = 41671, + [SMALL_STATE(1250)] = 41681, + [SMALL_STATE(1251)] = 41689, + [SMALL_STATE(1252)] = 41697, + [SMALL_STATE(1253)] = 41705, + [SMALL_STATE(1254)] = 41715, + [SMALL_STATE(1255)] = 41723, + [SMALL_STATE(1256)] = 41730, + [SMALL_STATE(1257)] = 41737, + [SMALL_STATE(1258)] = 41744, + [SMALL_STATE(1259)] = 41751, + [SMALL_STATE(1260)] = 41758, + [SMALL_STATE(1261)] = 41765, + [SMALL_STATE(1262)] = 41772, + [SMALL_STATE(1263)] = 41779, + [SMALL_STATE(1264)] = 41786, + [SMALL_STATE(1265)] = 41793, + [SMALL_STATE(1266)] = 41800, + [SMALL_STATE(1267)] = 41807, + [SMALL_STATE(1268)] = 41814, + [SMALL_STATE(1269)] = 41821, + [SMALL_STATE(1270)] = 41828, + [SMALL_STATE(1271)] = 41835, + [SMALL_STATE(1272)] = 41842, + [SMALL_STATE(1273)] = 41849, + [SMALL_STATE(1274)] = 41856, + [SMALL_STATE(1275)] = 41863, + [SMALL_STATE(1276)] = 41870, + [SMALL_STATE(1277)] = 41877, + [SMALL_STATE(1278)] = 41884, + [SMALL_STATE(1279)] = 41891, + [SMALL_STATE(1280)] = 41898, + [SMALL_STATE(1281)] = 41905, + [SMALL_STATE(1282)] = 41912, + [SMALL_STATE(1283)] = 41919, + [SMALL_STATE(1284)] = 41926, + [SMALL_STATE(1285)] = 41933, + [SMALL_STATE(1286)] = 41940, + [SMALL_STATE(1287)] = 41947, + [SMALL_STATE(1288)] = 41954, + [SMALL_STATE(1289)] = 41961, + [SMALL_STATE(1290)] = 41968, + [SMALL_STATE(1291)] = 41975, + [SMALL_STATE(1292)] = 41982, + [SMALL_STATE(1293)] = 41989, + [SMALL_STATE(1294)] = 41996, + [SMALL_STATE(1295)] = 42003, + [SMALL_STATE(1296)] = 42010, + [SMALL_STATE(1297)] = 42017, + [SMALL_STATE(1298)] = 42024, + [SMALL_STATE(1299)] = 42031, + [SMALL_STATE(1300)] = 42038, + [SMALL_STATE(1301)] = 42045, + [SMALL_STATE(1302)] = 42052, + [SMALL_STATE(1303)] = 42059, + [SMALL_STATE(1304)] = 42066, + [SMALL_STATE(1305)] = 42073, + [SMALL_STATE(1306)] = 42080, + [SMALL_STATE(1307)] = 42087, + [SMALL_STATE(1308)] = 42094, + [SMALL_STATE(1309)] = 42101, + [SMALL_STATE(1310)] = 42108, + [SMALL_STATE(1311)] = 42115, + [SMALL_STATE(1312)] = 42122, + [SMALL_STATE(1313)] = 42129, + [SMALL_STATE(1314)] = 42136, + [SMALL_STATE(1315)] = 42143, + [SMALL_STATE(1316)] = 42150, + [SMALL_STATE(1317)] = 42157, + [SMALL_STATE(1318)] = 42164, + [SMALL_STATE(1319)] = 42171, + [SMALL_STATE(1320)] = 42178, + [SMALL_STATE(1321)] = 42185, + [SMALL_STATE(1322)] = 42192, + [SMALL_STATE(1323)] = 42199, + [SMALL_STATE(1324)] = 42206, + [SMALL_STATE(1325)] = 42213, + [SMALL_STATE(1326)] = 42220, + [SMALL_STATE(1327)] = 42227, + [SMALL_STATE(1328)] = 42234, + [SMALL_STATE(1329)] = 42241, + [SMALL_STATE(1330)] = 42248, + [SMALL_STATE(1331)] = 42255, + [SMALL_STATE(1332)] = 42262, + [SMALL_STATE(1333)] = 42269, + [SMALL_STATE(1334)] = 42276, + [SMALL_STATE(1335)] = 42283, + [SMALL_STATE(1336)] = 42290, + [SMALL_STATE(1337)] = 42297, + [SMALL_STATE(1338)] = 42304, + [SMALL_STATE(1339)] = 42311, + [SMALL_STATE(1340)] = 42318, + [SMALL_STATE(1341)] = 42325, + [SMALL_STATE(1342)] = 42332, + [SMALL_STATE(1343)] = 42339, + [SMALL_STATE(1344)] = 42346, + [SMALL_STATE(1345)] = 42353, + [SMALL_STATE(1346)] = 42360, + [SMALL_STATE(1347)] = 42367, + [SMALL_STATE(1348)] = 42374, + [SMALL_STATE(1349)] = 42381, + [SMALL_STATE(1350)] = 42388, + [SMALL_STATE(1351)] = 42395, + [SMALL_STATE(1352)] = 42402, + [SMALL_STATE(1353)] = 42409, + [SMALL_STATE(1354)] = 42416, + [SMALL_STATE(1355)] = 42423, + [SMALL_STATE(1356)] = 42430, + [SMALL_STATE(1357)] = 42437, + [SMALL_STATE(1358)] = 42444, + [SMALL_STATE(1359)] = 42451, + [SMALL_STATE(1360)] = 42458, + [SMALL_STATE(1361)] = 42465, + [SMALL_STATE(1362)] = 42472, + [SMALL_STATE(1363)] = 42479, + [SMALL_STATE(1364)] = 42486, + [SMALL_STATE(1365)] = 42493, + [SMALL_STATE(1366)] = 42500, + [SMALL_STATE(1367)] = 42507, + [SMALL_STATE(1368)] = 42514, + [SMALL_STATE(1369)] = 42521, + [SMALL_STATE(1370)] = 42528, + [SMALL_STATE(1371)] = 42535, + [SMALL_STATE(1372)] = 42542, + [SMALL_STATE(1373)] = 42549, + [SMALL_STATE(1374)] = 42556, + [SMALL_STATE(1375)] = 42563, + [SMALL_STATE(1376)] = 42570, + [SMALL_STATE(1377)] = 42577, + [SMALL_STATE(1378)] = 42584, + [SMALL_STATE(1379)] = 42591, + [SMALL_STATE(1380)] = 42598, + [SMALL_STATE(1381)] = 42605, + [SMALL_STATE(1382)] = 42612, + [SMALL_STATE(1383)] = 42619, + [SMALL_STATE(1384)] = 42626, + [SMALL_STATE(1385)] = 42633, + [SMALL_STATE(1386)] = 42640, + [SMALL_STATE(1387)] = 42647, + [SMALL_STATE(1388)] = 42654, + [SMALL_STATE(1389)] = 42661, + [SMALL_STATE(1390)] = 42668, + [SMALL_STATE(1391)] = 42675, + [SMALL_STATE(1392)] = 42682, + [SMALL_STATE(1393)] = 42689, + [SMALL_STATE(1394)] = 42696, + [SMALL_STATE(1395)] = 42703, + [SMALL_STATE(1396)] = 42710, + [SMALL_STATE(1397)] = 42717, + [SMALL_STATE(1398)] = 42724, + [SMALL_STATE(1399)] = 42731, + [SMALL_STATE(1400)] = 42738, + [SMALL_STATE(1401)] = 42745, + [SMALL_STATE(1402)] = 42752, + [SMALL_STATE(1403)] = 42759, + [SMALL_STATE(1404)] = 42766, + [SMALL_STATE(1405)] = 42773, + [SMALL_STATE(1406)] = 42780, + [SMALL_STATE(1407)] = 42787, + [SMALL_STATE(1408)] = 42794, + [SMALL_STATE(1409)] = 42801, + [SMALL_STATE(1410)] = 42808, + [SMALL_STATE(1411)] = 42815, + [SMALL_STATE(1412)] = 42822, + [SMALL_STATE(1413)] = 42829, + [SMALL_STATE(1414)] = 42836, + [SMALL_STATE(1415)] = 42843, + [SMALL_STATE(1416)] = 42850, + [SMALL_STATE(1417)] = 42857, + [SMALL_STATE(1418)] = 42864, + [SMALL_STATE(1419)] = 42871, + [SMALL_STATE(1420)] = 42878, + [SMALL_STATE(1421)] = 42885, + [SMALL_STATE(1422)] = 42892, + [SMALL_STATE(1423)] = 42899, + [SMALL_STATE(1424)] = 42906, + [SMALL_STATE(1425)] = 42913, + [SMALL_STATE(1426)] = 42920, + [SMALL_STATE(1427)] = 42927, + [SMALL_STATE(1428)] = 42934, + [SMALL_STATE(1429)] = 42941, + [SMALL_STATE(1430)] = 42948, + [SMALL_STATE(1431)] = 42955, + [SMALL_STATE(1432)] = 42962, + [SMALL_STATE(1433)] = 42969, + [SMALL_STATE(1434)] = 42976, + [SMALL_STATE(1435)] = 42983, + [SMALL_STATE(1436)] = 42990, + [SMALL_STATE(1437)] = 42997, + [SMALL_STATE(1438)] = 43004, + [SMALL_STATE(1439)] = 43011, + [SMALL_STATE(1440)] = 43018, + [SMALL_STATE(1441)] = 43025, + [SMALL_STATE(1442)] = 43032, + [SMALL_STATE(1443)] = 43039, + [SMALL_STATE(1444)] = 43046, + [SMALL_STATE(1445)] = 43053, + [SMALL_STATE(1446)] = 43060, + [SMALL_STATE(1447)] = 43067, + [SMALL_STATE(1448)] = 43074, + [SMALL_STATE(1449)] = 43081, + [SMALL_STATE(1450)] = 43088, + [SMALL_STATE(1451)] = 43095, + [SMALL_STATE(1452)] = 43102, + [SMALL_STATE(1453)] = 43109, + [SMALL_STATE(1454)] = 43116, + [SMALL_STATE(1455)] = 43123, + [SMALL_STATE(1456)] = 43130, + [SMALL_STATE(1457)] = 43137, + [SMALL_STATE(1458)] = 43144, + [SMALL_STATE(1459)] = 43151, + [SMALL_STATE(1460)] = 43158, + [SMALL_STATE(1461)] = 43165, + [SMALL_STATE(1462)] = 43172, + [SMALL_STATE(1463)] = 43179, + [SMALL_STATE(1464)] = 43186, + [SMALL_STATE(1465)] = 43193, + [SMALL_STATE(1466)] = 43200, + [SMALL_STATE(1467)] = 43207, + [SMALL_STATE(1468)] = 43214, + [SMALL_STATE(1469)] = 43221, + [SMALL_STATE(1470)] = 43228, + [SMALL_STATE(1471)] = 43235, + [SMALL_STATE(1472)] = 43242, + [SMALL_STATE(1473)] = 43249, + [SMALL_STATE(1474)] = 43256, + [SMALL_STATE(1475)] = 43263, + [SMALL_STATE(1476)] = 43270, + [SMALL_STATE(1477)] = 43277, + [SMALL_STATE(1478)] = 43284, + [SMALL_STATE(1479)] = 43291, + [SMALL_STATE(1480)] = 43298, + [SMALL_STATE(1481)] = 43305, + [SMALL_STATE(1482)] = 43312, + [SMALL_STATE(1483)] = 43319, + [SMALL_STATE(1484)] = 43326, + [SMALL_STATE(1485)] = 43333, + [SMALL_STATE(1486)] = 43340, + [SMALL_STATE(1487)] = 43347, + [SMALL_STATE(1488)] = 43354, + [SMALL_STATE(1489)] = 43361, + [SMALL_STATE(1490)] = 43368, + [SMALL_STATE(1491)] = 43375, + [SMALL_STATE(1492)] = 43382, + [SMALL_STATE(1493)] = 43389, + [SMALL_STATE(1494)] = 43396, + [SMALL_STATE(1495)] = 43403, + [SMALL_STATE(1496)] = 43410, + [SMALL_STATE(1497)] = 43417, + [SMALL_STATE(1498)] = 43424, + [SMALL_STATE(1499)] = 43431, + [SMALL_STATE(1500)] = 43438, + [SMALL_STATE(1501)] = 43445, + [SMALL_STATE(1502)] = 43452, + [SMALL_STATE(1503)] = 43459, + [SMALL_STATE(1504)] = 43466, + [SMALL_STATE(1505)] = 43473, + [SMALL_STATE(1506)] = 43480, + [SMALL_STATE(1507)] = 43487, + [SMALL_STATE(1508)] = 43494, + [SMALL_STATE(1509)] = 43501, + [SMALL_STATE(1510)] = 43508, + [SMALL_STATE(1511)] = 43515, + [SMALL_STATE(1512)] = 43522, + [SMALL_STATE(1513)] = 43529, + [SMALL_STATE(1514)] = 43536, + [SMALL_STATE(1515)] = 43543, + [SMALL_STATE(1516)] = 43550, + [SMALL_STATE(1517)] = 43557, + [SMALL_STATE(1518)] = 43564, + [SMALL_STATE(1519)] = 43571, + [SMALL_STATE(1520)] = 43578, + [SMALL_STATE(1521)] = 43585, + [SMALL_STATE(1522)] = 43592, + [SMALL_STATE(1523)] = 43599, + [SMALL_STATE(1524)] = 43606, + [SMALL_STATE(1525)] = 43613, + [SMALL_STATE(1526)] = 43620, + [SMALL_STATE(1527)] = 43627, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -35569,1198 +48690,1376 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [25] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), - [27] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), - [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [53] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), - [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [61] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), - [71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), - [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), - [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), - [125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), - [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), - [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(1027), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(687), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(390), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(1152), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(1150), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(691), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(914), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(912), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(180), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(163), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(132), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(24), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(976), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1027), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(687), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(390), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1152), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(914), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(912), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 4), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 5), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(533), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1143), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(923), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1074), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(898), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(530), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(936), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(983), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(713), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(894), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(952), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(951), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(897), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(948), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(456), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(946), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(536), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1135), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1013), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 1), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(212), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(960), - [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(411), - [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1078), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(963), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(965), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(968), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(869), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(157), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 3), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), - [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 2), - [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(510), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(146), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 1), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 1), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(257), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(525), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(141), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_conflict_repeat1, 2), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_conflict_repeat1, 2), SHIFT_REPEAT(634), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(523), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(681), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 1), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 4), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 5), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_returning, 2), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(836), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_returning, 3), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(143), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(236), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_return_table_repeat1, 2), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_return_table_repeat1, 2), SHIFT_REPEAT(820), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(648), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(558), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(684), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), - [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(619), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(133), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 6), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(465), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(635), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(135), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(145), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(662), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), - [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(883), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(667), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(796), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 2), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 4), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2446] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 3), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [25] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [27] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [29] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [31] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [33] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [35] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [37] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 3), + [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 3), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_expression, 2), + [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_expression, 2), + [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_time_expression, 5), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_time_expression, 5), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 1), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 1), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_expression, 3), + [81] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_expression, 3), + [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote_string, 7), + [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dollar_quote_string, 7), + [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_false, 1), + [101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_false, 1), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_true, 1), + [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_true, 1), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_star, 1), + [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_star, 1), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 1), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 1), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement, 2), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(539), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1380), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(961), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1504), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1503), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(900), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(965), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(966), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1230), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(235), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(908), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(238), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(206), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(189), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(27), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 4), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_condition, 2), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 1), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 1), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 4), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 3), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_of_identifiers, 2), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 3), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 1), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 2), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_filter, 2), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 2), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_having, 2), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 1), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_limit, 2), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(539), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1380), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(961), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1504), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1503), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(900), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(965), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(966), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 2), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_value, 1), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 2), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 4), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 1), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 1), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 3), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 2), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 3), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 1), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(770), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1476), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1250), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1266), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1249), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 3), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 5), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_item, 2), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_item, 1), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 1), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_function, 1), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 4), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 2), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_from_table, 2), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_table, 3), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_select, 5), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_item, 3), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_function, 4), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 6), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plpgsql_statement, 2), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plpgsql_statement, 2), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(799), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1392), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 3), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 4), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 5), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_sequence_statement, 6), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1219), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1025), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1221), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1307), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1306), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1222), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1304), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(677), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_sequence_statement_repeat1, 2), SHIFT_REPEAT(1303), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(763), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1484), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 1), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 2), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 7), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_types, 2), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 3), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precision, 5), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(775), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1455), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 3), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 4), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 4), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(247), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1253), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(603), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1269), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1273), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1286), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_table_column_item_repeat1, 2), SHIFT_REPEAT(1228), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_into, 2), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 2), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_item, 2), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_foreign_key, 3), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constraint_foreign_key_repeat1, 2), SHIFT_REPEAT(1102), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_column_item, 3), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1170), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_repeat1, 2), SHIFT_REPEAT(1492), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 8), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(199), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_item, 3), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 1), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_action, 3), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 3), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_from, 2), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 3), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 9), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 1), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(724), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fk_ref_action, 2), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 1), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plus, 1), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plus, 1), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 1), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 1), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 1), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 1), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minus, 1), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minus, 1), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(234), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint_ty, 4), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(771), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_from_item_repeat1, 2), SHIFT_REPEAT(1468), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(205), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_group_by, 4), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_op, 1), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_op, 1), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 1), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 1), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 1), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_other_op, 1), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_other_op, 1), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(716), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 10), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 4), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_where, 1), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_column_constraint, 2), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_when, 3), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_psql_statement, 3), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(220), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 2), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_min, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_max, 2), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 2), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cycle, 1), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 4), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_order_by_repeat1, 2), SHIFT_REPEAT(216), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1182), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 3), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_start, 3), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_owned, 3), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(726), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_order_by, 3), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_increment, 2), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_cache, 2), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_item, 2), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_direction, 1), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 1), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 8), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 7), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_offset, 3), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declarations_repeat1, 2), SHIFT_REPEAT(738), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 3), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 1), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 2), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declarations, 1), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 3), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_conflict_repeat1, 2), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_conflict_repeat1, 2), SHIFT_REPEAT(850), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_using, 2), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delete_using_repeat1, 2), SHIFT_REPEAT(719), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 10), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 2), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 7), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 12), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 11), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 5), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 6), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 9), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 11), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_set, 3), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 3), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_limit_offset, 2), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conflict_target_repeat1, 2), SHIFT_REPEAT(292), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 9), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 4), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 3), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 11), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 1), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 9), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 3), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(336), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 5), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(212), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 7), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), SHIFT_REPEAT(1015), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_query_repeat1, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 12), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 1), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 8), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 2), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 2, .production_id = 1), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query, 2), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 10), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_returning, 3), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 13), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_items, 3), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_returning, 2), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 8), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 2), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 3), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 2), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 9), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 4), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(903), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(750), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dollar_quote, 3), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_when, 1), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 5), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 5), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_psql_statement_repeat1, 2), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_psql_statement_repeat1, 2), SHIFT_REPEAT(1158), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 4), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint_ty, 3), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 6), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 2), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1086), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 4), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_query_item, 7), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_conflict, 9), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_using, 3), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 2), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), SHIFT_REPEAT(1073), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_targets_repeat1, 2), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temporary, 1), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 1), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 14), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_type, 1), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 2), SHIFT_REPEAT(790), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 3), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), SHIFT_REPEAT(1201), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat1, 2), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), SHIFT_REPEAT(196), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_set_repeat1, 2), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 3), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 2), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), SHIFT_REPEAT(192), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_items_repeat1, 2), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 4), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_returning_repeat1, 2), SHIFT_REPEAT(203), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_type_statement_repeat2, 2), SHIFT_REPEAT(1010), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_privileges, 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trigger_event_repeat1, 2), SHIFT_REPEAT(886), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 4), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_dir, 1), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 6), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 1), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 1), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), SHIFT_REPEAT(639), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_table_statement_repeat1, 2), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 1), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), SHIFT_REPEAT(932), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_create_index_statement_repeat1, 2), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 2), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_definition, 2), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change, 2), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 2), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_roles, 1), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 3), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alter_table_change_repeat1, 2), SHIFT_REPEAT(889), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_privileges_repeat1, 2), SHIFT_REPEAT(1169), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_event, 2), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), SHIFT_REPEAT(871), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 2), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_perform_statement, 3), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_constraint, 4), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 12), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_action, 5), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 10), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 6), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_function_repeat1, 3), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 4), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_fk_ref_action, 1), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 2), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 3), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_not_exists, 3), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 2), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_execute_statement, 4), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_includes, 2), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 3), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col, 5), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 2), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 3), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_col_nulls, 2), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grant_roles_repeat1, 3), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_item, 1), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_function, 5), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_column_action, 4), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_type, 1), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_scope, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 4), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5, .production_id = 3), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 4), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists, 2), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists, 3), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 5), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_function_statement, 10), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 8), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_schema_statement, 5), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 4), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 7), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 3), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_return, 2), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_role, 2), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 10), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_cond, 4), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 7), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 2), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4, .production_id = 2), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 6, .production_id = 4), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_volatility, 1), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_table, 5), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_statement, 5), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trigger_exec, 3), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_statement, 6), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 8), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_replace, 2), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_change_schema, 3), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conflict_target, 2), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 10), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 9), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_table, 3), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 9), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 6), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_type_statement, 9), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_index_statement, 15), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_using, 2), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_table_statement, 8), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_setof, 2), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grant_targets, 5), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 4), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_column, 5), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_trigger_statement, 11), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alter_table_rename_constraint, 5), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2781] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), }; #ifdef __cplusplus